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 |
how do u list the abended jobs?
in the TIME parameter we r giving hours r minutes
What are differences between Static Call and Dynamic Call?
10 Answers IBM, KBC, Keane India Ltd, Verizon,
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
WE HAVE 2 FILES IN COBOL. ONE IS FIXED LENGTH RECORDS ANOTHER ONE IS VARIABLE LENGTH. IF I DECLEAR LRECL OF FIXED ONE AS 80 AND 2ND RECORD AS 132. WHAT WE NEED TO DECLEAR LRECL FOR THOSE 2 FILES IN JCL?
Explain how to differentiate call by context by comparing it to other calls?
what is dynamic array in cobol? what is the difference b/w array and table in cobol?
if a=b how the flow will complete??? perform test through test-exit. perform activa through activa-exit. test. if a=b then next sentence else move a to c. test-exit. exit. activa. -- -- activa-exit. exit.
How do you come out of an EVALUATE statement?
We have 3 programms A,B,C.In the middle of the program A the controls goes to program B and in the middle of the program B control wants to go program C,after completion of program C again control comes to program B and again after completion of program B control comes to program A.How the process will takes and what are the controls we use for that process.If it is possible anybody of you explain with example?
What is report-item in COBOL?
In CICS/VSAM every file that is accessed should be defined in FCT. we have CICS READ, WRITE, BROWSE commands for VSAM files. How does it work with DB2 tables. It know it has to do with the plan. Please expain with examples.