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

calling a report from module pool program

Former Member
0 Likes
926

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

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
675

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.

4 REPLIES 4
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
676

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.

Read only

0 Likes
675

Thanks Keshav,

Problem solved

Regards,

Murali Krishna .T

Read only

0 Likes
675

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.

Read only

Former Member
0 Likes
675

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.