What is CECI?
Answers were Sorted based on User's Feedback
Answer / ruhi
CECI is used to execute single CICS commands, like
CECI SEND MAP(map_name) MAPSET(mapset-name).
| Is This Answer Correct ? | 17 Yes | 0 No |
Answer / maxcc0
Command Level Interpreter(CECI) is CICS supplied transaction
which performs syntax checking of a CICS command. if the
syntax is satisfied, it will actually execute the command.
this may be useful for interactive patching into the
application system.
ex. CECI READ DATASET('fileaa')
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / mahesh
C- CICS Supplied Transaction
E-Emhanced
CI-Command Level Interpreter
| Is This Answer Correct ? | 5 Yes | 5 No |
ceci is used to send map
command is ceci send map(mapname ) mapset(mapsetname )
thanks for giving ths time
krishna
| Is This Answer Correct ? | 0 Yes | 1 No |
What is meant by MDT? Furthermore, comment on FRSET and FSET ?
Can you explain cics translator?
What is the meaning of the eibaid field?
List out all the tables that are a part of cics ?
How is dynamic memory allocated within a CICS application program?
How do find length of the cursor in cics map ?
Specify the CICS command used to read a VSAM record starting with prefix ?F?. Code all the relevant options.
The READ command with INTO option will read the record specified into the data area specified (True or False)
Explain cemt transaction commands?
I just want to ask why does the variable I passed in a dclgen of sql that has a data type of varchar which has a maximum length is 250 is truncated,, Here is the code.. DCLGEN of rsauud01 table 01 dataarea 43 data-area-len pic s9(4). 43 data-area-text pic x(250). MYVARIABLE. 01 DATAAREA1 pic x(250). move 250 to data-area-len of dataarea of rsauud01 MOVE DATA-AREA1 TO data-area-text of dataarea of rsauud01 --- but it is always trucated everytime I insert it in the table by the way it is a cobol-cics program
How is addressability achieved to the data outside programs working-storage.?
Explain how pa key is different from pf key?