What are the differences between and EXEC CICS XCTL and an
EXEC CICS START command?
Answer / guest
->BY EXEC CICS XCTL is used to pass control from one
application program to another apllication program at the
same logical level. the calling(XCTLing ) program does not
expect control to be returned.
EXEC CICS XCTL
PROGRAM(program-name)
COMMAREA(ws-commarea)
LENGTH(ws-len)
END-EXEC.
->the START command is used to start a transaction at the
specified terminal and at d specified time or
interval.optionally , data can be passed to d to-be-
initiated transaction.
EXEC CICS START
INTERVAL(001500)
TRANSID('SGS')
TERMID('GDHD')
FROM(DATAFLD)
LENGTH(100)
RTRANSID(EIBTRNID)
RTERMID(EIBTRMID)
QUEUE(QNAME)
END-EXEC.
A special appliaction of the START command is the scheduled
transaction initiation ( STI ) , by which certain CICS
tranaction can be initiated automatically at d scheduled
time or interval.
| Is This Answer Correct ? | 8 Yes | 1 No |
Name the three ways available for a program to position the cursor on the screen?
What is the effect of including the TRANSID in the EXEC CICS RETURN command?
<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?
What will happen if the TDQ that you want to delete is not in the DCT?
when an xctl is done, does the tranid change ? Is a new task created ? Does it cause an implicit syncpoint to be issued ?
What is the option specified in the read operation to gain multiple concurrent operations on the same dataset?
What is the difference between a Symbolic map and Physical map ?
How to establish dynamic cursor position on a map?
Explain the difference between physical map and symbolic map?
How would you resolve an ASRA abend?
Mention one alternative aspect of CICS?
Can a CICS code be a part of a copybook? If so, then what are the outcomes after compilation?