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

changing the Copybook name at RUN TIME???


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

New User


Joined: 08 May 2007
Posts: 26
Location: hyderabad

PostPosted: Wed Jul 09, 2008 2:38 am
Reply with quote

01 WS-COPYBOOK X(8).

01 BATCH-COPY C1234567.
01 ONLIN-COPY C1234567.

In my procedure division I'm using following statements.
IF Batch
MOVE 'BATCH-COPY' to WS-COPYBOOK
ELSE
MOVE 'ONLIN-COPY' to WS-COPYBOOK.

DISPLAY "NAME : " NAME of WS-COPYBOOK.

Will the display statement will work (RUN TIME) for BATCH-COPY and ONLIN-COPY copybooks?
Do we need to change any compiler options to work this one?
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Jul 09, 2008 2:54 am
Reply with quote

Hello,

If i understand what you are trying to do, no you cannot do it. . .

COPY expands copied source during the compile of a program, not the execution.

If you explain just what you want to accomplish and include an example, someone may have a suggestion.

If i misunderstand, please clarify.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Wed Jul 09, 2008 11:13 am
Reply with quote

you can start by explaining what this is:

01 BATCH-COPY C1234567.
01 ONLIN-COPY C1234567.

not a valid syntax for anything.
Back to top
View user's profile Send private message
Laxminarsimharao

New User


Joined: 08 May 2007
Posts: 26
Location: hyderabad

PostPosted: Thu Jul 10, 2008 4:54 am
Reply with quote

Dick Brenholtz, this is typo error.

Original Code will be

01 BATCH-COPY.
COPY C1234567.

01 ONLIN-COPY.
COPY C1234567.

But i got the answer, thanks "d.sch.".
Back to top
View user's profile Send private message
Suresh Ponnusamy

Active User


Joined: 22 Feb 2008
Posts: 107
Location: New York

PostPosted: Thu Jul 10, 2008 9:13 pm
Reply with quote

In my procedure division I'm using following statements.
IF Batch
MOVE 'BATCH-COPY' to WS-COPYBOOK
ELSE
MOVE 'ONLIN-COPY' to WS-COPYBOOK.

You are just moving a name to a variable. It is just a plain move. This will not move the copy book values.

Let us know whether you want to move the name of the copybook or Copy book values.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Thu Jul 10, 2008 10:00 pm
Reply with quote

Hello,

Quote:
But i got the answer, thanks "d.sch.".
You're welcome icon_smile.gif

Is there any outstanding question or do you have what you need now?
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 To get the the current time DFSORT/ICETOOL 13
No new posts RC query -Time column CA Products 3
No new posts C Compile time time stamps Java & MQSeries 10
No new posts Parallelization in CICS to reduce res... CICS 4
No new posts changing defaults in db2 admin - Unlo... DB2 0
Search our Forums:

Back to Top