‎2007 May 31 8:21 AM
how to call sap tcdoe se38 in back ground processing.
is - submit se38 - is enough.
‎2007 May 31 8:23 AM
Hi
Where u want to call this Tcode.Do u want to run this Tcode to be run in background of any program??
Canu be clear in ur question
Regards
Pavan
Message was edited by:
pavan praveen
‎2007 May 31 8:24 AM
i am doing dialog programming
eg code
CASE ucomm.
WHEN 'NEXT'.
SUBMIT SE38.
CALL SCREEN 0200.
ENDCASE.
‎2007 May 31 8:38 AM
hi
you cannot submit a t-code.
you have to submit an executable program
http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba51a35c111d1829f0000e829fbfe/content.htm
or
create a t-code for your report and then call the tcode.
thx
pavan
‎2007 May 31 8:40 AM
If you wanna go to SE38, you can use CALL TRANSACTION (in background/foreground mdoe).
If you directly want to execute a particular report then you can use SUBMIT
‎2007 May 31 8:46 AM
Ok then u can call the tcode in ur program through a statement
CALL TRANSACTION and also use submit statement if even though u r getting any error then let me know
Regards Pavan
‎2007 May 31 9:02 AM
hi,
this is your code in this instead of SUBMIT SE38, write CALL TRANSACTION SE38,
and if you want some report to be executed or any executable program then you write SUBMIT [program name].
CASE ucomm.
WHEN 'NEXT'.
SUBMIT SE38.
CALL SCREEN 0200.
ENDCASE.
hope this will help you.
regards,