Hello,
I'm wondering if there is any way to keep track of a group of jobs as a single unit.
I have a job that in turn kicks off two independent, parallel jobs. I have a fourth job that waits on the completion of these two parallel jobs, and when they complete, the fourth job starts.
I would like to log any errors that occur during these jobs to a database. However I would like to be able to group the jobs together as a single unit. In other words, I would like my error logging table to have a column (i.e. group ID or some such) that lets me determine which errors occurred during the same "group execution" so to speak.
Is there any concept of this in AdTempus? One solution I was considering was to create a new GUID at the start of the first job, and somehow pass that GUID on to the subsequent jobs when they start, and log in my database table against that GUID. However, I'm not sure if it is possible to pass Job variable values from one job to another.
Any help would be great.
Thanks!