15.1.5 Options
- B
-
Bindicates that the source is an EXCI program. - MQ_wrapper
-
MQ_wrapperhelps you migrate WebSphere MQ programs from mainframe to ART for CICS smoothly. On mainframe, programs explicitly doMQOPENandMQCLOSEwhile mainframe implicitly doesMQCONNandMQDISC. ART for CICS supports this way by enablingMQ_wrapper. ART for CICS can translate WebSphere MQ four APIs (MQCONN/MQOPEN/MQCLOSE/MQDISC) to its internal MQ API wrappers. EnablingMQ_wrapperallows you to- Migrate MQ programs from mainframe to run unchanged (except for a syntactic adaptation)
- Implicitly call
MQCLOSEandMQDISCwhen an application transactionABENDdue toERRORcondition
You must use
-m queue_manager_nameto specify the WebSphere MQ queue manager to be used by ART for CICS implicit MQ operation.If you do not specify
MQ_wrapper, programs need to explicitly do all of the four APIs (MQCONN/MQOPEN/MQCLOSE/MQDISC) to operate MQ. - notrec
-
notrecspecifies the way instructions that are not fully supported are processed. (Some options of the instruction are not recognized, hence the "notrec"). There are two possibilities:- Stop – (default) means that if the instruction contains non-supported options, then the whole instruction is considered as not supported and translation will fail.
- Warn – means that the instruction is processed normally, but the generated call sets up a flag to signal some options may not be supported.
In both cases, a message is displayed on the error output.
- tsam
-
tsamdetermines whether the feature "TSAM call path for CICS and DB" is supported; recognized values are: - type_output
-
type_outputdetermines the way that output is printed; recognized values are:- debug
- Prints every line with its status (untouched, modified, deleted, created). Always outputs at least one line for every line read.
- orig
- Prints every line, deleted lines are printed as comments. Always outputs at least one line for every line read.
- normal (default)
- Prints every line, except deleted ones. Does not always output at least one line for every line read.
Any other value will be considered as "normal".
See Also:
WebSphere MQ Queue Manager NameParent topic: prepro-cics.pl