I have a cobol program with a sub program. How ca i find that
it is a dynamic call? or static call..?
Answer Posted / adarsh
in addition to above answers, we can find by seeing compiler
option.if copt=dynam it is dynamic call,default is nodynam
i.e static call.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
How to use the same COBOL program in Batch and CICS on lines? explain with an example
What is the LINKAGE SECTION used in COBOL?
how do you reference the ksds vsam file formats from cobol programs
How arrays can be defined in COBOL?
What is amode(24)?
Our issue is there seems to be a disconnect, or no link, between our SELECT statement and our SD. We had SELECT SORT-FILE and SELECT SORT-FILE ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1 SORTWRK2 SORTWRK3 SORTWRK4. with SD SORT_FILE RECORD CONTAINS 7833 CHARACTERS. In either case, at run time, the system ignored our SORTWRK# DD statements and allocated 16 sort works with the SORTWK## naming convention. Any ideas why the system does not recognize the connection? We do not even need the SORTWRK DD statements. Thanks
how to convert the recors form vsam file to db2 table tru file aid
Name the divisions, which are available in a cobol program?
What is report-item in COBOL?
What is rmode(any) ?
how do you reference the rrds file formats from cobol programs
What are the different open modes available in cobol?
Why occurs cannot be used in 01 level in COBOL?
Can a Search can be done on a table with or without Index?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.