‎2008 Sep 04 12:13 PM
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?
‎2008 Sep 04 12:14 PM
Does Export and Import command works as alternative solution?
Thanks
Sudharshan
‎2008 Sep 04 12:16 PM
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
‎2008 Sep 04 12:16 PM
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.
‎2008 Sep 04 12:17 PM
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.
‎2008 Sep 04 12:17 PM
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