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

Passing data from COBOL to JCL


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Prasanna Srinivas D

New User


Joined: 12 Oct 2007
Posts: 9
Location: chennai

PostPosted: Sat May 17, 2008 7:03 pm
Reply with quote

My requirement is that the name of a file is to be determined in a COBOL program and should be passed back to the JCL executing it, so that it can be used in the subsequent steps.

I know that RETURN-CODE can be used to pass back data from COBOL, but I do not think it is of any use in this case. I am also aware of the technique of setting a global variable in the JCL and passing the reference via PARMS to COBOL, where the value can be modified in the linkage section and can be used in the JCL later.

What I would like to know at this point is

1. What should linkage section variables be to accept the reference, more specifically the data type?

2. Should it be modified in the linkage section itself so that the changes reflect in the JCL or can it be changed in the logic of the COBOL program? I am asking this because the file name is determined by the logic of the program dynamically.
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Sat May 17, 2008 7:30 pm
Reply with quote

You can not do it.

The JCL is interpreted at submission time and is unchangable from that point onwards.

You could write the dataset name out to a file and then use dynamic allocation routines in later steps to access the file, but the way you want to do it. No chance.
Back to top
View user's profile Send private message
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

PostPosted: Sat May 17, 2008 7:36 pm
Reply with quote

What you propose is not possible in the same JOB.

You can break the JCL up into 2 JOBs. The 1st creates the JCL for the 2nd JOB, where the date is included in the DSN. Then the 2nd step of JOB1 submits the JCL created in the 1st step via INTRDR.

Check via the search facility above for details (use INTRDR as the seach arg).
Back to top
View user's profile Send private message
Prasanna Srinivas D

New User


Joined: 12 Oct 2007
Posts: 9
Location: chennai

PostPosted: Sun May 18, 2008 10:48 am
Reply with quote

Thank You expat and mmwife. I will try doing both ways and post the results.
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Store the data for fixed length COBOL Programming 1
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
Search our Forums:

Back to Top