SUPERC : How to display the full length file in output
Select messages from
# through # FAQ
[/[Print]\]

MVSFORUMS.com -> Utilities

#1: SUPERC : How to display the full length file in output Author: SebanpjLocation: BANGALORE PostPosted: Fri Aug 22, 2008 7:54 am
    —
Hi,

I am using ISRSUPC Utility to compare two datasets of LRECL = 270. The missmatch is occuring at the byte location 180-184. In the output of comparison We will usually get the first 80 bytes of the records which is having mismatch.

Can anyone suggest me any way to display the full 270 bytes of the records which is having missmatch.

This is the JCL which I have used.

Code:

//SEJ1I0CP JOB (FN,T500),'SEBAN',MSGCLASS=Q,             
//     NOTIFY=&SYSUID,TIME=(1439),REGION=0M,MSGLEVEL=(1,1)
//SUPERC  EXEC PGM=ISRSUPC,                               
//            PARM=(DELTAL,LINECMP,                       
//            '',                                         
//            '')                                         
//NEWDD  DD DSN=YPTEST.YPSDAILY.FADT.TSTOUT,             
//          DISP=SHR                                     
//OLDDD  DD DSN=YPTEST.YPSDAILY.FADT.PRDOUT,             
//          DISP=SHR                                     
//OUTDD  DD DSN=YPTEST.CR143371.COMPARE.LOG,             
//          DISP=(,CATLG,DELETE),                         
//          UNIT=SYSDA,LRECL=300,                         
//          SPACE=(TRK,(25,10),RLSE),                     
//          RETPD=220                                     
//SYSIN  DD *                                             
    CMPCOLM 1:270                                         
/*                                                       
//*   
                                                   



and this is how my output is coming.
Code:



                                                                                                               MAT=    1
I - 000940040H12000SA6800........      ....A  000CS9HCX2  43724811N000    ............N1LR00000030708071908080 RPL=    1 03143 03143
D - 000940040H12000SA6800........      ....A  000CS9HCX2 143724811N000    ............N1LR00000030708071908080                     
                                                                               
  ISRSUPC   -   MVS/PDF FILE/LINE/WORD/BYTE/SFOR COMPARE UTILITY- ISPF FOR z/OS
NEW: YPTEST.YPSDAILY.FADT.TSTOUT                             OLD: YPTEST.YPSDAILY.FADT.PRDOUT     
                                                                               
                       LINE COMPARE SUMMARY AND STATISTICS                     
                                                                               
    4289 NUMBER OF LINE MATCHES              75  TOTAL CHANGES (PAIRED+NONPAIRED CHNG) 
       0 REFORMATTED LINES                   75  PAIRED CHANGES (REFM+PAIRED INS/DEL) 
      75 NEW FILE LINE INSERTIONS             0  NON-PAIRED INSERTS             
      75 OLD FILE LINE DELETIONS              0  NON-PAIRED DELETES             
    4364 NEW FILE LINES PROCESSED                                               
    4364 OLD FILE LINES PROCESSED                                               
                                                                               
LISTING-TYPE = DELTA      COMPARE-COLUMNS =    1:270       LONGEST-LINE = 270   
PROCESS OPTIONS USED: NONE                                                     
                                                                               
THE FOLLOWING PROCESS STATEMENTS (USING COLUMNS 1:72) WERE PROCESSED:           
       CMPCOLM 1:270                                                           
                                                                               
ISRS004I LISTING LINES MAY BE TRUNCATED DUE TO LIMITING OUTPUT LINE WIDTH.     
                                                                               



I need to display the full length file in Character format to show the customer that difference is comming only in the byte location 180-184.
Please help

#2:  Author: jsharon1248Location: Chicago PostPosted: Fri Aug 22, 2008 9:58 am
    —
Use the UPDPDEL processing option and define a delta dataset, DELDD.

Code:
//SUPERC  EXEC PGM=ISRSUPC,                                            *
//            PARM=(DELTAL,LINECMP,                                     
//            'UPDPDEL',                                               
//            '')                                                       
//NEWDD  DD DSN=<in dsn>,                                   
//          DISP=SHR                                                   
//OLDDD  DD DSN=<out dsn>,                       
//          DISP=SHR                                                   
//OUTDD  DD SYSOUT=(A)                                                 
//DELDD  DD DSN=<delta dsn>,                                     
//          DISP=OLD


The help panels for Superc show numerous processing options. If this one doesn't satisfy your needs, read through the help topics.

#3:  Author: SebanpjLocation: BANGALORE PostPosted: Sun Aug 24, 2008 10:48 am
    —
Yes Friend, It worked. Thank You very very much for your valuable help.



MVSFORUMS.com -> Utilities


output generated using printer-friendly topic mod. All times are GMT - 5 Hours

Page 1 of 1

Powered by phpBB © 2001, 2005 phpBB Group