Looking at an CICS module how would one will identify that
it is pseudo or full conversational?
Answers were Sorted based on User's Feedback
Answer / kasyap
If RETURN command with COMMAREA option follows the SEND command immediately then we can say it as a pseudo conversation mode
Is This Answer Correct ? | 18 Yes | 1 No |
Answer / ravi
when we see the program we can say by checking whethere the
EXEC CICS
RETURN TRANSID(TR1)
END-EXEC.
After every send command in CICS.
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / rajesh reddy
After every send command there is a return command wth
TRANSID
EXEC CICS SEND
END-EXEC.
EXEC CICS RETURN
TRANSID('TSK')
END-EXEC.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / lu
when u see in the program there are PFKEY, and EIBCALEN = 0
send map else receive map...it's a pseudo.....
Is This Answer Correct ? | 4 Yes | 9 No |
Answer / smart
Basically all the CICS programs are pseudo conversational.
for this purpose the CICS/COBOL programs are compiled with
RENT,LIB,RESIDENT compiler options.
Is This Answer Correct ? | 2 Yes | 7 No |
Kindly specify the pic clause for the hhmmss type of data fields?
how do you execute a background cics txn ?
COMMIT & ROLLBACK WE WILL NOT USE IN CICS PROGRAMMING INSTEAD OF COMMIT WE USE SYNC POINT THEN WT WE USE FOR ROLL BACK?
What information can be obtained from the EIBRCODE?
Name the cics command used to access current date and time?
Are sequential files supported by CICS?
Can you simply check if length = 0 for checking if a field was modified?
What is MDT? What are FSET, FRSET ?
Define RCT.
How can we initiate a transaction from batch?
What are the CICS commands associated with transient data queue processing?
If DATAONLY option is specified in the SEND MAP command what will happen?