‎2008 Mar 04 9:19 AM
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,
‎2008 Mar 04 9:53 AM
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.
‎2008 Mar 04 9:30 AM
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
‎2008 Mar 04 9:32 AM
my issue is - program name is getting created dynamically. How to tackle in this situation.
‎2008 Mar 04 9:53 AM
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.