View previous topic :: View next topic |
Author |
Message |
js_praveen Beginner
Joined: 09 Jan 2003 Posts: 20 Topics: 7
|
Posted: Thu Jan 09, 2003 3:39 pm Post subject: SYSIN DATA |
|
|
Hi All,
Is there any command to see the SYSIN data which we used to run a JOB from IOF?
Thanks
JSP |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Thu Jan 09, 2003 3:54 pm Post subject: |
|
|
Praveen,
You can set the Primary command to display sysin datasets on the panel. Input data sets are not normally displayed unless the job is on input.
Syntax
ON. Enable input data set display. On is default.
OFF. Disable input data set display.
Hope this helps...
cheers
kolusu
PS: IOF documentation is available from the main page of mvsforums under TSO section.
http://www.mvsforums.com/
Chapter 8 (IOF Job Summary ) explains as to how to see the sysin datasets.
Hope this helps...
cheers
Kolusu |
|
Back to top |
|
 |
js_praveen Beginner
Joined: 09 Jan 2003 Posts: 20 Topics: 7
|
Posted: Thu Jan 09, 2003 4:12 pm Post subject: |
|
|
Kolusu,
Thanks for the response, with INPUT ON, I'm able to see the data which I use as instream ( using DD *) but I'm not able to find the data which is there inside a control card member.
Say If I have a dynamic control card which gets updated every day, I want to see the data which it had on a particular run. Is this possible?
Thanks
JSP |
|
Back to top |
|
 |
R.Nickel Beginner

Joined: 02 Dec 2002 Posts: 22 Topics: 0 Location: Sydney, Australia
|
Posted: Thu Jan 09, 2003 4:20 pm Post subject: |
|
|
JSP,
Change the JCL, add an IEBGENER step and copy the 'Dynamic control card' which I assume is a temporary dataset to the same output class as your MSGCLASS and you can view/print as required. _________________ Rainer |
|
Back to top |
|
 |
js_praveen Beginner
Joined: 09 Jan 2003 Posts: 20 Topics: 7
|
Posted: Thu Jan 09, 2003 4:50 pm Post subject: |
|
|
Rainer,
I want to see the control card data of a JOB which was already executed. I can't go and look at the control card which is there at present since it would've changed because of some other jobs, or is it possible ?
Thanks
JSP |
|
Back to top |
|
 |
R.Nickel Beginner

Joined: 02 Dec 2002 Posts: 22 Topics: 0 Location: Sydney, Australia
|
Posted: Thu Jan 09, 2003 5:09 pm Post subject: |
|
|
JSP,
Position the IEBGENER either just after the data is created or just before it is used. The output will be with the job just run so it cannot change after that, use SDSF and the contents as used by that run will be seen. _________________ Rainer |
|
Back to top |
|
 |
js_praveen Beginner
Joined: 09 Jan 2003 Posts: 20 Topics: 7
|
Posted: Thu Jan 09, 2003 5:15 pm Post subject: |
|
|
Rainer,
Yes this will work for the new Jobs. But I have a couple of jobs which were already executed and they are in IOF, will I be able to see the control card data which it used when it was run?
Thanks
JSP |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Thu Jan 09, 2003 5:22 pm Post subject: |
|
|
Praveen,
Is your dynamic control concatenated to your instream data?? for ex:
Code: |
//SYSIN DD DSN=YOUR DYNAMIC CONTROL CARD,
// DISP=SHR
// DD *
THIS IS MY INSTREAM DATA
END
//*
|
Kolusu |
|
Back to top |
|
 |
js_praveen Beginner
Joined: 09 Jan 2003 Posts: 20 Topics: 7
|
Posted: Thu Jan 09, 2003 5:27 pm Post subject: |
|
|
No it is just
//SYSIN DD DSN=YOUR DYNAMIC CONTROL CARD,
// DISP=SHR |
|
Back to top |
|
 |
R.Nickel Beginner

Joined: 02 Dec 2002 Posts: 22 Topics: 0 Location: Sydney, Australia
|
Posted: Thu Jan 09, 2003 5:51 pm Post subject: |
|
|
For jobs that have already run you will not be able to see the data. It is gone! finished! Kaput!  _________________ Rainer |
|
Back to top |
|
 |
CaptBill Beginner
Joined: 02 Dec 2002 Posts: 100 Topics: 2 Location: Pasadena, California, USA
|
Posted: Thu Jan 09, 2003 6:24 pm Post subject: |
|
|
I suppose that if you have SDSF you could type SJ next to the jobname after it was run and see the jobstream that was submitted. I believe that would include the instream data. |
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Fri Jan 10, 2003 11:43 am Post subject: |
|
|
CaptBill,
Helpful hint, but as praveen mentioned above his case was not instream but a dataset.
Bill |
|
Back to top |
|
 |
js_praveen Beginner
Joined: 09 Jan 2003 Posts: 20 Topics: 7
|
Posted: Mon Jan 13, 2003 2:08 am Post subject: |
|
|
It didn't work in IOF!! |
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Mon Jan 13, 2003 11:19 am Post subject: |
|
|
For control cards in datasets, use R.Nickel suggestion above about adding a GENER step just before the pgm to list the cards (or change your pgm to list the cards being processed).
Bill |
|
Back to top |
|
 |
|
|