Re: FULLSCREEN ALV with status GUI - disable own created button
Then use the class providedDATA : gr_functions TYPE REF TO cl_salv_functions_list. gr_functions = gr_table->get_functions( ). gr_functions->set_function( name = 'BUT1' boolean = 'X' )....
View ArticleRe: FULLSCREEN ALV with status GUI - disable own created button
I tried this but it does not work, on my status i created button with function code BUT. if i call method gr_functions->set_function( name = 'BUT' boolean = 'X' ) exception cx_salv_not_found is...
View ArticleRe: FULLSCREEN ALV with status GUI - disable own created button
Could you post the code where you set your status ? Regards,Raymond
View ArticleRe: Creating a table at runtime from a parameter(Work area)
Hi Ajeet, Ok I thought you are just saying about data example. In case of generic data type, solution is more complicated. Try this: FIELD-symbols <fs_table> type standard table. DATA l_ref TYPE...
View ArticleRe: FULLSCREEN ALV with status GUI - disable own created button
DATA: o_alv TYPE REF TO cl_salv_table. TRY. cl_salv_table=>factory( IMPORTING r_salv_table = o_alv CHANGING t_table = t_vbak ). CATCH...
View ArticleRe: FULLSCREEN ALV with status GUI - disable own created button
Small sample, did you execute every step ?gv_repid = sy-repid. gr_table->set_screen_status( pfstatus = 'ZSTATUS' report = gv_repid set_functions = gr_table->c_functions_all ). lr_functions =...
View ArticleList contains no data for SDo1 transaction
Hi , When ever iam executing Sdo1 t code and when i enter created on and cretaed by...iam getting message List contains no data. But corresponding records exists in database.
View ArticleRe: How can I selectively rollback while committing in mass using ABAP Objects?
Howdy, I agree with some of your points which is why I'd be more inclined to choose tRFC over aRFC - however there are still design questions about capturing the error messages, things like:- How many...
View ArticleRe: How can I selectively rollback while committing in mass using ABAP Objects?
Hello Alex, I guess your post is a prime example of "Experience speaks for itself " . I am humbled, it is well written and clearly explained, actually serves more like a development guideline. I...
View ArticleRe: Creating a table at runtime from a parameter(Work area)
Thanks Adam,It's working according to my requirement. Thanks and Regards,Ajeet Pratap Singh
View ArticleRe: FULLSCREEN ALV with status GUI - disable own created button
Yes i did . I have exactly same code as you wrote but it does not work. Dont know why...
View ArticleCustom Transaction call
Hello Gurus, I created custom transaction code(/com/tcode) for a report transaction(Program and Selection Screen). When I added the same t code under favorites I am able to call the report program...
View ArticleRe: How to create ALV Grid and text editor in same screen?
Hi Crystal, You can create your own screen using screen painter instead of via code.You can try to execute this BCALV_GRID_01 (standard SAP). double click line 147 call screen 100. Regards, Robert
View ArticleRe: Custom Transaction call
As Ricardo suggested, you need to add /n before any transaction code that starts with /.
View ArticleWhat is the use of sub request number in Transport Organizer?
Hi experts, When we create workbench request in Transport organizer( SE09/SE10 ), we get two request numbers, one is main request number and other is sub request number, here what is the...
View ArticleRe: Custom Transaction call
Hi magana, try by adding "/o" or "/n" infront of tcode before entering in command prompt.
View ArticleRe: What is the use of sub request number in Transport Organizer?
The idea is that the main transport request (TR) represents a project or a major application development. The tasks represent different developers in that TR. So, as a team lead you can create a...
View ArticleRe: What is the use of sub request number in Transport Organizer?
Hello Chandra, The names of the objects changed by a user are entered in an object list. This object list isassigned to a task belonging to a user or project member.One or more tasks...
View ArticleRe: How to pass object reference variable as importing parameter in method ?
Hello Dipesh, Can You Please Elobarate Your requirement more specifically. Regards,Santosh
View Article