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

How can I compile or run a cobol program


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

New User


Joined: 31 Mar 2005
Posts: 24

PostPosted: Wed Jun 08, 2005 12:43 pm
Reply with quote

Can any body tell me how can I compile or run a cobol program?
Back to top
View user's profile Send private message
Deepa.m

New User


Joined: 28 Apr 2005
Posts: 99

PostPosted: Thu Jun 09, 2005 5:45 pm
Reply with quote

you have to write JCLs compile jcl and runjcl..
you can find the sample jcls from: jcls.ibmmainframes.com
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Wed Jun 15, 2005 8:39 pm
Reply with quote

In most shops I've seen, COBOL programs are complied and link-edited in the foreground using an in-house written CLIST or EXEC, such as COB or COBOL or TCOB. Most of these utilities also ask if you wish to execute the program once it has been compiled, and provide an area where you can define your input/output DD and filename/sysout requirements.
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Wed Jun 15, 2005 8:41 pm
Reply with quote

In most shops I've seen, COBOL programs are complied and link-edited in the foreground using an in-house written CLIST or EXEC, such as COB or COBOL or TCOB. Most of these utilities also ask if you wish to execute the program once it has been compiled, and provide an area where you can define your input/output DD and filename/sysout requirements.
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Wed Jun 15, 2005 8:56 pm
Reply with quote

If the program has already been compiled, you can easily run the program in your TSO session by:

- allocating all the necessary DD's with TSO ALLOC commands:
Code:

TSO ALLOC DD(SYSIN) NEW REU RECFM(F B) LRECL(80)
TSO ALLOC DD(SYSOUT) DA(*) REU


- executing the program using the TSO CALL command:
Code:

TSO CALL 'the.loadlib(theprog)' 'parms'
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 Compile Several JCL JOB Through one r... CLIST & REXX 4
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
Search our Forums:

Back to Top