Execute push button
Hi,
I got one customize screen for user to key in the data and i also created some push button for it. One of the push button is the execute push button. When i click on this push button, i want it to be link to the other abap report that will display summary for the data that i enter in the screen. Can this be done????? and what is the syntax that i can use when i click on the execute button, it will link to that abap report program and display the output on the screen?????????
Can someone help?? TQ.
you might want to try the SUBMIT command. just see F1 for details
in pai module
if sy-ucomm eq 'NEXT'. ( fcode of your push button)
submit report with selection parameters.
endif.
pass all the input parameters while in submit statement
thx
abc123