View previous topic :: View next topic |
Author |
Message |
ds390 Beginner
Joined: 23 Jan 2007 Posts: 82 Topics: 39
|
Posted: Thu Oct 25, 2007 9:58 pm Post subject: how to know when is a job started? |
|
|
a job is active in the system, i want to know when did it kick in. |
|
Back to top |
|
 |
Nic Clouston Advanced
Joined: 01 Feb 2007 Posts: 1075 Topics: 7 Location: At Home
|
Posted: Fri Oct 26, 2007 1:05 pm Post subject: |
|
|
In SDSF just go to the ST or DA screen and select the job - you will see the output generated so far which includes the start time _________________ Utility and Program control cards are NOT, repeat NOT, JCL. |
|
Back to top |
|
 |
tcurrier Intermediate
Joined: 10 Feb 2006 Posts: 188 Topics: 68
|
Posted: Sun Feb 15, 2009 8:33 pm Post subject: |
|
|
Not sure if this is what you wanted, but programmatically, if you're sitting on your TSO id and you want to be 'notified' when the job starts, try adding this step to the top of your job(s) :
Code: | //NOTIFY EXEC PGM=IKJEFT01
//SYSTSIN DD *
SE 'JOB STARTED' U(XXXXXX)
/*
(Where XXXXXX = Your TSO Id) |
|
|
Back to top |
|
 |
DaveyC Moderator

Joined: 02 Dec 2002 Posts: 151 Topics: 3 Location: Perth, Western Australia
|
Posted: Mon May 18, 2009 3:09 am Post subject: |
|
|
tcurrier wrote: | Not sure if this is what you wanted, but programmatically, if you're sitting on your TSO id and you want to be 'notified' when the job starts, try adding this step to the top of your job(s) :
Code: | //NOTIFY EXEC PGM=IKJEFT01
//SYSTSIN DD *
SE 'JOB STARTED' U(XXXXXX)
/*
(Where XXXXXX = Your TSO Id) |
|
And what happens when user XXXXXX goes on vacation? You may end up filling up SYS1.BRODCAST which will overspill (SQA?) and could derail your system.
Errr, that would only happen if LOGON was specified. _________________ Dave Crayford |
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Tue May 19, 2009 3:57 pm Post subject: |
|
|
I've had SYS1.BRODCAST fill up and it just stops accepting messages. Fairly harmless, except for disgruntled users! _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
 |
tcurrier Intermediate
Joined: 10 Feb 2006 Posts: 188 Topics: 68
|
Posted: Thu Oct 01, 2009 5:49 pm Post subject: |
|
|
If anyone has a long enough vacation to cause SYS1.BROADCAST to fill up, I want to work for their company !  |
|
Back to top |
|
 |
Anuj Dhawan Intermediate
Joined: 19 Jul 2007 Posts: 298 Topics: 7 Location: Mumbai,India
|
Posted: Thu Oct 01, 2009 11:51 pm Post subject: |
|
|
LOL-- I'm also in...I'm also...  _________________ Regards,
Anuj |
|
Back to top |
|
 |
|
|