what happens when a copybook variables are declared using
include statement ?
Answer Posted / shaan
Include is a precomplier statement and so the variables
would be expanded during precompilation time rather than at
compilation time.
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
What is the default value(s) for an initialize and what keyword allows for an override of the default?
How you can characterize tables in cobol?
Can a Search can be done on a table with or without Index?
What are all the divisions of a COBOL program?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
Why occurs cannot be used in 01 level in COBOL?
What is cobol?
what is the difference between COBOL2 AND COBOL390?
What are the pertinent COBOL
Can you please let me know the centre name of INS certification in Kolkata.
What is amode(31)
What is the utilization of copybook in cobol?
how do you reference the ksds vsam file formats from cobol programs
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?