Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
Add data to seq. file from SYSIN

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL
Author Message
manoopatil

New User


Joined: 07 Dec 2003
Posts: 18
Location: Pune

PostPosted: Thu Jun 26, 2008 12:34 pm    Post subject: Add data to seq. file from SYSIN
Reply with quote

I am working to write a JCL which executes 4 cobol programs. After the execution of each program I need to check the return code using the IF-THEN-ELSE condition and write "success <pgm>" or "fail <pgm>" to a same sequential file for each program. So the flow is as follows. Can you please suggest which JCL utility can be used for this and how to make sure that the sequential file is getting the message "ADDED" to it for each program result.

//STEP1 EXEC PGM=COBPGM1
// IF (RC EQ 0) THEN
//MSG1 EXEC PGM= ?? <not sure which utility to use>
//DDMSG DD TSOM.MSGFILE
//SYSIN DD *
"COBPGM1 SUCCESS"
// ELSE
// MSG2 EXEC PGM=??
//DDMSG DD TSOM.MSGFILE
//SYSIN DD *
"COBPGM1 FAIL"
//
//STEP2 EXEC PGM=COBPGM2
// IF (RC EQ 0) THEN
//MSG3 EXEC PGM= ?? <not sure which utility to use>
//DDMSG DD TSOM.MSGFILE
//SYSIN DD *
"COBPGM2 SUCCESS"
// ELSE
// MSG4 EXEC PGM=??
//DDMSG DD TSOM.MSGFILE
//SYSIN DD *
"COBPGM2 FAIL"
//

At the end of the JCL, the sequential file TSOM.MSGFILE should look like this

COBPGM1 FAIL
COBPGM2 SUCCESS
COBPGM3 FAIL
COBPGM4 SUCCESS
Back to top
View user's profile Send private message
References
PostPosted: Thu Jun 26, 2008 12:34 pm    Post subject: Re: Add data to seq. file from SYSIN Reply with quote

enrico-sorichetti

Global Moderator


Joined: 14 Mar 2007
Posts: 2538
Location: italy

PostPosted: Thu Jun 26, 2008 12:38 pm    Post subject: Reply to: Add data to seq. file from SYSIN
Reply with quote

Code:
//g      exec pgm=iebgener
//sysut1   dd *
.......
.......
//sysut2   dd disp=(mod,.....),dsn=......
//sysin    dd dummy
//sysprint dd sysout=*
Back to top
View user's profile Send private message
manoopatil

New User


Joined: 07 Dec 2003
Posts: 18
Location: Pune

PostPosted: Thu Jun 26, 2008 2:28 pm    Post subject:
Reply with quote

Thanks!
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 2817
Location: Brussels once more ...

PostPosted: Thu Jun 26, 2008 2:32 pm    Post subject:
Reply with quote

I must admit to being just a little intrigued at why this needs to done.

Would someone help me and explain the need for this processing
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL All times are GMT + 6 Hours
Page 1 of 1