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

Problem in ALV Report

Former Member
0 Likes
537

Hi to all experts.

My requirement to call the program Zreport2 from my zreport1 based upon zreport1 output.I know this can be done using submit report .for example:in zreport1 out put fields are wbs element,network activity and plant.

zreport1 displays 10 records, zreport2 displays 10 records based upon these 10 records of zreport1.how can i get exactly.give me suggistions.

Thanks.

Hi to all experts.

My requirement to call the program Zreport2 from my zreport1 based upon zreport1 output.I know this can be done using submit report .for example:in zreport1 out put fields are wbs element,network activity and plant.

zreport1 displays 10 records, zreport2 displays 10 records based upon these 10 records of zreport1.how can i get exactly.give me suggistions.

Thanks.

3 REPLIES 3
Read only

Former Member
0 Likes
509

Hi,

The records which will be displayed in the first report will be stored in some final internal table right.

Before displaying the second report check if entries exist in first internal table and then read each record's data one by one.

Take the required data na d popultae second internal table with the required data for second report and use submit statement to call that program and ouput of second report will also be displayed.

Do not return to first program after using submit statement.

Regards,

Subhashini

Read only

Former Member
0 Likes
509

Hi,

export the contents of first report internal table to a memory location using EXPORT statement and later in second program IMPORT this table content and manipulate accordingly.

Check F1 help for syntax of EXPORT & IMPORT.

Read only

Former Member
0 Likes
509

This message was moderated.