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: 

Report

Former Member
0 Kudos

Hi Experts,

now how to make link for two Reports.

thanks.

1 ACCEPTED SOLUTION

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

You can use Submit.

Here is the sample code for the same.

http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/submit.htm

You can use import and export to exchange data between two reports.Check this link.

http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/import.htm

http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/export.htm

Kindly reward points if it helps.

5 REPLIES 5

laxmanakumar_appana
Active Contributor
0 Kudos

Hi,

Submit report......

we can execute one report from another report.

Laxman

Former Member
0 Kudos

u can use subroutines..with the required parameters to use and u can pass it by value or reference..

what are the details u need regarding linking reports..

former_member188685
Active Contributor
0 Kudos

Hi,

You can use submit

SUBMIT REPORT01 
       VIA SELECTION-SCREEN 
       USING SELECTION-SET 'VARIANT1' 
       USING SELECTION-SETS OF PROGRAM 'REPORT00' 
       AND RETURN.

read the Help for Submit.

Regards

vijay

Former Member
0 Kudos

SUBMIT <Programname> via selection-screen with <variable> = <value>.

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

You can use Submit.

Here is the sample code for the same.

http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/submit.htm

You can use import and export to exchange data between two reports.Check this link.

http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/import.htm

http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/export.htm

Kindly reward points if it helps.