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

without using memory variables

Former Member
0 Likes
499

WITHOUT USING SET PARAMETER AND GET PARAMETER HOW WILL YOU PASS THE DATA TO A PARTICULAR TRANSCATION..

1 ACCEPTED SOLUTION
Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
464

Hi Surya,

You use Submit to call an ABAP report from within another report. For example

submit 'ZREPORT1' using pernr = g_pernr

exporting list to memory

and return.

In this case we are submitting the report ZREPORT1, passing the parameter pernr a value of g_pernr (from the calling program) sending the output list to ABAP memory, and retruning to the calling program.

You can retrieve the list using the function module LIST_FROM_MEMORY.

Regards,

Sree

2 REPLIES 2
Read only

Former Member
0 Likes
464

The other way is use SUBMIT.

Regards,

Atish

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
465

Hi Surya,

You use Submit to call an ABAP report from within another report. For example

submit 'ZREPORT1' using pernr = g_pernr

exporting list to memory

and return.

In this case we are submitting the report ZREPORT1, passing the parameter pernr a value of g_pernr (from the calling program) sending the output list to ABAP memory, and retruning to the calling program.

You can retrieve the list using the function module LIST_FROM_MEMORY.

Regards,

Sree