‎2005 Jun 28 3:59 PM
How to Call a screen of a Z Program from an exit in a standard online program...???
Thak's
Flavio Rasseli
‎2005 Jun 28 4:04 PM
You can do this a number of ways.
In the user exit,
1) use statement CALL TRANSACTION.
2) use statement SUBMIT report.
3) use statement CALL DIALOG.
It all depends on the way the Z program is coded and how you want it to act.
Can you give more details of exactly how you want the process to go.
Regards,
Rich Heilman
‎2005 Jun 28 4:06 PM
Your request seems very straightforward. Maybe I am missing something?
If you are calling a report:
SUBMIT [report] AND RETURN
or a screen in a custom program:
Create a transaction that points to your program screen, then use
CALL TRANSACTION [transaction]
‎2005 Jun 28 4:10 PM
Here is a sample program to illistrate.
report zrich_0002.
parameters: p_rad1 radiobutton group grp1 default 'X',
p_rad2 radiobutton group grp1,
p_rad3 radiobutton group grp1.
start-of-selection.
if p_rad1 = 'X'.
call transaction 'ZITRA'.
endif.
if p_rad2 = 'X'.
call dialog 'ZPROJTRACKADMIN' and skip first screen.
endif.
if p_rad3 = 'X'.
submit zprojtrackrpt via selection-screen and return.
endif.
Regards,
Rich Heilman
‎2005 Jun 28 4:11 PM
‎2005 Jun 28 7:07 PM
Hi.
I create dialog modules via SE35 to Call a screen of a Z Program from an exit in a standard online program.
In the standard:
CALL DIALOG 'ZTEST2'
EXPORTING
act_new FROM 'X'.
But the screen is shown in "full screen".
<b>How to show screen with the definition of the position?</b>
Example:
...STARTING AT 2 2
ENDING AT 60 09.
Thank's
Douglas Sant'Ana
‎2005 Jun 29 5:45 PM