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

How to pass parameter from Job to Cobol Program and to use


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

Active User


Joined: 01 Feb 2007
Posts: 123
Location: Hyderabad

PostPosted: Sat Jun 30, 2007 6:14 pm
Reply with quote

Hi,

I had a step in my proc as follows
//STEP010 EXEC PGM=IKJEFT1B,
// PARM=('%DB2BATCH','SYS(&SSID)','PROG(&PROG)','PLAN(&PLAN)','PARM(&SS)')

First thing is can i pass '&SS' like this to my &PROG(Program).
Here i had a PARM inside another PARM.
If this is not correct then how can i pass the value &SS to my cobol program.
And how can i use this variable in my cobol program from linkage section.
Can anyone tell me the syntax how to do this.

Regards,
Bhaskar.
Back to top
View user's profile Send private message
Snib

New User


Joined: 23 Apr 2007
Posts: 1
Location: Dartford, UK

PostPosted: Sat Jun 30, 2007 8:30 pm
Reply with quote

I think that format is OK for the PARM option. What you should try is coding the linkage section as follows:

LINKAGE SECTION.

01 DFHCOMMAREA.

03 PARM-INPUT.

05 PARM-LEN PIC S9(4) COMP.

05 PARM-DATA PIC X(256).

Then PARM-DATA will contain the information passed in the PARM command from the JCL.

Regards

Snib
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 Using API Gateway from CICS program CICS 0
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
Search our Forums:

Back to Top