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: 

About Background job scheduling

Former Member
0 Kudos

One file will be coming from oracle system. it would be stored at a particular path.

I want to schedule for background job processing. how to do.

4 REPLIES 4

Former Member
0 Kudos

Hi,

You need to write a Program to place the file in the Application server, then only you can schedule a background job, you need to use the OPEN dataset, CLOSE DATASETS to do this one, then you can schedule the job .

To schedule a job in the background job, look at the below links

http://aspalliance.com/1129_Background_Processing_SAP_R3_System

Regards

Sudheer

Former Member
0 Kudos

HI,

Either you can simply use 'Archivfile_client to server' FM to place it to Application server..

Raja

Former Member
0 Kudos

The file will be coming from external system. I need to run abap report to update z database tables by uploading the file using background job scheduling.

To run the abap report i need to mention variant. but file will come everyday. so how should i mention variant.

It should pick the file from particular described path everyday.

Former Member
0 Kudos

Hi!

You can check the contents of the given directory with the EPS_GET_DIRECTORY_LISTING function module.

Then you have to process the files withthe OPEN DATASET, CLOSE DATASET commands.

If you finished the processing, you can delete the file, with the EPS_DELETE_FILE function module.

You might check out all other EPS_* function modules for more file handling.

Regards

Tamá