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

Submit with EXPORTING LIST TO MEMORY with RETURN

Former Member
0 Likes
1,337

Hi Experts,

I have developed a custom program which is working fine in Developement and Quality but not working in production.

FYI.

  • Submit the report ROIADELSTA and export output list to memory

SUBMIT roiadelsta WITH SELECTION-TABLE

t_select_tab EXPORTING LIST TO MEMORY

AND RETURN.

The control is not returning to main program.

is there any display setting parametes to be set.

Please help me to resolve this isue.

Regards,

Nava

*

Hi Experts,

I have developed a custom program which is working fine in Developement and Quality but not working in production.

FYI.

  • Submit the report ROIADELSTA and export output list to memory

SUBMIT roiadelsta WITH SELECTION-TABLE

t_select_tab EXPORTING LIST TO MEMORY

AND RETURN.

The control is not returning to main program.

is there any display setting parametes to be set.

Please help me to resolve this isue.

Regards,

Nava

*

7 REPLIES 7
Read only

Former Member
0 Likes
932

Hi,

There could be an authorization issue. just check out in debugging on why it is failing.

Satish

Read only

0 Likes
932

The program is displaying the output but not exporting to the list and not returning to main program. It should not display the output in the screen.

Read only

Former Member
0 Likes
932

Is the report an ALV grid?

Rob

Read only

0 Likes
932

yes

Read only

0 Likes
932

I don't think ALV grid programs work well when submitted exporting list to memory. Try submitting it directly instead.

Rob

Read only

Former Member
0 Likes
932

You need to do this:

DATA: wa_rspar TYPE rsparams.

DATA: t_rspar LIKE TABLE OF wa_rspar.

CLEAR wa_rspar.

wa_rspar-selname = 'P_IDOC'.

wa_rspar-kind = 'P'.

wa_rspar-sign = 'I'.

wa_rspar-option = 'EQ'.

wa_rspar-low = wa_docnum-docnum.

APPEND wa_rspar TO t_rspar.

SUBMIT rbdagaie WITH SELECTION-TABLE t_rspar AND RETURN

EXPORTING LIST TO MEMORY.

Please reward points if helpful.

Read only

Former Member
0 Likes
932

i am happy with workaround by pressing the Print Preview button.