Dear All,
I have a requirement of submitting the job at specific time. There is a Ztransaction whose recording i had obtained through sm35 and now i need to create a job for a mass change of this recording and that should be done only in the evening.
my doubt is within the abap program once i had created the internal table with all the recording values how can i use the filled internal table to create and execute the job. there is a following code available on internet to submit the job. but where i can specify the internal table prepared with values.
SUBMIT zreport and return
with p_param1 = 'value'
with p_param2 = 'value'
user sy-uname
via job jobname
number jobcount.
if sy-subrc > 0.
"error processing
endif.