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

Former Member
0 Likes
598

Hi,

I have used submit and return command and included a standard report in my abap prg.

That std report contains an internal table.but after i submit and return i am not able to acces the internal table ( std prg int table ). is there any way to access it after i submit and return?

5 REPLIES 5
Read only

Former Member
0 Likes
559

Does Export and Import command works as alternative solution?

Thanks

Sudharshan

Read only

Former Member
0 Likes
559

Arvind,

you can not access the Internal table used in the calling program through SUBMIT and RETURN command. but you can get a output value in the form of a table after you will run the SUBMIT and RETURN command.

Thanks,

Pritesh

Read only

Former Member
0 Likes
559

Hi Arvind,

You cannot access it. Instead take a copy of the std prg if possible and do necessary changes in the copied program itself. This will suffice your requirement

Regards,

Swapna.

Read only

Former Member
0 Likes
559

Hi,

If you are able to acess the report there should be no problem acessing the report in my view may be you are not passing the arequired value for that internal to be populated via the selection screen ( which can be done through submit statement itself ).

With best wishes,

Murthy.

Read only

Former Member
0 Likes
559

Arvind

Check if there is any way in Standard Report to export the Internal Table to memory.... Otherwise, I don't think it is possible.

Thanks

Amol Lohade