2007 Feb 12 5:45 PM
Hi,
I would execute a programme ABAP with job. The program has a parameter selection date. How can i spicify a date with job
Thanks a lot
2007 Feb 12 5:48 PM
Hello,
Create a variant and schedule the Job in background using SM36.
Regards,
Vasanth
2007 Feb 12 5:48 PM
hi
Create a variant in the se38 and go to sm37 to create a background job and give the variant name.
Regards....
Arun.
2007 Feb 12 5:50 PM
Hi,
You need to use 3 Function modules ..
JOB_OPEN: Create a background job.
JOB_SUBMIT: Here you need to mention those parameters
JOB_CLOSE: Submit a background job to the background processing system for execution
http://help.sap.com/saphelp_sm32/helpdata/en/fa/096ce5543b11d1898e0000e8322d00/content.htm
Regards
Sudheer
2007 Feb 12 5:50 PM
Hi,
Use the SUBMIT ..AND RETURN, and pass the selection-screen values to that ,
Regards
Subramanian
2007 Feb 13 9:36 AM
Thanks for all your answers but my question is:
"Is there anyway to write my program in such a way that when it is executed in a job on a specific date, it will take into account the job date and use it to process what needs to be processed in my program"
2007 Feb 13 9:52 AM
Hi
You can programatically do that using:
SUBMIT rsbdcsub
WITH mappe EQ 'session name' " Session Name
WITH von EQ sy-datum " Starting Interval date
WITH bis EQ sy-datum " Closing Interval Date
WITH z_verarb EQ 'X'
WITH logall EQ 'X' " Log Info
by specifying your required dates here for the above parameters. u can achieve that.
Regards,
kumar
2011 Feb 08 9:47 PM