where do we use dyanamic call ?
and where do we use static call pls give any example pls ?
Answer Posted / bhaskar
dynamic call is noting but link edit of object code done at
the time of excution.
before excution is called as static.
static used at gaving value in value clause
ex.01 a pic 9(2) value 19.
dynamic is accept clause
accepted in pd.
Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
How do you define a variable of comp-1 and comp-2?
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?
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
Write a program to explain size error.
How do you reference the fixed block file formats from cobol programs
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
What is the difference between comp and comp-3 usage?
How do we get current date from system with century in COBOL?
How are the next sentence and continue different from each other?
How you can read the file from bottom?
Write a program that uses move corresponding.
Difference between cobol and cobol-ii?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?