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

GUI status

Former Member
0 Likes
488

Hi,

I am creating a dynamic program (by creating an internal table of code and using abap command insert and submit).

Is it possible to attach gui status and new sceen for popup with this program.

Regards,

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
467

U can use the pf-status of another program ..

Example

DATA : PROG LIKE SY-REPID.

MOVE 'TESTPROG' TO PROG.

SET PF-STATUS 'ABCD' OF PROGRAM PROG.

The system activates the status ABCD of program TESTPROG.

3 REPLIES 3
Read only

Former Member
0 Likes
467

hi,

Ya u can create GUI status and also popup screen.

Just right click in the prog name >create>GUI status.

for popup u can create modal dialog box(select this while creating new screen.)

hope this helps u,

Arunsri

Read only

0 Likes
467

my issue is - program name is getting created dynamically. How to tackle in this situation.

Read only

Former Member
0 Likes
468

U can use the pf-status of another program ..

Example

DATA : PROG LIKE SY-REPID.

MOVE 'TESTPROG' TO PROG.

SET PF-STATUS 'ABCD' OF PROGRAM PROG.

The system activates the status ABCD of program TESTPROG.