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 the abend command?
Explain the thress bms options?
Explain how many conditions can you include in a single handle condition command?
Explain the difference between intra partition tdq and extra partition tdq?
What is the primary aspect of CICS?
Explain the difference between a symbolic map and physical map?
Explain how would you resolve an asra abend?
Name the command used for terminating a browse operation?
Can you define aica abend?
Code the related portions of cics/cobol-i programs to gain addressability to twa area assigned to a particular task. Assme that the size of twa area is 300bytes. What are the advantages if cobol-ii is used in the place of cobol?
What does a cics translator do?
Explain the difference between a package and a plan.
Can you explain exec cics handle condition command?
Can you explain differences between temporary storage queue (tsq) and transient data queue (tdq)?
what are the differences between and exec cics xctl and an exec cics link command?