Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
changing the Copybook name at RUN TIME???

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL
Author Message
Laxminarsimharao

New User


Joined: 08 May 2007
Posts: 26
Location: hyderabad

PostPosted: Wed Jul 09, 2008 2:38 am    Post subject: changing the Copybook name at RUN TIME???
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
References
dick scherrer

Global Moderator


Joined: 23 Nov 2006
Posts: 8653
Location: 221 B Baker St

PostPosted: Wed Jul 09, 2008 2:54 am    Post subject:
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

Senior Member


Joined: 20 Oct 2006
Posts: 1618
Location: germany

PostPosted: Wed Jul 09, 2008 11:13 am    Post subject:
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    Post subject: Reply to: changing the Copybook name at RUN TIME???
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: 92
Location: New York

PostPosted: Thu Jul 10, 2008 9:13 pm    Post subject:
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

Global Moderator


Joined: 23 Nov 2006
Posts: 8653
Location: 221 B Baker St

PostPosted: Thu Jul 10, 2008 10:00 pm    Post subject:
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
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL All times are GMT + 6 Hours
Page 1 of 1