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: 

Pass structure of values for Job submit

Former Member
0 Kudos

Hi,

I need sytax to submit a job

Right now I am using this code to send 4 parameters.

I need to send these 4 in a structure.

<b>submit Ztestjob USER sy-uname

via job p_jobnm

number p_jobcount

with afko-rsnum eq afko-rsnum

with aufnr_d eq aufnr_d

with sernr_d eq sernr_d

with p_lmnga eq p_lmnga

AND RETURN.</b>

So I have to pass a structure of values into the BGprogram through a submit and do a couple of loops in the BGPROGRAM.

I need the syntax for submit .

I also need to know how to catch the structure with values in the BGPROGRAM.

Anyone please answer ASAP

Message was edited by:

ramana peddu

Message was edited by:

ramana peddu

Message was edited by:

ramana peddu

Message was edited by:

ramana peddu

2 REPLIES 2

Former Member
0 Kudos

submit bgprogram using structure.

Regards,

Amey

Former Member
0 Kudos

Hi,

If want to pass an internal table...

Then create a dummy select-options...

And then pass the values in the select-options..

Then in the submitted program you can use the select-options internal table..

Thanks,

Naren