View previous topic :: View next topic |
Author |
Message |
nbdtrjk1 Beginner
Joined: 12 Apr 2007 Posts: 76 Topics: 41
|
Posted: Mon Feb 02, 2009 5:02 am Post subject: Pop-up the output DS after completion of JCLS |
|
|
Hi All,
Is there any way to automatically Pop-up the output ds(like 3.4 option) after successful execution of JCL. Please me on this.
Thanks |
|
Back to top |
|
|
nbdtrjk1 Beginner
Joined: 12 Apr 2007 Posts: 76 Topics: 41
|
Posted: Mon Feb 02, 2009 10:16 pm Post subject: |
|
|
All
to fix the above one, i thought of calling rexx routine to pop-up the output file from last setp of jcl.
i searced this form and i got one jcl to call rexx.
Code: | //EDITMAC EXEC PGM=IKJEFT01
//SYSEXEC DD DSN=USER1.REXX.EXEC,DISP=SHR
//ISPPROF DD DSN=USER1.COPY.PROFILE,DISP=SHR
//ISPPLIB DD DISP=SHR,DSN=SYS1.ISP.SISPPENU
//ISPMLIB DD DISP=SHR,DSN=SYS1.ISP.SISPMENU
//ISPSLIB DD DISP=SHR,DSN=SYS1.ISP.SISPSENU
//ISPTLIB DD DISP=SHR,DSN=SYS1.ISP.SISPTENU
//ISPLOG DD SYSOUT=*,DCB=(LRECL=125,RECFM=VBA)
//SYSTSPRT DD SYSOUT=*,DCB=LRECL=125
//SYSPRINT DD SYSOUT=*
//SYSTSIN DD *
ISPSTART CMD(TEST1)
//*
My rexx Name - Test1
/* REXX */
PDS = 'BOST.NBDTRJK.SYSPR.FINAL'
ADDRESS ISPEXEC "BROWSE DATASET('"PDS"')" |
after execution of JCL i'm getting below error
READY
ISPSTART CMD(TEST1)
ISPP330 BDISPMAX exceeded -/-100 displays exceeded in batch mode on pane
READY
END
Please help me on this. |
|
Back to top |
|
|
expat Intermediate
Joined: 01 Mar 2007 Posts: 475 Topics: 9 Location: Welsh Wales
|
Posted: Tue Feb 03, 2009 2:02 am Post subject: |
|
|
And on which terminal exactly would you expect the dataset to 'pop up' onto ?
Your TSO session and any submitted batch jobs are COMPLETELY DIFFERENT address spaces. _________________ If it's true that we are here to help others,
then what exactly are the others here for ? |
|
Back to top |
|
|
|
|