‎2009 Jul 09 7:09 AM
hello experts ,
i want a F4 help on program field which will display program names browser window , so i can select one program name to the field
thanks
‎2009 Jul 09 7:15 AM
Hi,
Use the function module REPOSITORY_INFO_SYSTEM_F4
For parameter OBJECT_TYPE pass the value as PROG
Regards
‎2009 Jul 09 7:15 AM
Hi,
Use the function module REPOSITORY_INFO_SYSTEM_F4
For parameter OBJECT_TYPE pass the value as PROG
Regards
‎2009 Jul 09 7:20 AM
Hi ,
you can use this code ,
parameters: p_rep like TFREP-PROGRAMM.
when executed if you click f4 then you will get all the reports .
Pls let me know if you still nedd any more help.
Thanks and regards,
Rajeshwar.
‎2009 Jul 09 7:28 AM
Hi,
Check this;
PARAMETERS p_prog LIKE tadir-obj_name.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_prog.
PERFORM PROGRAM_DIRECTORY(SAPLWBABAP) USING p_prog 'X'.This will solve your problem.
Regards
Karthik D