What are the differences between and EXEC CICS XCTL and an
EXEC CICS START command?
Answer Posted / 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 |
Post New Answer View All Answers
Explain the difference between a symbolic map and physical map?
What is the primary aspect of CICS?
What are the recoverable cics resources?
What are fset, frset?
what are the six different type of argument values in cobol that can be placed in various options of a cics command?
Name at least one of the ways by which a transaction can be terminated?
Let us say you have a collection of multiple maps in cics. So if you are asked to determine the exact storage space that is available in a symbolicmap, then how will you compute it?
What are some of the cics commands associated with interval control?
Explain how do you set the mdt option to on status, even if data is not entered?
Can dynamic calls be used in CICS?
What is meant by MDT? Furthermore, comment on FRSET and FSET ?
What is interval control?
What is fset?
Name the three ways available for a program to position the cursor on the screen?
Explain the difference between the into and the set option in the exec cics receive map command?