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
What is mainframe cics?
Explain the difference between pseudo-conversational and conversational?
What is the kcp in the cics?
which is the cics control program that provides communication services between user written application programs and terminals?
if i am having a cics,vsam and db2 programs with each functions and i want that each function on screen?
In the EIB block of CICS, highlight the names of few of the important fields?
what are transient data sets defined to cics?
Can you define ppt and what are its uses?
What is meant by an AICA ABEND?
Explain cebr transaction commands?
Name the two types of transient data queues?
Db2 what is the difference between a package and a plan. How does one bind 2 versions of a cics transaction with the same module name in two different cicsregions that share the same db2 subsystem?
What is the use of mdt (modified data tag)?
What will happen if some program tries to process a queue on which an ENQ command has been issued by some other program?
Explain the difference between dfhcommarea and tsq?