View previous topic :: View next topic
|
Author |
Message |
mohnish
New User
Joined: 22 Sep 2006 Posts: 4
|
|
|
|
How can v ?XDC? multiple job outputs from your SPOOL into different members of a PDS at one shot. |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello,
I don't know that you can. How would the command know which outputs to put in which members?
You could change the jcl to create the output in a member in a dataset. Then you would look at the member rather than the sysout. |
|
Back to top |
|
|
UmeySan
Active Member
Joined: 22 Aug 2006 Posts: 771 Location: Germany
|
|
|
|
Hi mohnish !
If Beta92/Beta-93 is installed in your shop and outputs are under control of Beta, you could use the Beta batch utility BSS01RFF to separate outputs to different DataSets.
You also can akkumulate outputs of different jobs to one PDS.
Great utility !
Regards, UmeySan |
|
Back to top |
|
|
avichal Warnings : 1 New User
Joined: 13 Apr 2007 Posts: 5 Location: india
|
|
|
|
How can you ?XDC? multiple job outputs from your SPOOL into different members of a PDS at one shot. |
|
Back to top |
|
|
Devzee
Active Member
Joined: 20 Jan 2007 Posts: 684 Location: Hollywood
|
|
|
|
Please why are you posting same question again and again? |
|
Back to top |
|
|
avichal Warnings : 1 New User
Joined: 13 Apr 2007 Posts: 5 Location: india
|
|
|
|
Hi UmeySan,
How can we akkumulate outputs of different jobs to one PDS. Could you elaborate little more. |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello,
Unless someone knows and posts otherwise, you cannot do this (create multiple members from multiple outputs in a single XDC command) with the standard XDC command. There are some add-on products that may do what you want.
If you issue multiple XDC commands for multiple outputs, you can "accumulate" those in differfent members of a pds.
Do not repeat your post over and over trying to get an answer that you would like better than the ones you've already received. |
|
Back to top |
|
|
Phrzby Phil
Senior Member
Joined: 31 Oct 2006 Posts: 1050 Location: Richmond, Virginia
|
|
|
|
XDC Caution: If you specify an existing member name, it overwrites with no confirmation. |
|
Back to top |
|
|
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 8796 Location: Welsh Wales
|
|
|
|
You could probably do this using SDSF under REXX.
If you do choose to go that way, the topic has been discussed many times so you would get a few hits on the solution. |
|
Back to top |
|
|
UmeySan
Active Member
Joined: 22 Aug 2006 Posts: 771 Location: Germany
|
|
|
|
@avichal !
As I wrote, it is possible if you use the Beta-Products in your shop for
output-control. If not, forget it.
If yes, have a look at dokumentation of Beta batch utility BSS01RFF .
Regards, UmeySan
Example:
Select Jobs with name SFOD % 427
This will be SFODA427, SFODB427, SFODC427 and so on.
Start-Date must be 17.10.2005 and End-Date also
Jobs must have been run between 12:30 and 13:10
Name of Output is PRINTERR in Step010 of Procstep010
Collect them in a member of a Dataset
Name = IER1337.USER.SPOOLIFR(PRINTERR)
//STEP010 EXEC PGM=BSS01RFF,REGION=0M,
// PARM=('S=92,B01LST=00,B92LST=91','PGM=B92PRINT')
//*
//B92DEF DD DUMMY
//*
//SFFPARM DD DISP=SHR,DSN=MVSC.BETABSA.PARMLIB
//*
//SFFFDUMP DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//OMSPRINT DD SYSOUT=*
//B92LOG DD SYSOUT=*
//*
//SYSIN DD *
PRINT
SDATE(17.10.2005)
STIME(12:30:00)
PDATE(17.10.2005)
PTIME(13:10:00)
MASK(DD.MM.YYYY)
JOBNAME(SFOD%427)
DDNAME1(PRINTERR)
STEPN(P010)
PSTEPN(S010)
SEPARATOR(NO)
SCOPE(BOTH)
MESSAGE(LONG)
DISPOSITION(SHR)
DATASET(IER1337.USER.SPOOLIFR(PRINTERR))
AUTOSEL(NO)
//* |
|
Back to top |
|
|
anish.ibm
New User
Joined: 28 Jun 2007 Posts: 23 Location: Bangalore
|
|
|
|
Hi Umaeysan ,
Could you please explain all the above parameters .. My requirement is to get only the JESMSGLG of specific set of JCLS from BETA to a member of a PDS . The member name and the job name should be same while writing in to the PDS . Can i use JESMSGLG in the place of JESOUT in your above example. What STEPN and PSTEPN denotes ..Its better if u give the clear explanation of the above parameters.
Thank You
Anish |
|
Back to top |
|
|
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 8796 Location: Welsh Wales
|
|
|
|
anish.ibm
If you have the product installed, then you should also have a set of manuals available to you. This is a good opportunity for you to do your own research now that you know what to do, you just need to find out how to do it. |
|
Back to top |
|
|
|