how we separate the cobol cics statements from cobol&cics
programming?
Answer / vinay sonar
CICS statements starts with
EXEC CICS
and end with
END-EXEC.
| Is This Answer Correct ? | 3 Yes | 1 No |
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
Without using move verb how to move one variable to another.
Have you code any new programs in COBOL ? What is the functionality of the programs?
can we use go to statement inline-perform?
How do you reference the fixed block file formats from cobol programs
How many maximum number of procedures can we write in one COBOL program?
What is the difference between PIC 9.99 and 9v99?
what r the types of perform statement
At the minimum, which division of COBOL is enough to be coded?
In COBOL CALL-CALLING,if a program A is calling 3 sub- programs, dynamically, then it is said sub-programs will always will always in Initial Mode. My question is : Do we need to code CANCEL or (IS INITIAL) for dynamically called sub-programs or it is the property of Dynamically called pgms so every time sub-pgms are called they will be in initial mode. ***This question is only Dynamic call****, Please reply. Thank you in advance.
how do you move only numeric data from A to B 01 A pic x(10) value 'a1b2c34d5e'. 01 B pic x(5).
With in these three which one is the default one Call Reference, Call By Value, Call By Content.-Which one is default?