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: 

Reg SUBMIT and RETURN

Former Member
0 Kudos

Hi,

Iam calling SAP Standard function RBDAGAIE to reprocess the edited idoc from my z program

SUBMIT RBDAGAIE

WITH P_IDOC = <document number>

AND RETURN.

But after reprocessing it is not returning to my z program instead it shows the result screen of RBDAGAIE report.Can anyone please help me.

1 ACCEPTED SOLUTION

Former Member

Hello,

Try like this.

submit REPORT

<b>EXPORTING LIST TO MEMORY</b>

and return.

Regards,

VAsanth

3 REPLIES 3

suresh_datti
Active Contributor
0 Kudos

Did you try using the TO SAP-SPOOL option of the SUBMIT statement?

~Suresh

Former Member

Hello,

Try like this.

submit REPORT

<b>EXPORTING LIST TO MEMORY</b>

and return.

Regards,

VAsanth

0 Kudos

Thanks for your reply it worked