Application Development 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: 

display 3 reports in a program

Former Member
0 Kudos

hi

is there a possibility to display 3 reports based on a selection screen

basically im having 3 internal tables, so there wld be 3 reports

How can I handle that?

3 REPLIES 3

JozsefSzikszai
Active Contributor
0 Kudos

classical:

LOOP AT itab1.
WRITE...
ENDLOOP.
LOOP AT itab2.
WRITE...
ENDLOOP.
LOOP AT itab3.
WRITE...
ENDLOOP

.

ALV:

check the FMs with REUSE_ALV_BLOCK_*

Former Member
0 Kudos

3 report means you want to display output in List, ALV or smartforms?

Regards

Karthik D

Former Member
0 Kudos

Hi,

Why three Internal Tables Means Three Different Reports to you? I believe you can very well display the Data in a Single Report One by One.......

Else you can use Blocked ALV Display.