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 |
What is the primary objective of CICS ?
How do you access the records randomly in TSQ ?
What are the 3 working storage fields used for every field on the map?
Can you explain common systems area?
Can you define bms?
Name the 3 common ways to create maps?
What is the tcp in the cisc?
What is an AICA abend?
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?
whar is the difference bwn LINK() and XCTL()?
7 Answers Cap Gemini, CGI, IBM,
Explain the exact situation, when to use CALL, XCTL and LINK?
What are the common cics service programs and explain their usage?