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

BACK GROUND JOB PROCESSING

Former Member
0 Likes
922

I have a report in that 4 BDCs r there. Now the requirement is in the selection screen there shoud b a button(back ground) ...if click job will be created for in SM37. Now how to do it? U can find similer options in standard programs..and where that display comes in spool ...

PLZ ITS URGENT

regards

Message was edited by:

KaushiK©Datta

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
874

Hi,

Go to SM36 Tcode and click on Job wizard it will give you step by step.

Reward if helpful.

Regards,

Harini.S

7 REPLIES 7
Read only

Former Member
0 Likes
875

Hi,

Go to SM36 Tcode and click on Job wizard it will give you step by step.

Reward if helpful.

Regards,

Harini.S

Read only

Former Member
0 Likes
874

Hi Kaushik,

Do you want to write a code for creating a job through your program or do u want to know where that spool gets stored?

Read only

0 Likes
874

Hi, Njoi,

Through my code, job will be created. Im using call transaction to update FBB1. So through my code all the BDCs will go for background processing.

Suppose if u go to FBL3N...there is an option Execute in back ground..So in my program i need the same..

Message was edited by:

KaushiK©Datta

Read only

Former Member
0 Likes
874

use JOB_OPEN and JOB_START & JOB_CLOSE f modules to do this. on clicking the push button

*reward if helpful*

Read only

varma_narayana
Active Contributor
0 Likes
874

Hi..

To create a Background Job Dynamically :

You have to call the FMs.

CALL FUNCTION 'JOB_OPEN' "Creates a Job

SUBMIT RSBDCBTC WITH QID = .... "For processing a Session

CALL FUNCTION 'JOB_CLOSE' "Releases the Job

reward if Helpful.

Read only

0 Likes
874

hi varma....do u have any example?

Read only

Former Member
0 Likes
874

Thanks