what is the coding difference between COBOL and CICS.
Answers were Sorted based on User's Feedback
Answer / dinesh
COBOL is programming lang for mainframe. CICS is front end tool
Is This Answer Correct ? | 24 Yes | 1 No |
Answer / karim
COBOL is programing language and cics is front end tool use
to create online process
Is This Answer Correct ? | 15 Yes | 0 No |
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 |
Answer / sriharichallagundla
COBOL is programming lang for mainframe. CICS is front end tool
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / girish kumar
Im calling sub-program but sub-program is not available what will happen.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nag(igate)
i am few answers to Raju's answers....
1. The CICS commands should be coded in keyword-delimiter
i.e EXEC CICS ......END-EXEC. and the cobol not neccesary
to use keyword.
2. The Environment division is optional in CICS , while it
is mandatory in COBOl for decalring files
3. In CICS , we can test whether it is executed the program
first time or not. But in cobo, we cannot test it.
and they are many more.................
Is This Answer Correct ? | 0 Yes | 0 No |
Hi all
cobol is a high Level language . we can also call it as
programming lang .
CICS is a Language which is used to Develop the Screens .
its just like Scripting lang .
Ex : HTML
Its a lang which deals with assembler level Macros like
DFhmdf,dfhmdi,dfhmsd , dfhpct ........
Cics is a core for mainframes
Is This Answer Correct ? | 1 Yes | 1 No |
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?
What is the difference between a subscript and an index in a table definition?
where do we use dyanamic call ? and where do we use static call pls give any example pls ?
what is meant by binary search?
wht is the diff b/w if and evaluate stmts ?
What does the initialize statement do ?
can we use variable picture clause as xx.99 in cobol.
What are the divisions in a cobol program? Which one is the mandatory division among them?
I have dataset DS1 which has records say 1 2 3 4 5 ... ... etc And also I have second dataset DS2 whcih has records 1 3 4 5 6 8 .. ... Both the files are sorted and now I want to compare these files and write it into the third files if the records are matching.
Difference between file status codes 02 and 22.... since both are for duplicate key detection.
how do you reference the ksds vsam file formats from cobol programs
how many subpgms we can use in a main pgm ? how do u link sub pgm to main pgm ? how can i use the parameters declared in main pgm to sub pgm ?