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

Call Transaction

Former Member
0 Likes
736

Hi Gurus,

I am working as an ABAP consultant is it possible to shedule in a job in back ground. As per my knowlrdge in call transafction I can shedule the job in foreground.

issue resolved.

6 REPLIES 6
Read only

Former Member
0 Likes
701

Hi

Something doesn't sound good: a job works in background as default, if u need to schedule a job, that means the program scheduled will run in background mode.

Now the problem is a TRANSACTION can be insert in a step of a job, but it can use the program assigned to the transaction: so u should explain what u need to do

Max

Read only

0 Likes
701

Hey Max,

My quesrion is can it possible in call transaction method in BDC to schedule the job in back ground.As per my knowledge I can schedule it only Sesssion method.(My questioin is related to BDC)

Read only

0 Likes
701

Hi

Yes u can.

U can create a BDC session a run it in background mode.

The session can be run by transaction SM35, but u can do it programmatically (or manually) by submitting the program RSBDCSUB.

That means u can schedule a job for the program above in order to run your BDC session.

Max

Read only

Former Member
0 Likes
701

yes,..we can do that..Use no display mode ..

schedule the program for background job processing using the transactions SM36 and SM37.

Read only

Former Member
0 Likes
701

Hi,

its possible to run the calltransaction method in back ground means just changing the themode like mod 'N' means in no display .

syntax

like call transaction 'T-CODE' using BDCDATA mode 'N'

update 'A'

messages into BDCMSGCOLL.

and the job scheduling , schedule the program using SM36 transaction and using overview of job SM37.

Regards,

Madhu

Read only

Former Member
0 Likes
701

issue resolved.