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: 

Background job

Former Member
0 Kudos

Hi Experts,

I am running a standard Program in background job to upload data. These programs picks the file from application server & upload the data in to SAP, After finishing the job it is displaying the report. Now my problem is i want to run the program in Background more then one time to read the files. I am getting a problem after running the first file it is displaying the report. But i don’t want to print it, it must be process the next file. Is there any way to skip the output screen and process the next file?

Regards

Rajendra

1 REPLY 1

Former Member
0 Kudos

Hi!

No, you can't skip the report.

You must define a temporary internal table for logging. You put the error or success log entries into this table, instead of displaying them with WRITE.

Table structure could be: path, filename, entries, success, failure

Then, after you finished with all files, you just LOOP AT the log table to display the results.

Regards

Tamá