‎2009 Aug 18 1:37 PM
Hi guys,
We have a copy program of a standard transaction and once we use this copy program in the main program via SUBMIT... it does not work in background...
Why is this so,,, Please advice...
THanks!
‎2009 Aug 18 1:58 PM
...or try
SUBMIT ... EXPORTING LIST TO MEMORY.
This will not only suppress report output (so not BACK button will be needed) but also together with addtion TO SAP-SPOOL SPOOL you can review the output in spool once program is finished.
Regards
Marcin
‎2009 Aug 18 1:49 PM
Hi,
When executing some program using the statement like SUBMIT prog_2 WITH parameters and RETURN.
In foreground PROG_2 is executed, and once you click on the BACK button the code written after this SUBMIT statement will be executed.
If you are executing the same in the BACKGROUND mode, no feasibility of clicking on BACK button, hence control will remain in the PROG_2 only after executing its logic.
Please code accordingly.
‎2009 Aug 18 1:58 PM
...or try
SUBMIT ... EXPORTING LIST TO MEMORY.
This will not only suppress report output (so not BACK button will be needed) but also together with addtion TO SAP-SPOOL SPOOL you can review the output in spool once program is finished.
Regards
Marcin