IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

ISRSUPC uitility sysout not dispalyed in spool !


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Gayathri P

New User


Joined: 07 Oct 2011
Posts: 16
Location: India

PostPosted: Wed Oct 12, 2011 11:47 am
Reply with quote

Hi am using the ISRSUPC utility for comparing 2 DS.
code snippet:
COMPARE EXEC PGM=ISRSUPC,
PARM=(DELTAL,LINECMP,
'',
'')
NEWDD DD DSN=dsn1,
DISP=SHR
OLDDD DD DSN=dsn2,
DISP=SHR
OUTDD DD SYSOUT=(*)

but am not able to see the compared output in the spool ;
the OUTDD itself is not appearing; instead $INTTEXT is found werein I din get the required info. Help ?
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Wed Oct 12, 2011 12:00 pm
Reply with quote

did your jcl for the step come from your site's Batch Job Submission option of ISRSUPC
or from another source?

also, what are your JOB Card parms for MSGCLASS ?
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Wed Oct 12, 2011 12:40 pm
Reply with quote

You will not find output, if the return code was 1. Meaning no differences were found.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Wed Oct 12, 2011 1:33 pm
Reply with quote

Picking up from the reply from Dick, if you select for "Nolist", option 5 in "Listing Type" while generating the job, you'll not get any OUTDD (this can be one of the reasons among others)
Code:
 .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
   Menu  Utilities  Options  Help                                               
 ------------------------------------------------------------------------------
                                SuperCE Utility                                 
 Command ===>                                                                   
                                                                    More:     +
 New DS Name  . . . 'hlq.slq.FILE'                                             
 Old DS Name  . . . 'hlq.slq.FILE'                                             
 PDS Member List              (blank/pattern - member list, * - compare all)   
    (Leave New/Old DSN "blank" for concatenated-uncataloged-password panel)     
    Compare Type               Listing Type               Display Output       
    2  1. File                 5  1. OVSUM                1  1. Yes             
       2. Line                    2. Delta                   2. No             
       3. Word                    3. CHNG                    3. Cond           
       4. Byte                    4. Long                    4. UPD             
                                  5. Nolist                                     
 Listing DSN  . . . . SUPERC.LIST                                               
 Process Options  . .                                                           
                                                                               
 Statements Dsn . . .                                                           
 Update DSN . . . . .                                                           
                                                                               
 Enter "/" to select option      Execution Mode          Output Mode           
    Bypass selection list        2  1. Foreground        1  1. View             
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Wed Oct 12, 2011 1:40 pm
Reply with quote

Oh my goodness, ignore my previous comment. Had some memory problems, some of the return codes are :

0 Normal completion.
Comparison The input files are the same. No differences found.
Search No matches found in the input file.
1 Normal completion.
Comparison Differences were found in the input files.
Search Matches found in the input file.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Wed Oct 12, 2011 1:47 pm
Reply with quote

Quote:
Oh my goodness, ignore my previous comment.

we did, we understood that you had good intentions.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Oct 12, 2011 7:06 pm
Reply with quote

Hello,

Possibly there is something in the superc setup. . .

When a compare is sucessful on this machine, RC=0 and statistics are "printed" to OUTDD:
Code:
4 NOP X Uxxxx           17 STD      1   COMP1.OUTDD
Code:
                    LINE COMPARE SUMMARY AND STATISTICS               
                                                                       
                                                                       
                                                                       
    178 NUMBER OF LINE MATCHES               0  TOTAL CHANGES (PAIRED+NO
      0 REFORMATTED LINES                    0  PAIRED CHANGES (REFM+PAI
      0 NEW FILE LINE INSERTIONS             0  NON-PAIRED INSERTS     
      0 OLD FILE LINE DELETIONS              0  NON-PAIRED DELETES     
    178 NEW FILE LINES PROCESSED                                       
    178 OLD FILE LINES PROCESSED                                       


Actually, the statistics are generated if everythig matches or not. . .
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2546
Location: Silicon Valley

PostPosted: Wed Oct 12, 2011 8:27 pm
Reply with quote

Code:
DD SYSOUT=(*)


The SYSOUT=* depends on the MSGCLASS value on the jobcard. Is your MSGCLASS value a class for held output?

What happens when you specify a real dataset for OUTDD instead of sysout=*?
Back to top
View user's profile Send private message
Gayathri P

New User


Joined: 07 Oct 2011
Posts: 16
Location: India

PostPosted: Thu Oct 20, 2011 4:59 pm
Reply with quote

apologies for the very late reply.

@dbzTHEdinosauer

I have tried both by using the Utility and by batch job .

My job :
//SUPERCE JOB 'COMPARE',MSGCLASS=X,CLASS=S,NOTIFY=&SYSUID,
// TYPRUN=SCAN
//*
//COMPARE EXEC PGM=ISRSUPC,
// PARM=(DELTAL,LINECMP,
// '',
// '')
//NEWDD DD DSN=dsn1,
// DISP=SHR
//OLDDD DD DSN=dsn2,
// DISP=SHR
//OUTDD DD DSN=new.dsn,
// DISP=(NEW,CATLG,DELETE),
// DCB=(LRECL=133,BLKSIZE=0,RECFM=FB),
// SPACE=(TRK,(5,5),RLSE),
// UNIT=SYSDA

the above MSGCLASS is wat I give for all of my other jobs too.
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Thu Oct 20, 2011 5:08 pm
Reply with quote

TYPRUN=SCAN? Was that on the job with no output?
Back to top
View user's profile Send private message
Gayathri P

New User


Joined: 07 Oct 2011
Posts: 16
Location: India

PostPosted: Thu Oct 20, 2011 5:09 pm
Reply with quote

@Anuj Dhawan[b]

below are options i gave while using the utility

2.Line 2.delta 1.yes

@dick scherrer

Yes during my previous comparisons using both Utility and Batch Job ,
I had got these differences listed in the OUTDD of the spool.
But now that am working in a differnt machine , I get this problem...

[/b]
Back to top
View user's profile Send private message
daveporcelan

Active Member


Joined: 01 Dec 2006
Posts: 792
Location: Pennsylvania

PostPosted: Thu Oct 20, 2011 6:57 pm
Reply with quote

Is this so clear that it can not be seen?

In the JCL provided the OUTDD is pointing to a dataset.

Either look there or change it to:
OUTDD DD SYSOUT=*

The output will then go to your MSGCLASS.

Am I missing something here?
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2546
Location: Silicon Valley

PostPosted: Thu Oct 20, 2011 6:58 pm
Reply with quote

Quote:
TYPRUN=SCAN? Was that on the job with no output?

Agree that that is the problem.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Fri Oct 21, 2011 5:12 pm
Reply with quote

You're not consistent in what you post - very first post, from you, said:
Quote:
but am not able to see the compared output in the spool ;
and in the latest post you show
Quote:
//OUTDD DD DSN=new.dsn,
. You also show TYPRUN=SCAN in your Job.

What you've posted, with that you're given the sugestions, if they don't work out for you - well, ask someone around in your shop - how are they doing this and then you can understand what mistake you are doing, possibly.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts ISRSUPC search utility - using high l... TSO/ISPF 2
No new posts Search string in job at regular Spool... CLIST & REXX 0
No new posts Copy few lines from SYSOUT of 10 mill... All Other Mainframe Topics 5
No new posts Capturing logs from spool dd JCL & VSAM 6
No new posts No sysout coming in spool JCL & VSAM 4
Search our Forums:

Back to Top