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 and exec cics xctl and an exec cics link command?
Name the command which is used to release a record on which exclusive control is gained?
Name some translator and compile options and explain their meaning?
Define RCT.
What is program reentrance?
What is the meaning of the eibaid field?
What will happen if some program tries to process a queue on which an ENQ command has been issued by some other program?
Particular area has been affected in cics screen, what is the process to find?
when you compile a cics program, the (pre) compiler puts an extra chunk of code. Where does it get included and that is it called? What is its length?
Explain the difference between cics program control table (pct) and cics processing program table (ppt)?
what is the most common way of building queue-id of a tsq?
what is the differences between getting the system time with eibtime and asktime command?
define the field with ic in the bms map.
Explain the difference between a physical bms mapset and a logical bms mapset?
In a particular cics program, what is the procedure to allocate dynamic memory?