Application Development 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: 

Question of a function

Former Member
0 Kudos

Hi!

I try to find a function that execute a job process in SM35 transaction.

Some one know the transaction?

Thanks people!!

1 ACCEPTED SOLUTION

former_member181966
Active Contributor
0 Kudos

You can find the Function in SE37

OR

Go to Tr.SE93 -> give SM35 ->Diplay-> Double click on program name . it`ll open it in ABAP editor -> Click serach and find string " Call Function "

FMS

<u><b>call function 'JOB_OPEN'

call function 'JOB_CLOSE'</b></u>

Hope this’ll give you idea!!

<b>P.S award the points.</b>

Good luck

Thanks

Saquib Khan

"Some are wise and some are otherwise"

4 REPLIES 4

former_member181966
Active Contributor
0 Kudos

You can find the Function in SE37

OR

Go to Tr.SE93 -> give SM35 ->Diplay-> Double click on program name . it`ll open it in ABAP editor -> Click serach and find string " Call Function "

FMS

<u><b>call function 'JOB_OPEN'

call function 'JOB_CLOSE'</b></u>

Hope this’ll give you idea!!

<b>P.S award the points.</b>

Good luck

Thanks

Saquib Khan

"Some are wise and some are otherwise"

0 Kudos

Hi,

the FM's will be JOB_OPEN and JOB_CLOSE generally.

Regards

vijay

former_member181962
Active Contributor
0 Kudos

Instead of using a function module, you can use the SUBMIT statement using "VIA job <JOB name>" syntax.

or use:

JOB_SUBMIT FUnction module

REgards,

Ravi

Former Member
0 Kudos

In SM35 you will see batch input sessions not jobs. So are you asking of a way to execute the SM35 batch input sessions automatically? If so, you need to execute the program RSBDCSUB. You can use the suggestions given by others here to open a job, then submit this program via that job and then close the job.

Alternatively, you can define a job in SM36 with two steps. First step will execute your program that creates the sessions and second step will execute RSBDCSUB to process the sessions created by your first step. Read the documentation of the program.