SDSF Output Being Split Out

In this Mainframe Forum - You can post your queries on JCL, OS/390 JCL, MVS JCL, z/OS JCL, JES2 & JES3

Moderators: Frank Yaeger, DikDude, Moderator Group

Post Reply
mbyrne
Member
Posts: 1
Joined: Sat Dec 09, 2006 1:08 am

SDSF Output Being Split Out

Post by mbyrne » Sat Dec 09, 2006 5:09 am

I?m not sure if this is a JCL question or a REXX question, but I?ll pose it as being JCL.

11 report lines written from a REXX program are appearing separately from the other SDSF job output.
I would prefer to see those report lines appearing as a DDNAME with the rest of the output.

Code: Select all

SDSF HELD OUTPUT DISPLAY ALL CLASSES  LINES 438,067    LINE 88-89 (89)
COMMAND INPUT ===>                                            SCROLL =
NP   JOBNAME  TYPE JNUM  PRTY  CRDATE              C TOT-REC   FORMS  
     TS394RPT JOB  14699     9 12/08/2006 12:21:49 0        11 STD    
     TS394RPT JOB  14699     9 12/08/2006 12:21:50 0       105 STD


Current output:

Code: Select all

SDSF JOB DATA SET DISPLAY - JOB TS394RPT (JOB14699)    LINE 1-5 (5)            
 COMMAND INPUT ===>                                            SCROLL ===> HALF
 NP   DDNAME   StepName ProcStep DSID Owner    C Dest               Rec-Cnt Page
      JESMSGLG JES2                 2 TS394    0 LOCAL                   24     
      JESJCL   JES2                 3 TS394    0 LOCAL                   26     
      JESYSMSG JES2                 4 TS394    0 LOCAL                   45     
      ISPLOG   LOADXREF           102 TS394    0 LOCAL                    5     
      SYSTSPRT LOADXREF           103 TS394    0 LOCAL                    5
Desired output:

Code: Select all

SDSF JOB DATA SET DISPLAY - JOB TS394RPT (JOB14699)    LINE 1-6 (6)            
 COMMAND INPUT ===>                                            SCROLL ===> HALF
 NP   DDNAME   StepName ProcStep DSID Owner    C Dest               Rec-Cnt Page
      JESMSGLG JES2                 2 TS394    0 LOCAL                   24     
      JESJCL   JES2                 3 TS394    0 LOCAL                   26     
      JESYSMSG JES2                 4 TS394    0 LOCAL                   45     
      ISPLOG   LOADXREF           102 TS394    0 LOCAL                    5     
      SYSTSPRT LOADXREF           103 TS394    0 LOCAL                    5
      XREFRPT  LOADXREF           104 TS394    0 LOCAL                   11
I?ve used the JCL statement:
//XREFRPT DD SYSOUT=*

And the REXX code:
"ALLOC FILE(xrefrpt) DA(*) SHR"
"EXECIO "linecnt" DISKW xrefrpt (STEM rpt. FINIS)"

I?ve tried different combinations- with and without the //XREFRPT DD, with and without the REXX ALLOC, etc., but it ends up being split out, regardless. Is it possible to incorporate into one SDSF job output?

Post Reply

FREE TUTORIALS

Tutorials
Free tutorials from mainframegurukul
  • JCL Tutorial
    Covers all important JCL concepts.
  • Cobol Tutorial
    This tutorials covers all Cobol Topics from STRING to COMP-3.
  • DB2 Tutorial
    DB2 Tutorial focuses on DB2 COBOL Programming.
  • SORT Tutorial
    This Tutorial covers all important aspects of DFSORT with examples
  • CICS Tutorial
    This CICS tutorial covers CICS concepts and CICS Basics, CICS COBOL Programming.
Interview
Mainframe Interview questions



Other References
Mainframe Tools and others