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

cobol db2 progarm passing parm parameter


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
mahi

New User


Joined: 04 Apr 2006
Posts: 86
Location: Hyderabad

PostPosted: Wed Aug 06, 2008 3:30 pm
Reply with quote

Code:

//A12345  EXEC  PGM=IKJEFT1A,                       
//            DYNAMNBR=30,                           
//STEPLIB  DD DSN=DB2B.REF.LDCLOAD,                 
//            DISP=SHR                               
//         DD DSN=DB26.REF.LDCEXIT,                 
//            DISP=SHR                               
//         DD DSN=SYS2.LDCS.PRODLOAD,                 
//            DISP=SHR                               
//SYSTSPRT DD SYSOUT=*                               
//SYSTSIN  DD DSN=SYS2.OPER.PARMLIB(A12345P),       
//            DISP=SHR     
//PRODPARM DD DSN=SYS2.OPER.PARMLIB(A12345S),
//            DISP=SHR                         
//DISK     DD DSN=P.A12345.LDCS01.C&DATE01.01,   
//            DISP=SHR                               
//SYSOUT   DD SYSOUT=* 


Here I'm executing the cobol-db2 program which is in parm parameter a12345p.

From PRODPARM I am supplying some data to the cobol-db2 progarm. So how can I capture the PRODPARM values in the cobol-db2 program. I need to have this variables in an internal cobol table.
Structure of A12345S:
LDC ID 4 byttes
LDC OPT CLSS 2
OPT ID 4
eX: LDC1 NA 0000
LDC2 NA 9999
LDC3 EX 0000
Back to top
View user's profile Send private message
rpuhlman

New User


Joined: 11 Jun 2007
Posts: 80
Location: Columbus, Ohio

PostPosted: Wed Aug 06, 2008 7:18 pm
Reply with quote

Mahi,

You would treat PRODPARM as any other input file in your program. Assuming (yuk) PRODPARM is the name of the file in your SELECT statement in FILE-CONTROL you would OPEN INPUT PRODPARM , READ PRODPARM, Move your variables, CLOSE PRODPARM ... Simplistic example, but you should get the idea.

Rick
Back to top
View user's profile Send private message
mahi

New User


Joined: 04 Apr 2006
Posts: 86
Location: Hyderabad

PostPosted: Wed Aug 06, 2008 8:15 pm
Reply with quote

Thanx rick..
Can we open the PRODPARM as any other file??IF that is the case my problem will be solved...
Am asking again just for confirmation...
Back to top
View user's profile Send private message
rpuhlman

New User


Joined: 11 Jun 2007
Posts: 80
Location: Columbus, Ohio

PostPosted: Wed Aug 06, 2008 9:37 pm
Reply with quote

Hi Mahi,

Yes.

Rick
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 -> DB2

 


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