Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Program Name Browser Window

Former Member
0 Likes
563

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
527

Hi,

Use the function module REPOSITORY_INFO_SYSTEM_F4

For parameter OBJECT_TYPE pass the value as PROG

Regards

3 REPLIES 3
Read only

Former Member
0 Likes
528

Hi,

Use the function module REPOSITORY_INFO_SYSTEM_F4

For parameter OBJECT_TYPE pass the value as PROG

Regards

Read only

Former Member
0 Likes
527

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.

Read only

Former Member
0 Likes
527

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