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

Pass value from JCL and use in COBOL Array


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
priyanka.msharma
Warnings : 1

New User


Joined: 28 Jan 2009
Posts: 12
Location: India

PostPosted: Fri Nov 27, 2009 2:00 pm
Reply with quote

Hi,

I want to pass value from a PARM to COBOL pgm. Could I use the parm value in Array?

02 X-TAB-05 OCCURS 1 TO PARM1-REC TIMES
DEPENDING ON X-05
INDEXED BY X-IND-05.
Back to top
View user's profile Send private message
expat

Global Moderator


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

PostPosted: Fri Nov 27, 2009 2:56 pm
Reply with quote

Have you searched the forum / manuals for reading values from PARM.
Once you have read the value you can use it however you want.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Fri Nov 27, 2009 6:45 pm
Reply with quote

you can even redefine the parm value as a COBOL Internal table in linkage section.

but, maybe that is too much information.
Back to top
View user's profile Send private message
priyanka.msharma
Warnings : 1

New User


Joined: 28 Jan 2009
Posts: 12
Location: India

PostPosted: Mon Nov 30, 2009 11:53 am
Reply with quote

02 X-TAB-05 OCCURS 1 TO PARM1-REC TIMES
DEPENDING ON X-05
INDEXED BY X-IND-05.

question is..can I use PARM1-REC in occurs clause??
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Mon Nov 30, 2009 12:43 pm
Reply with quote

well maximum size of PARM can only be 100.

and did you check the syntax of the occurs clause?
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Mon Nov 30, 2009 5:31 pm
Reply with quote

Quote:
question is..can I use PARM1-REC in occurs clause??
Did you check the manual (link at the top of the page)? The COBOL Language Reference clearly states that OCCURS integer-1 TO integer-2 TIMES is the syntax. I'm sure if you search enough you will discover that COBOL means integer numbers only when it says integer-2 -- NOT VARIABLES. Per the manual, I believe the answer to your question is no, you cannot use PARM1-REC in the OCCURS clause.
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 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 Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
No new posts Generate random number from range of ... COBOL Programming 3
Search our Forums:

Back to Top