‎2010 Jun 21 5:54 PM
Hi all,
I had a requirement where I need to call a report from the module pool program where in when we click REPORT button, it should display the report output in the another screen.
Can we do by calling screen after pushing REPORT button. If so, where we should write that code ( In pbo or pai). Please give me an idea.
Thanking you,
Regards,
Murali Krishna T
‎2010 Jun 21 7:53 PM
Use submit syntax.
Press F1 on submit, Donot use return statement with it.
If so, where we should write that code ( In pbo or pai).
Please understand about these two events before doing the requirement.
‎2010 Jun 21 7:53 PM
Use submit syntax.
Press F1 on submit, Donot use return statement with it.
If so, where we should write that code ( In pbo or pai).
Please understand about these two events before doing the requirement.
‎2010 Jun 29 9:53 AM
‎2012 May 28 10:27 AM
Hi Keshav,
i been through a similar situation, i did the same as you said.
but i have a Parameter . but in its value i cannot manually enter any Value.
i have given the field name instead. but is considering as not giving,hence shows a message that no input has been given.
‎2010 Jun 22 4:38 PM
Hi,
use LEAVE TO LIST-PROCESSING syntax, this syntax will allow you to go from module pool to report.
first in PAI code it for module pool then code for report then use
loop at itab into wa.
write:/
endloop.
leave to list processing.