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

calling sap tcode inback ground processing

Former Member
0 Likes
774

how to call sap tcdoe se38 in back ground processing.

is - submit se38 - is enough.

6 REPLIES 6
Read only

Former Member
0 Likes
744

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

Read only

0 Likes
744

i am doing dialog programming

eg code

CASE ucomm.

WHEN 'NEXT'.

SUBMIT SE38.

  • CALL SCREEN 0200.

ENDCASE.

Read only

0 Likes
744

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

Read only

0 Likes
744

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

Read only

0 Likes
744

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

Read only

0 Likes
744

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,