INQUIRE TRANSACTION
| COBOL |
Java |
| EXEC CICS INQUIRE TRANSACTION |
ibmCics.inquireTransaction |
Syntax
ibmCics.inquireTransaction(new InquireTransactionOptions()
.transaction(<Transaction>)
[.program(<Program>)]
[.remoteSystem(<RemoteSystem>)]
[.brexit(<Brexit>)]
[.cmdSec(<CmdSec>)]
[.dtimeout(<Dtimeout>)]
[.dumping(<Dumping>)]
[.facilityLike(<FacilityLike>)]
[.indoubt(<Indoubt>)]
[.indoubtMins(<IndoubtMins>)]
[.indoubtWait(<IndoubtWait>)]
[.isolateSt(<IsolateSt>)]
[.otsTimeout(<OtsTimeout>)]
[.priority(<Priority>)]
[.profile(<Profile>)]
[.purgeability(<Purgeability>)]
[.remoteName(<RemoteName>)]
[.resSec(<ResSec>)]
[.routing(<Routing>)]
[.routeStatus(<RouteStatus>)]
[.rtimeout(<Rtimeout>)]
[.runaway(<Runaway>)]
[.runawayType(<RunawayType>)]
[.scrnSize(<ScrnSize>)]
[.shutdown(<Shutdown>)]
[.status(<Status>)]
[.storageClear(<StorageClear>)]
[.taskDataKey(<TaskDataKey>)]
[.taskDataLoc(<TaskDataLoc>)]
[.tracing(<Tracing>)]
[.tranClass(<TranClass>)]
[.trProf(<TrProf>)]
[.twaSize(<TwaSize>)]
[.noHandle(true)]
);
Parameters
- <Transaction>
- The transaction definition.
- <Program>
- The program name initiated by the transaction.
- <RemoteSystem>
- The remote system name where the transaction is defines, returns an empty string if the transaction isn't remote.
- <Brexit>
- Not currently used in AMT.
- <CmdSec>
- Not currently used in AMT.
- <Dtimeout>
- Not currently used in AMT.
- <Dumping>
- Not currently used in AMT.
- <FacilityLike>
- Not currently used in AMT.
- <Indoubt>
- Not currently used in AMT.
- <IndoubtMins>
- Not currently used in AMT.
- <IndoubtWait>
- Not currently used in AMT.
- <IsolateSt>
- Not currently used in AMT.
- <OtsTimeout>
- Not currently used in AMT.
- <Priority>
- Not currently used in AMT.
- <Profile>
- Not currently used in AMT.
- <Purgeability>
- Not currently used in AMT.
- <RemoteName>
- Not currently used in AMT.
- <ResSec>
- Not currently used in AMT.
- <Routing>
- Not currently used in AMT.
- <RouteStatus>
- Not currently used in AMT.
- <Rtimeout>
- Not currently used in AMT.
- <Runaway>
- Not currently used in AMT.
- <RunawayType>
- Not currently used in AMT.
- <ScrnSize>
- Not currently used in AMT.
- <Shutdown>
- Not currently used in AMT.
- <Status>
- Not currently used in AMT.
- <StorageClear>
- Not currently used in AMT.
- <TaskDataKey>
- Not currently used in AMT.
- <TaskDataLoc>
- Not currently used in AMT.
- <Tracing>
- Not currently used in AMT.
- <TranClass>
- Not currently used in AMT.
- <TrProf>
- Not currently used in AMT.
- <TwaSize>
- Not currently used in AMT.
- noHandle
- Optional Boolean. If set to true, exceptions created by this command will be ignored.
Examples
| COBOL |
Java |
EXEC CICS
INQUIRE TRANSACTION (WS-TRANSACTION)
PROGRAM (WS-PROGRAM)
REMOTESYSTEM (WS-REMOTESYS)
END-EXEC.
|
ibmCics.inquireTransaction(new InquireTransactionOptions()
.transaction(locDef.ws_Transaction)
.program(locDef.ws_Program)
.remoteSystem(locDef.ws_Remotesys)
);
|