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 and return is not working

Former Member
0 Likes
2,044

hello experts,

i am using submit and return but its showing the out put of the submitted program , its not coming back to my program.

details: submit riaufk20 with dy_ofn = ''

with DY_IAR = 'X'

  • with AUART-LOW = '730'

  • with GEWRK-LOW = 'MAS'

with DATUV = '' " s_period-low

with datub = s_period-high

  • with ILART-LOW = '73C'

  • with RSCSEL-SLOW_I = '73G'

  • EXPORTING LIST TO MEMORY

and return.

this is showing out put of riaufk20 program its not coming back , but my req is to use this riaufk20

output and modify that output and need to show the out put .

help me out.

thanks

Ane

hello experts,

i am using submit and return but its showing the out put of the submitted program , its not coming back to my program.

details: submit riaufk20 with dy_ofn = ''

with DY_IAR = 'X'

  • with AUART-LOW = '730'

  • with GEWRK-LOW = 'MAS'

with DATUV = '' " s_period-low

with datub = s_period-high

  • with ILART-LOW = '73C'

  • with RSCSEL-SLOW_I = '73G'

  • EXPORTING LIST TO MEMORY

and return.

this is showing out put of riaufk20 program its not coming back , but my req is to use this riaufk20

output and modify that output and need to show the out put .

help me out.

thanks

Ane

4 REPLIES 4
Read only

Former Member
0 Likes
1,112

Hi,

You can export the list to memory and not the internal table data ...

Check the standard program whether it exports the data to the memory or not if yes you can read the data from the memory using memory id's it used to export.

Read only

Former Member
0 Likes
1,112

Hi Ananta,

While doing submit, pass value 'D' to parmater dy_selm.. dy_selm = 'D'

IMPORT sel_tab TO list_sel_tab FROM MEMORY ID 'RIAUFK20'.

where list_sel_tab LIKE rihaufk_list OCCURS 1 WITH HEADER LINE.

Table ist_sel_tab will have all the values.

Regards,

Ravi

Edited by: Ravi Santani on Aug 3, 2009 10:06 AM

Edited by: Ravi Santani on Aug 3, 2009 10:06 AM

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,112

check this example

Read only

Former Member
0 Likes
1,112