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


Please Help Members By Posting Answers For Below Questions

What is the default value(s) for an initialize? What keyword will allow for an override of the default?

863


How do you define a variable of comp-1 and comp-2?

914


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?

1410


How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that

2959


How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?

859


Write a program to explain size error.

884


How do you reference the fixed block file formats from cobol programs

913


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?

1077


What is the difference between comp and comp-3 usage?

867


How do we get current date from system with century in COBOL?

1063


How are the next sentence and continue different from each other?

1011


How you can read the file from bottom?

873


Write a program that uses move corresponding.

869


Difference between cobol and cobol-ii?

945


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?

7298