Source Data Definition clicking on Run Scheduled Job and want to see status of job complete
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-27-2025 12:41 PM - edited ‎01-27-2025 12:46 PM
I have a scheduled job that I am manually running from a Source Data Definition record. I want to be able to see when the scheduled job is complete. Is there a log or a transaction history that will show me the status of the job when it is completed?
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-27-2025 12:50 PM
You can add:
// add at the top of the script
gs.info('myScheduledJob: Starting.');
// add before script/function completes
gs.info('mySchedluledJob: Ending.');
and then check Script Log statements and filter for message, contains, 'myScheduledJob'.