what is the coding difference between COBOL and CICS.
Answer Posted / raju
GIRISH I THINK THE QUESTION WOULD BE ...
WHAT IS THE CODING DIFFERENCE BETWEEN NORMAL COBOL PROGRAM
AND CICS-COBOL PROGRAM ?
IF YES,
ANS)
1. IN BATCH (NORMAL COBOL) WE DECLARE THE FILES IN
ENVIRONMENT DIVISION WHERE AS IN ONLINE (CICS-COBOL) FCT
WILL BE USED.
2.IN BATCH WE USE ACCEPT & DISPLAY stmts ,in cics we use
SEND/RECEIVE commands.
3.in batch we use GO BACK,EXIT and STOP RUN, IN CICS RETURN
COMMAND TO INDICATE END OF THE PROGRAM.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is amode(24)?
Differentiate between structured cobol programming and object-oriented cobol programming.
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
What is a report item?
how to move the records from file to array table. give with code example
In COBOL programming, what is PERFORM? What is VARYING?
Difference between array and sub-script ?
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
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.
Can we redefine the field of x(200) to less than 200?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
What is a scope terminator give example?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)