‎2008 Jul 09 9:59 AM
Hello ABAP Experts,
Can anyone give me the difference between SUBMIT and CALL TRANSACTION?
thanks!
‎2008 Jul 09 10:25 AM
Hi Jan,
Submit :
This Statement is used to call a report program from another program.
Syntax
SUBMIT... [VIA SELECTION-SCREEN]
[USING SELECTION-SET <var>]
[WITH <sel> <criterion>]
[WITH FREE SELECTIONS <freesel>]
[WITH SELECTION-TABLE <rspar>].
Call Transaction :
This Statement is used to call a Transaction from the Report Program.
Syntax
CALL TRANSACTION <tcod> [AND SKIP FIRST SCREEN] [USING <itab>].
Regards,
Swapna.
‎2008 Jul 09 10:02 AM
Hi,
Submit is use to call program and call transaction is use to call any transaction created for a program.
for example you have a program ztest then use submit as
submit Ztest.
an dfor call transaction to call a transaction 'se11' use:
call transaction 'se11'Regards,
Mukul.
‎2008 Jul 09 10:06 AM
Hi Jan,
CALL TRANSACTION is for calling a transaction from a report program while from SUBMIT we call another report program from our report program.
http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9da935c111d1829f0000e829fbfe/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9dd035c111d1829f0000e829fbfe/content.htm
regards,
pritam
Edited by: Pritam Ghosh on Jul 9, 2008 11:07 AM
‎2008 Jul 09 10:10 AM
hi submit is used for to calling a report from another report ..
call transaction is used for calling a transaction from another transaction from a report
‎2008 Jul 09 10:21 AM
The SUBMIT statement accesses an executable program. The executable program is executed as described under Calling Executable Reports. if we use return statement it will come back to the executable program once again
CALL TRANSACTION the calling program and its data is kept, and after exiting the called transaction, processing is resumed in the calling program after the call.
‎2008 Jul 09 10:21 AM
Hi,
SUBMIT means submit one report into another report only.
syntax submit <program name>
CALL TRANSACTION means call the transaction like mm01 se11 whatever it is in SAP.
regards.
sriram.
‎2008 Jul 09 10:25 AM
Hi Jan,
Submit :
This Statement is used to call a report program from another program.
Syntax
SUBMIT... [VIA SELECTION-SCREEN]
[USING SELECTION-SET <var>]
[WITH <sel> <criterion>]
[WITH FREE SELECTIONS <freesel>]
[WITH SELECTION-TABLE <rspar>].
Call Transaction :
This Statement is used to call a Transaction from the Report Program.
Syntax
CALL TRANSACTION <tcod> [AND SKIP FIRST SCREEN] [USING <itab>].
Regards,
Swapna.