Why doesn?t CICS use the Cobol Open and Close statements ?
Answers were Sorted based on User's Feedback
Answer / yogendra shinde
CICS doesn't handle file the way COBOL does.
CICS doesn't have any FILE SECTION like COBOL.
File handling part is done separately.
A programmer has to declare file to be used in FCT table and
OPEN or CLOSE file exclusively by giving OPEN <FILE NAME>
command at CICS login before running the CICS application
pgm
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / bobby
CICS files should not be defined in CICS programs using SELECT and FD clauses. Also, OPEN and CLOSE statements need not be given inside the program.
Files can be opened and closed using the CICS command
CEMT I FILE and then issuing an 'o'pen or a 'c'lose.
Files can be defined in CICS by CEDA command.
| Is This Answer Correct ? | 1 Yes | 0 No |
How To Retrive The VSAM Datasets in CICS application programs?
In a CICS program, how will you read a VSAM file?
In case if the user inputs the characters which turn out to be uppercase, then what is the procedure to close that condition?
<CICSFault xmlns="http://www.ibm.com/software/htp/cics/WSFault">DFHPI10 08 05/13/2009 05:47:14 FSCIBM SOAP message generation failed because of incorrect input (INPUT_STRUCTURE_TOO_SMALL ).</CICSFault> Can anyone suggest how to handle this type of error?
Explain the difference between and exec cics xctl and exec cics start command?
how do you execute a background cics txn ?
Add a field to screen when what's the flow of impact?
What is ATI? What kind of TDQ can be used?
What is fset?
Can you explain dfhmdf bms macro?
What are the two ways of breaking a CPU bound process to allow other tasks to gain access to CPU.
What is the different ways to initiate a task?