cancel
Showing results for 
Search instead for 
Did you mean: 

Scheduled Tasks

Former Member
0 Kudos

Good morning gurus,

I have created several scheduled tasks but I don't know where to check after it runs successful.

When it doesn't run successful I check on Background tasks to see the error and fix it but when it runs successful I don't know where to check.

Thank you in advance for your response.

Regards,

Sabelo

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Hi Sabelo,

Please let me know what type of scheduled task you executed.

For data import task, the data will be imported in the system. You have to check the project/agreements which you wanted to import and included in the file.

In case of report execution scheduled task you will be receiving a mail when the task is successful.

Regards,

Yeshwanth K.S

Former Member
0 Kudos

Hi Yeshwanth,

The scheduled type task is Explicitly Called Script Execution.

0 Kudos

I don't think there is any way for this. In our system, we have created files in SAP system and we used to check in that way. It depends on what functionality you are trying to do.

former_member190023
Contributor
0 Kudos

Hi Sabelo,

Generally you will only get messages if any task does NOT execute successfully. You will find 'traces' of the execution in the logs and deduce that successful execution has happened.

If you really want/need to have some message on every execution you could add a log message (not exception !!!) at the end of the script. This will be displayed in BG Task Status - Daemon Alerts:

log = Logger.createLogMessage(session);

log.setLogMessage("message");

Logger.error(log);

* in my case for example i'm logging the performance of the script for some MA processing

Former Member
0 Kudos

Hi  Bogdan,

Let me add the log message at the end of the script and see.

Former Member
0 Kudos

Thanks Bogdan your suggestion worked.