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 effect on RECEIVE MAP when PF key is pressed? PA key is pressed?
I have the transaction name for cics screen.. With the transaction name, how will I find the cics program written for the transaction and BMS map program also...
What is an AICA abend?
Can you define multiple maps in a BMS mapset?
If you use the OPTIMIZE compiler option the size of the program can be reduced by 5 to 10%(True or False)
if i have 3 fields and i declare IC for all of them .. Then where will the cursor after sending map? pls give explanation (it will be so kind)
Explain the difference between the xctl and link commands?
Is length = 0 sufficient to ascertain that the field has been modified?
What is the difference between START and XCTL? How do you determine when to use either option?
What CICS command would you use to read a VSAM KSDS sequentially in ascending order?
what is eib, how is can be used?
For protecting a transaction using the transaction security function, the two things that must be done are?