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

display 3 reports in a program

Former Member
0 Likes
537

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
Read only

JozsefSzikszai
Active Contributor
0 Likes
506

classical:

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

.

ALV:

check the FMs with REUSE_ALV_BLOCK_*

Read only

Former Member
0 Likes
506

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

Regards

Karthik D

Read only

Former Member
0 Likes
506

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.