View previous topic :: View next topic
|
Author |
Message |
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2146 Location: At my coffee table
|
|
|
|
I just spent 30 minutes searching IBM sites for what I used to know as (IIRC) the Supervisor and I/O Macros manual...you know, OPEN, CLOSE, SAVE, RETURN, PDUMP..... and the closest I could find was one for VSE - which ain't gonna help me here......
Any pointers?
BTW, on the other forum, I would have posted this in "Stupid Questions".... |
|
Back to top |
|
|
ofer71
Global Moderator
Joined: 27 Dec 2005 Posts: 2358 Location: Israel
|
|
Back to top |
|
|
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2146 Location: At my coffee table
|
|
|
|
William Thompson wrote: |
Searched text for PDUMP and got:
No search hits found for: PDUMP
Where the heck is the manual????
Back in my VSE days, I had a "real" manual, how come I can't find the dang thing now????? |
Oops, yea, I agree with what he said.... |
|
Back to top |
|
|
UmeySan
Active Member
Joined: 22 Aug 2006 Posts: 771 Location: Germany
|
|
|
|
Hi !
Have a look at "Principals of Operations" !!!
Regards, UmeySan |
|
Back to top |
|
|
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2146 Location: At my coffee table
|
|
|
|
UmeySan wrote: |
Have a look at "Principals of Operations" !!! |
Good for instructions, bad for macros.... |
|
Back to top |
|
|
UmeySan
Active Member
Joined: 22 Aug 2006 Posts: 771 Location: Germany
|
|
|
|
Hi ! Also, if you could find them:
VSE/ESA Systems Macros User Guide
VSE/ESA System Macro Reference
And other Sub System ManualsPOWER, VSAM, etc.
And btw, i used PDUMP during VSE-Times, 30 years ago. Under MVS or Z/OS use the SNAP macro.
Regards, UmeySan |
|
Back to top |
|
|
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2146 Location: At my coffee table
|
|
|
|
UmeySan wrote: |
Under MVS or Z/OS use the SNAP macro. |
OK, you win....grin....Where is the "SNAP" macro defined/documented? |
|
Back to top |
|
|
UmeySan
Active Member
Joined: 22 Aug 2006 Posts: 771 Location: Germany
|
|
|
|
Hi CICS Guy !
Here's a little documentation.
You could take a so called SNAP Dump. Therfore first you have to code a special DCB in the programm.
Programm:
SNDCB DCB DSORG=PS,RECFM=VBA,BLKSIZE=882,
MACRF=(W),LRECL=125,DDNAME=SNDUMP
Then in the programm at the point of your desire, you can take a storage, register, field or whatever dump via snap macro.
mvc
mvc
SNAP DCB=SNDCB,STORAGE=(FIELD_A1,FIELD_A9)
mvc
mvc
Complete SNAP command:
SNAP DCB=SnapDcbName
ID=IdNumer
PDATA=(Field,Field...)
STORAGE=(Beginn,End)
LIST=Adress
Please look at Ass-Bookmanager for further details.
Regards, UmeySan |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
Back to top |
|
|
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2146 Location: At my coffee table
|
|
|
|
Thanks, that answered half....Any idea where the SAVE/RETURN macros might be hidding? |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10886 Location: italy
|
|
Back to top |
|
|
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2146 Location: At my coffee table
|
|
|
|
YES!! Thanks, I must of been thinking too much VSE when I was searching....Do you know how many manuals come up looking for SAVE and RETURN........Lots...... |
|
Back to top |
|
|
ganasrinivasan
New User
Joined: 06 Nov 2006 Posts: 27 Location: Montreal
|
|
|
|
Hi,
If u r looking at assembler macros. you can try DFSMS Macro Instructions for Data Sets manual.
Title: z/OS V1R3.0 DFSMS Macro Instructions for Data Sets
Document Number: SC26-7408-01 |
|
Back to top |
|
|
|