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
mention the option used in the cics read command to gain accessibility directly to the file i/o area. (Assume cobol-ii).?
Can you explain enq and deq used in cics?
difference between tsq and tdq?
Explain ceci transaction commands?
how can you prevent more than one user from accessing the same transient data queue?
Can you define cics task?
explain the means of supporting pseudo conversation programming. (Eg. Storing and restoring of states, control flow, error handling)?
What is commarea (communications area)?
What are the recoverable cics resources?
Define communication area?
Can QSAM files be accessed from CICS?
Explain the different ways of initiating transaction in cics?
Explain the difference between start and xctl?
what is the difference between a return with transid and xctl? For example program. A is issuing return with transid to program b. Program a. Is isssuing xctl to program b?
which cics service transaction is used to gain accessibility to cics control tables? Mention the one that has the highest priority.?