Business application manager domain’s specific gate

Table 33 summarizes the business application manager domain’s specific gate. It shows the level-1 trace point IDs of the modules providing the functions for the gate, the functions provided by the gate, and whether or not the functions are available through the exit programming interface (XPI).

Table 33. Business application manager domain’s specific gate
Gate Trace Function XPI
BATT
BA 0160
BA 0161
ADD_REPLACE_PROCSSTYPE
INQUIRE_PROCESSTYPE
START_BROWSE_PROCESSTYPE
GET_NEXT_PROCESSTYPE
END_BROWSE_PROCESSTYPE
SET_PROCESSTYPE
DISCARD_PROCESSTYPE
COMMIT_PROCESSTYPE_TABLE
NO
NO
NO
NO
NO
NO
NO
NO
BAXM
BA 0170
BA 0171
INIT_ACTIVITY_REQUEST
BIND_ACTIVITY_REQUEST
NO
NO
BAPR
BA 0110
BA 0111
ADD_PROCESS
RUN_PROCESS
LINK_PROCESS
ACQUIRE_PROCESS
CANCEL_PROCESS
SUSPEND_PROCESS
RESUME_PROCESS
CHECK_PROCESS
RESET_PROCESS
NO
NO
NO
NO
NO
NO
NO
NO
NO
BAAC
BA 0120
BA 0121
ADD_ACTIVITY
RUN_ACTIVITY
CHECK_ACTIVITY
RETURN_END_ACTIVITY
DELETE_ACTIVITY
SUSPEND_ACTIVITY
RESUME_ACTIVITY
CANCEL_ACTIVITY
LINK_ACTIVITY
ACQUIRE_ACTIVITY
RESET_ACTIVITY
ADD_TIMER_REQUEST
ADD_REATTACH_ACQUIRED
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
BABR
BA 0150
BA 0151
STARTBR_ACTIVITY
GETNEXT_ACTIVITY
ENDBR_ACTIVITY
INQUIRE_ACTIVITY
STARTBR_CONTAINER
GETNEXT_CONTAINER
ENDBR_CONTAINER
INQUIRE_CONTAINER
STARTBR_PROCESS
GETNEXT_PROCESS
ENDBR_PROCESS
INQUIRE_PROCESS
INQUIRE_ACTIVATION
COMMIT_BROWSE
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
BACR
BA 0130
BA 0131
DELETE_CONTAINER
GET_CONTAINER_INTO
GET_CONTAINER_SET
PUT_CONTAINER
GET_CONTAINER_LENGTH
NO
NO
NO
NO
NO
BACM
BA 01B0
BA 01B1
MOVE_CONTAINER
NO
BAGD
BA 0401
BA 0402
INQUIRE_DATA_LENGTH
GET_DATA
DESTROY_TOKEN
ADDRESS_DATA
RELEASE_DATA
NO
NO
NO
NO

BATT gate, ADD_REPLACE_PROCESSTYPE function

The ADD_REPLACE_PROCESSTYPE function of the BATT gate is used to add a new process type definition or replace an existing process type definition. Process types are defined using RDO.

Input parameters

PROCESSTYPE_NAME
is an 8-character name.
FILE_NAME
is an 8-character name of the repository file to be associated with this process type. The file is defined using RDO.
AUDITLOG_NAME
is an 8-character name of the audit log to be associated with this process type. The log is defined using RDO.
AUDITLEVEL
determines the level of auditing to be undertaken for this process type. It can take the values:
OFF|PROCESS|ACTIVITY|FULL
USERRECORDS
indicates whether user audit records are to be written to the log. It can take the values:
YES|NO
CATALOG_PTDEF
indicates whether the definition should be written to the global catalog. It can take the values:
YES|NO
STATUS
indicates whether the process type definition should be installed in a disabled or enabled state. It can take the values:
DISABLED|ENABLED

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is DISASTER. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
NOT_DISABLED
INSUFFICIENT_STORAGE

BATT gate, INQUIRE_PROCESSTYPE function

The INQUIRE_PROCESSTYPE function of the BATT gate is used to return information on the named process type.

Input parameters

PROCESSTYPE_NAME
is the 8-character name of the process type to be inquired upon.

Output parameters

FILE_NAME
is the 8-character name of the repository file associated with this process type.
AUDITLOG_NAME
is an 8-character name of the audit log associated with this process type.
AUDITLEVEL
identifies the level of auditing for this process type. It can take the values:
OFF|PROCESS|ACTIVITY|FULL
USERRECORDS
indicates whether user audit records are to being written to the log. It can take the values:
YES|NO
STATUS
indicates the status of the process type. It can take the values:
DISABLED|ENABLED
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|PURGED|INVALID|DISASTER|KERNERROR
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION ENTRY_NOT_FOUND

BATT gate, START_BROWSE_PROCESSTYPE function

The START_BROWSE_PROCESSTYPE function of the BATT gate is used to initiate a browse of the process types known to this region.

Input parameters

None

Output parameters

BROWSE_TOKEN
is the token used to identify this browse.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED

BATT gate, GET_NEXT_PROCESSTYPE function

The GET_NEXT_PROCESSTYPE function of the BATT gate is used to return the name of the next process type in the browse, identified by the browse token.

Input parameters

BROWSE_TOKEN
is the token returned to the caller on the START_BROWSE_PROCESSTYPE call.

Output parameters

PROCESSTYPE_NAME
the 8-character process type name.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION NO_MORE_DATA_AVAILABLE

BATT gate, END_BROWSE_PROCESSTYPE function

The END_BROWSE_PROCESSTYPE function of the BATT gate is used to end the browse identified by the browse token.

Input parameters

BROWSE_TOKEN
is the token returned to the caller on the START_BROWSE_PROCESSTYPE call.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED

BATT gate, SET_PROCESSTYPE function

The SET_PROCESSTYPE function of the BATT gate is used to alter the named processtype definition.

Input parameters

PROCESSTYPE_NAME
is the 8-character process type name.
FILE_NAME
is an 8-character name of the repository file to be associated with this process type.
AUDITLEVEL
determines the level of auditing to be undertaken for this process type. It can take the values:
OFF|PROCESS|ACTIVITY|FULL
USERRECORDS
indicates whether user audit records are to be written to the log. It can take the values:
YES|NO
STATUS
indicates whether the status of the process type. It can take the values:
DISABLED|ENABLED

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ENTRY_NOT_FOUND
NOT_DISABLED

BATT gate, DISCARD_PROCESSTYPE function

The DISCARD_PROCESSTYPE function of the BATT gate is used to discard the named processtype definition.

Input parameters

PROCESSTYPE_NAME
is the 8-character process type name.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ENTRY_NOT_FOUND
NOT_DISABLED

BATT gate, COMMIT_PROCESSTYPE_TABLE function

The COMMIT_PROCESSTYPE_TABLE function of the BATT gate is used to commit the process type definitions to the global catalog.

Input parameters

TOKEN
is the token identifying the table of process type definitions.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED

BAXM gate, INIT_ACTIVITY_REQUEST function

The INIT_ACTIVITY_REQUEST function of the BAXM gate is used when the transaction requires a 3270 bridge facility, in which case the named bridge exit program is invoked.

Input parameters

REQUEST_BLOCK
a block used to hold the request data.
BRIDGE_EXIT
the 8-character name of the bridge exit program.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED

BAXM gate, BIND_ACTIVITY_REQUEST function

The BIND_ACTIVITY_REQUEST function of the BAXM gate is used to make the current UOW an activation of the activity specified in the activity request. This activation could be used to mark the activity complete abended because the previous activation failed, hence the abend information.

Input parameters

ABEND_CODE
the 4-character abend code.
ABEND_PROG
the 8-character abend program name.
ABEND_MSG
the 6-character abend message number.
REQUEST_BLOCK
a block used to hold the activity request data.

Output parameters

PROGRAM
is the 8-character program name.
RUN_PROGRAM
is used to indicate if a program is to be invoked on the program manager INITIAL_LINK. It can take the values:
YES|NO
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
TIMEOUT
READ_FAILURE

BAPR gate, ADD_PROCESS function

The ADD_PROCESS function of the BAPR gate is used to define a new process in reponse to an EXEC CICS® DEFINE PROCESS call.

Input parameters

PROCESS_NAME
the 36-character process name.
PROCESSTYPE
the 8-character process type.
TRANID
the 4-character transaction id.
PROGRAM
the 8-character program name associated with the root activity.
USERID
the 8-character userid.
CHECK_UNIQUE
a Boolean value indicating whether a check should be made to ensure that the process name is unique within the scope of the process-type.

Output parameters

PROCESS_TOKEN
a token representing this process internally.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
DUPLICATE_PROCESS_NAME
FILE_NOT_AUTH
PROCESS_ALREADY_ACQUIRED
PROCESSTYPE_NOT_ENABLED
PROCESSTYPE_NOT_FOUND
WRITE_FAILED

BAPR gate, RUN_PROCESS function

The RUN_PROCESS function of the BAPR gate is used to execute the acquired process (invoke the root activity), either asynchronously or synchronously i.e. with a context switch.

Input parameters

MODE
can take the values:
SYNC|ASYNC
INPUT_EVENT
the 16-character name of the input event.
FACILITY_TOKEN
the 8-character facility token.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
PROCESS_NOT_FOUND
PROCESSTYPE_NOT_FOUND
PROCESS_SUSPENDED
OTHER_PROCESS_CURRENT
INVALID_EVENT
INVALID_MODE
AUTOINSTALL_FAILED
AUTOINSTALL_INVALID_DATA
AUTOINSTALL_MODEL_NOT_DEF
AUTOINSTALL_URM_FAILED
PROGRAM_NOT_AUTHORISED
PROGRAM_NOT_DEFINED
PROGRAM_NOT_ENABLED
PROGRAM_NOT_LOADABLE
REMOTE_PROGRAM
SECOND_JVM_PROGRAM
RUN_SYNC_ABENDED
RECORD_BUSY
REMOTE_TRAN
TRAN_NOT_AUTH

BAPR gate, LINK_PROCESS function

The LINK_PROCESS function of the BAPR gate is used to invoke the acquired process synchronously, without a context switch.

Input parameters

INPUT_EVENT
the 16-character name of the input event.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
PROCESS_NOT_FOUND
PROCESSTYPE_NOT_FOUND
PROCESS_SUSPENDED
OTHER_PROCESS_CURRENT
INVALID_EVENT
INVALID_MODE
AUTOINSTALL_FAILED
AUTOINSTALL_INVALID_DATA
AUTOINSTALL_MODEL_NOT_DEF
AUTOINSTALL_URM_FAILED
PROGRAM_NOT_AUTHORISED
PROGRAM_NOT_DEFINED
PROGRAM_NOT_ENABLED
PROGRAM_NOT_LOADABLE
REMOTE_PROGRAM
SECOND_JVM_PROGRAM
NO_EVENTS_PROCESSED
PENDING_ACTIVITY_EVENTS

BAPR gate, ACQUIRE_PROCESS function

The ACQUIRE_PROCESS function of the BAPR gate is used to acquire the named process.

Input parameters

PROCESS_NAME
the 36-character process name.
PROCESSTYPE
the 8-character process type.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
PROCESS_NOT_FOUND
PROCESSTYPE_NOT_FOUND
FILE_NOT_AUTH
OTHER_PROCESS_CURRENT
RECORD_BUSY

BAPR gate, CANCEL_PROCESS function

The CANCEL_PROCESS function of the BAPR gate is used to synchronously cancel the acquired process.

Input parameters

None

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
PROCESS_NOT_FOUND
PROCESSTYPE_NOT_FOUND
FILE_NOT_AUTH
RECORD_BUSY

BAPR gate, SUSPEND_PROCESS function

The SUSPEND_PROCESS function of the BAPR gate is used to suspend the acquired process.

Input parameters

None

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
PROCESS_NOT_FOUND
RECORD_BUSY

BAPR gate, RESUME_PROCESS function

The RESUME_PROCESS function of the BAPR gate is used to resume a previously suspended process.

Input parameters

None

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
PROCESS_NOT_FOUND
RECORD_BUSY

BAPR gate, CHECK_PROCESS function

The CHECK_PROCESS function of the BAPR gate is used to establish how the acquired process completed.

Input parameters

None

Output parameters

COMPLETION_STATUS
is the completion status of the process. It can have any of these values:
NORMAL|ABENDED|FORCEDCOMPLETE|INCOMPLETE
ABEND_CODE
the 4-character abend code.
ABEND_PROGRAM
the 8-character name of the program which abended.
SUSPENDED
indicates whether the process is suspended. It can take the value:
YES|NO
ACTMODE
the active mode of the process. It can take the value:
INITIAL|ACTIVE|DORMANT|CANCELLING|COMPLETE
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
PROCESS_NOT_FOUND
RECORD_BUSY

BAPR gate, REST_PROCESS function

The RESET_PROCESS function of the BAPR gate is used to reset the state of the acquired root activity to initial, so it may be run again.

Input parameters

None

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
PROCESS_NOT_FOUND
FILE_NOT_AUTH
PROCESSTYPE_NOT_FOUND
INVALID_MODE
RECORD_BUSY

BAAC gate, ADD_ACTIVITY function

The ADD_ACTIVITY function of the BAAC gate is used to define a new activity in response to an EXEC CICS DEFINE ACTIVITY call.

Input parameters

ACTIVITY_NAME
the 16-character activity name.
COMPLETION_EVENT
the 16-character completion event.
TRANID
the 4-character transaction id.
PROGRAM
the 8-character program name associated with the root activity.
USERID
the 8-character userid.
ACTIVITYID
the buffer containing the activity identifier.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
DUPLICATE_ACTIVITY_NAME
NO_CURRENT_ACTIVITY
UNKNOWN_TRANSACTION_ID
INVALID_NAME

BAAC gate, RUN_ACTIVITY function

The RUN_ACTIVITY function of the BAAC gate is used to execute the named child activity or the acquired activity either asynchronously or synchronously i.e. with a context switch.

Input parameters

ACTIVITY_NAME
the 16-character activity name.
MODE
can take the values:
SYNC|ASYNC
INPUT_EVENT
the 16-character name of the input event.
FACILITY_TOKEN
the 8-character facility token.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
INVALID_EVENT
INVALID_MODE
NO_CURRENT_ACTIVITY
NO_COMPLETION_EVENT
REMOTE_PROGRAM
ACTIVITY_SUSPENDED
RUN_SYNC_ABENDED
READ_FAILURE
RECORD_BUSY
REMOTE_TRAN
TRAN_NOT_AUTH

BAAC gate, LINK_ACTIVITY function

The LINK_PROCESS function of the BAAC gate is used to invoke the named child activity or acquired activity synchronously, without a context switch.

Input parameters

ACTIVITY_NAME
the 16-character name of the activity.
INPUT_EVENT
the 16-character name of the input event.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
NO_CURRENT_ACTIVITY
NO_COMPLETION_EVENT
INVALID_EVENT
INVALID_MODE
AUTOINSTALL_FAILED
AUTOINSTALL_INVALID_DATA
AUTOINSTALL_MODEL_NOT_DEF
AUTOINSTALL_URM_FAILED
PROGRAM_NOT_AUTHORISED
PROGRAM_NOT_DEFINED
PROGRAM_NOT_ENABLED
PROGRAM_NOT_LOADABLE
REMOTE_PROGRAM
SECOND_JVM_PROGRAM
NO_EVENTS_PROCESSED
PENDING_ACTIVITY_EVENTS

BAAC gate, CANCEL_ACTIVITY function

The CANCEL_ACTIVITY function of the BAAC gate is used to synchronously cancel the named child activity or the acquired activity.

Input parameters

ACTIVITY_NAME
the 16-character activity name.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
NO_CURRENT_ACTIVITY
INVALID_MODE
INVALID_ACTIVITYID
FILE_NOT_AUTH
RECORD_BUSY

BAAC gate, SUSPEND_ACTIVITY function

The SUSPEND_ACTIVITY function of the BAAC gate is used to suspend the named child activity or the acquired activity.

Input parameters

ACTIVITY_NAME
the 16-character activity name.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
NO_ACQUIRED_ACTIVITY
INVALID_MODE
READ_FAILURE
RECORD_BUSY

BAAC gate, RESUME_ACTIVITY function

The RESUME_ACTIVITY function of the BAAC gate is used to resume a previously suspended activity.

Input parameters

ACTIVITY_NAME
the 16-character activity name.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
NO_ACQUIRED_ACTIVITY
INVALID_MODE
READ_FAILURE
RECORD_BUSY

BAAC gate, CHECK_ACTIVITY function

The CHECK_ACTIVITY function of the BAAC gate is used to establish how the named child activity or acquired activity completed.

Input parameters

ACTIVITY_NAME
the 16-character activity name.

Output parameters

COMPLETION_STATUS
is the completion status of the activity. It can have any of these values:
NORMAL|ABENDED|FORCEDCOMPLETE|INCOMPLETE
ABEND_CODE
the 4-character abend code.
ABEND_PROGRAM
the 8-character name of the program which abended.
SUSPENDED
indicates whether the process is suspended. It can take the value:
YES|NO
ACTMODE
the active mode of the process. It can take the value:
INITIAL|ACTIVE|DORMANT|CANCELLING|COMPLETE
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
NO_CURRENT_ACTIVITY
READ_FAILURE
RECORD_BUSY

BAAC gate, RESET_ACTIVITY function

The RESET_ACTIVITY function of the BAAC gate is used to reset the state of the named child activity to initial, so it may be run again.

Input parameters

ACTIVITY_NAME
the 16-character activity name.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
NO_CURRENT_ACTIVITY
FILE_NOT_AUTH
INVALID_MODE
READ_FAILURE
RECORD_BUSY

BAAC gate, RETURN_END_ACTIVITY function

The RETURN_END_ACTIVITY function of the BAAC gate is used to indicate the completion of the current activity and so raise the completion event.

Input parameters

None

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION NO_CURRENT_ACTIVITY

BAAC gate, DELETE_ACTIVITY function

The DELETE_ACTIVITY function of the BAAC gate is used to delete the named child activity from the repository.

Input parameters

ACTIVITY_NAME
the 16-character activity name.

Output parameters

ACTMODE
the active mode of the process. It can take the value:
INITIAL|ACTIVE|DORMANT|CANCELLING|COMPLETE
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
NO_CURRENT_ACTIVITY
INVALID_MODE
READ_FAILURE
RECORD_BUSY

BAAC gate, ACQUIRE_ACTIVITY function

The ACQUIRE_ACTIVITY function of the BAAC gate is used to acquire the specified activity.

Input parameters

ACTIVITYID
the buffer for the activity identifier.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
ACTIVITY_ALREADY_ACQUIRED
READ_FAILURE
RECORD_BUSY

BAAC gate, ADD_TIMER_REQUEST function

The ADD_TIMER_REQUEST function of the BAAC gate is used to add a delayed request to BAM domain in response to an EXEC CICS DEfINE TIMER call.

Input parameters

REQUEST_TOKEN
the token representing the request.
TIMER_EVENT
the timer event name.
EVENT_VERSION
the version of the event.
DATETIME
the time at which the timer expires.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION NO_CURRENT_ACTIVITY

BAAC gate, ADD_REATTACH_ACQUIRED function

The ADD_REATTACH_ACQUIRED function of the BAAC gate is used to reattach an activity.

Input parameters

None

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION NO_ACQUIRED_ACTIVITY

BABR gate, STARTBR_ACTIVITY function

The STARTBR_ACTIVITY function of the BABR gate is used to initiate a browse of activities from the specified activity identifier or from the root activity of the specified process.

Input parameters

ACTIVITYID
is a buffer containing the activity identifier.
PROCESS_NAME
is a buffer containing the process name.
PROCESS_TYPE
is the 8-character process type.

Output parameters

BROWSE_TOKEN
is the token identifying the browse.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION or INVALID. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
FILE_NOT_AUTH
NO_CURRENT_ACTIVITY
PROCESS_NOT_FOUND
PROCESSTYPE_NOT_FOUND
RECORD_BUSY
INVALID
INVALID_ACTIVITYID_LEN
INVALID_PROCESSNAME_LEN

BABR gate, GETNEXT_ACTIVITY function

The GETNEXT_ACTIVITY function of the BABR gate is used to return the next activity in the specified browse.

Input parameters

RETURNED_ACTIVITYID
is a buffer containing the activity identifier.
BROWSE_TOKEN
is the browse token.

Output parameters

ACTIVITY_NAME
is the 16-character activity name.
LEVEL
is the level into the activity tree.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION or INVALID. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
BROWSE_END
INVALID_BROWSE_TOKEN
INVALID_BROWSE_TYPE
RECORD_BUSY
INVALID INVALID_BUFFER_LENGTH

BABR gate, ENDBR_ACTIVITY function

The ENDBR_ACTIVITY function of the BABR gate is used to end the specified activity browse.

Input parameters

BROWSE_TOKEN
is the browse token.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
INVALID_BROWSE_TOKEN
INVALID_BROWSE_TYPE

BABR gate, INQUIRE_ACTIVITY function

The INQUIRE_ACTIVITY function of the BABR gate is used to obtain information about the specified activity.

Input parameters

ACTIVITYID
is a buffer containing the identifier of the activity which is to be inquired upon.
RETURNED_ACTIVITYID
is a buffer containing the returned activity identifier.
RETURNED_PROCESS_NAME
is a buffer containing the returned process name.

Output parameters

ABEND_CODE
is the 4-character abend code.
ABEND_PROGRAM
is the 8-character name of the program which abended.
ACTIVITY_NAME
is the 16-character activity name.
COMPLETION_STATUS
is the completion status. It can take the values:
ABENDED|FORCED|INCOMPLETE|NORMAL
EVENT_NAME
is the 16-character event name.
MODE
is the mode of the activity. It can take the values:
INITIAL|ACTIVE|DORMANT|CANCELLING|COMPLETE
PROCESS_TYPE
is the 8-character process type.
PROGRAM
is the 8-character name of the activity program.
TRANSID
is the 4-character transaction identifier.
INIT_TRANSID
is the 4-character transaction identifier of the transaction under which the activity was initiated.
USERID
is the 8-character userid.
SUSPENDED
indicates whether the activity is currently suspended. It can take the values:
YES|NO
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION or INVALID. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
FILE_NOT_AUTH
NO_CURRENT_ACTIVITY
RECORD_BUSY
INVALID
INVALID_ACTIVITYID_LEN
INVALID_BUFFER_LEN

BABR gate, STARTBR_CONTAINER function

The STARTBR_CONTAINER function of the BABR gate is used to initiate a browse of containers associated with a specified activity or process.

Input parameters

ACTIVITYID
is a buffer containing the activity identifier.
PROCESS_NAME
is a buffer containing the process name.
PROCESS_TYPE
is the 8-character process type.

Output parameters

BROWSE_TOKEN
is the token identifying the browse.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION or INVALID. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
FILE_NOT_AUTH
NO_CURRENT_ACTIVITY
PROCESS_NOT_FOUND
PROCESSTYPE_NOT_FOUND
RECORD_BUSY
INVALID
INVALID_ACTIVITYID_LEN
INVALID_PROCESSNAME_LEN

BABR gate, GETNEXT_CONTAINER function

The GETNEXT_CONTAINER function of the BABR gate is used to return the next container in the specified browse.

Input parameters

BROWSE_TOKEN
is the browse token.

Output parameters

CONTAINER_NAME
is the 16-character container name.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
BROWSE_END
INVALID_BROWSE_TOKEN
INVALID_BROWSE_TYPE
RECORD_BUSY

BABR gate, ENDBR_CONTAINER function

The ENDBR_CONTAINER function of the BABR gate is used to end the specified container browse.

Input parameters

BROWSE_TOKEN
is the browse token.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
INVALID_BROWSE_TOKEN
INVALID_BROWSE_TYPE

BABR gate, INQUIRE_CONTAINER function

The INQUIRE_CONTAINER function of the BABR gate is used to obtain information about the specified container.

Input parameters

CONTAINER_NAME
the 16-character container name.
ACTIVITYID
is a buffer containing the activity identifier.
PROCESS_NAME
is a buffer containing the process name.
PROCESS_TYPE
is the 8-character process type.

Output parameters

DATA_LENGTH
is the length of the container data.
DATA_ADDRESS
is the address of the container data.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION or INVALID. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
CONTAINER_NOT_FOUND
PROCESS_NOT_FOUND
PROCESSTYPE_NOT_FOUND
FILE_NOT_AUTH
NO_CURRENT_ACTIVITY
RECORD_BUSY
INVALID
INVALID_ACTIVITYID_LEN
INVALID_PROCESSNAME_LEN

BABR gate, STARTBR_PROCESS function

The STARTBR_PROCESS function of the BABR gate is used to initiate a browse of the processes of a certain type.

Input parameters

PROCESS_TYPE
is the 8-character process type.

Output parameters

BROWSE_TOKEN
is the token identifying the browse.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
FILE_NOT_AUTH
FILE_UNAVAILABLE
NO_CURRENT_ACTIVITY
PROCESSTYPE_NOT_FOUND
RECORD_BUSY

BABR gate, GETNEXT_PROCESS function

The GETNEXT_PROCESS function of the BABR gate is used to return the next process in the specified browse.

Input parameters

BROWSE_TOKEN
is the browse token.
RETURNED_ACTIVITYID
is a buffer containing the activity identifier.
RETURNED_PROCESS_NAME
is a buffer containing the process name.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION or INVALID. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
BROWSE_END
INVALID_BROWSE_TOKEN
INVALID_BROWSE_TYPE
RECORD_BUSY
INVALID INVALID_BUFFER_LENGTH

BABR gate, ENDBR_PROCESS function

The ENDBR_PROCESS function of the BABR gate is used to end the specified process browse.

Input parameters

BROWSE_TOKEN
is the browse token.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
INVALID_BROWSE_TOKEN
INVALID_BROWSE_TYPE

BABR gate, INQUIRE_PROCESS function

The INQUIRE_PROCESS function of the BABR gate is used to obtain information about the specified process.

Input parameters

RETURNED_ACTIVITYID
is a buffer containing the activity identifier.
PROCESS_NAME
is a buffer containing the process name.
PROCESS_TYPE
is the 8-character process type.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION or INVALID. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
PROCESS_NOT_FOUND
PROCESSTYPE_NOT_FOUND
FILE_NOT_AUTH
RECORD_BUSY
INVALID INVALID_BUFFER_LENGTH

BABR gate, INQUIRE_ACTIVATION function

The INQUIRE_ACTIVATION function of the BABR gate is used to obtain information about the activation associated with a running transaction, if there is one.

Input parameters

TRANSACTION_TOKEN
is a token representing an instance of a transaction.
RETURNED_ACTIVITYID
is a buffer containing the activity identifier.
RETURNED_PROCESS_NAME
is a buffer containing the process name.

Output parameters

ACTIVITY_NAME
is the 16-character activity name.
PROCESS_TYPE
is the 8-character process type.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION or INVALID. Possible values are:
RESPONSE Possible REASON values
EXCEPTION ACTIVITY_NOT_FOUND
INVALID INVALID_BUFFER_LENGTH

BABR gate, COMMIT_BROWSE function

The COMMIT_BROWSE function of the BABR gate is used to release any CICS BTS browses associated with this UOW.

Input parameters

CHAIN_HEAD
pointer to the head of the browse chain.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED

BACR gate, DELETE_CONTAINER function

The DELETE_CONTAINER function of the BACR gate is used to delete a named container and its associated data.

Input parameters

CONTAINER_NAME
is the 16-character container name.
ACTIVITY_NAME
is the 16-character activity name.
CONTAINER_SCOPE
identifies the scope of this container. It can the values:
CHILD_ACTIVITY|ACTIVITY|PROCESS|
ACQUIRED_ACTIVITY|ACQUIRED_PROCESS

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
CONTAINER_NOT_FOUND
NO_ACQUIRED_PROCESS
NO_ACQUIRED_ACTIVITY
NO_CURRENT_PROCESS
NO_CURRENT_ACTIVITY
RECORD_BUSY
CONTAINER_READONLY

BACR gate, GET_CONTAINER_INTO function

The GET_CONTAINER_INTO function of the BACR gate is used to place the data in a named container into an area provided by the caller.

Input parameters

CONTAINER_NAME
is the 16-character container name.
ACTIVITY_NAME
is the 16-character activity name.
CONTAINER_SCOPE
identifies the scope of this container. It can have the values:
CHILD_ACTIVITY|ACTIVITY|PROCESS|
ACQUIRED_ACTIVITY|ACQUIRED_PROCESS
ITEM_BUFFER
is the buffer into which the container data is placed.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
CONTAINER_NOT_FOUND
LENGTH_ERROR
NO_ACQUIRED_PROCESS
NO_ACQUIRED_ACTIVITY
NO_CURRENT_ACTIVITY
NO_CURRENT_PROCESS
RECORD_BUSY

BACR gate, GET_CONTAINER_LENGTH function

The GET_CONTAINER_LENGTH function of the BACR gate is used to query the length of application data in a named container.

Input parameters

CONTAINER_NAME
is the 16-character container name.
ACTIVITY_NAME
is the 16-character activity name.
CONTAINER_SCOPE
identifies the scope of this container. It can have the values:
CHILD_ACTIVITY|ACTIVITY|PROCESS|
ACQUIRED_ACTIVITY|ACQUIRED_PROCESS

Output parameters

CONTAINER_LENGTH
is the fullword length of the application data.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
CONTAINER_NOT_FOUND
NO_ACQUIRED_PROCESS
NO_ACQUIRED_ACTIVITY
NO_CURRENT_PROCESS
NO_CURRENT_ACTIVITY

BACR gate, GET_CONTAINER_SET function

The GET_CONTAINER_SET function of the BACR gate is used to place the data in a named container into an area provided by BAM domain and return this area to the caller.

Input parameters

CONTAINER_NAME
is the 16-character container name.
ACTIVITY_NAME
is the 16-character activity name.
CONTAINER_SCOPE
identifies the scope of this container. It can the values:
CHILD_ACTIVITY|ACTIVITY|PROCESS|
ACQUIRED_ACTIVITY|ACQUIRED_PROCESS

Output parameters

ITEM_DATA
a block holding the named container's data.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
CONTAINER_NOT_FOUND
NO_ACQUIRED_PROCESS
NO_ACQUIRED_ACTIVITY
NO_CURRENT_ACTIVITY
NO_CURRENT_PROCESS
RECORD_BUSY

BACR gate, PUT_CONTAINER function

The PUT_CONTAINER function of the BACR gate is used to place data into a named container.

Input parameters

CONTAINER_NAME
is the 16-character container name.
ACTIVITY_NAME
is the 16-character activity name.
CONTAINER_SCOPE
identifies the scope of this container. It can the values:
CHILD_ACTIVITY|ACTIVITY|PROCESS|
ACQUIRED_ACTIVITY|ACQUIRED_PROCESS
ITEM_DATA
a block holding the data to be placed in the named container.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
CONTAINER_NOT_FOUND
LENGTH_ERROR
NO_ACQUIRED_PROCESS
NO_ACQUIRED_ACTIVITY
NO_CURRENT_ACTIVITY
NO_CURRENT_PROCESS
INVALID_CONTAINER_NAME
CONTAINER_READONLY
RECORD_BUSY

BACM gate, MOVE_CONTAINER function

The MOVE_CONTAINER function of the BACM gate is used to move a container between activities. If a container of the same name as the destination container name already exists in the destination activity then it is overwritten. .

Input parameters

CONTAINER_NAME
is the 16-character source container name.
ACTIVITY_NAME
is the 16-character activity name of the activity with which the source container is associated.
CONTAINER_SCOPE
identifies the scope of the source container. It can have the values:
CHILD_ACTIVITY|ACTIVITY|PROCESS|
ACQUIRED_ACTIVITY|ACQUIRED_PROCESS
TO_ACTIVITY
is the 16-character activity name of the activity with which the destination container is associated.
AS_CONTAINER
is the 16-character destination container name.
TO_PROCESS
is a Boolean value indicating if the destination container is to be a process container rather than an activity container.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|DISASTER|KERNERROR|PURGED
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
CONTAINER_NOT_FOUND
NO_ACQUIRED_PROCESS
NO_ACQUIRED_ACTIVITY
NO_CURRENT_PROCESS
NO_CURRENT_ACTIVITY
INVALID_CONTAINER_NAME
CONTAINER_READONLY
RECORD_BUSY

BAGD format, INQUIRE_DATA_LENGTH function

The INQUIRE_DATA_LENGTH function of the BAGD format is used by BAM domain to query the called domain as to the size of the flattened data which is to be included in the activity record.

Input parameters

DATA_TOKEN
a token representing the data.

Output parameters

DATA_LENGTH
the length of the flattened data.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|PURGED|KERNERROR|DISASTER
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION INVALID_TOKEN

BAGD format, DESTROY_TOKEN function

The DESTROY_TOKEN function of the BAGD format is used by BAM domain to tell interested parties (EM domain) to destroy their data token.

Input parameters

DATA_TOKEN
a token representing the data.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|PURGED|KERNERROR|DISASTER
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION INVALID_TOKEN

BAGD format, ADDRESS_DATA function

The ADDRESS_DATA function of the BAGD format is a call made to BAM domain which returns the length of the calling domain's data in the activity record.

Input parameters

ACTIVITYID
a block to hold the activity identifier.
ACQUIRED_ACTIVITY
indicates if this is an acquired activity. It can take the values:
YES|NO

Output parameters

DATA_BLOCK
a block containing the flattened data.
ACTIVITY_TOKEN
a token representing the activity.
RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|PURGED|KERNERROR|DISASTER
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION
ACTIVITY_NOT_FOUND
NO_CURRENT_ACTIVITY
FILE_NOT_AUTH

BAGD format, RELEASE_DATA function

The RELEASE_DATA function of the BAGD format is a call made to BAM domain which releases the calling domain's storage associated with the identified activity.

Input parameters

ACTIVITY_TOKEN
a token representing the activity.

Output parameters

RESPONSE
is the domain’s response to the call. It can have any of these values:
OK|EXCEPTION|INVALID|PURGED|KERNERROR|DISASTER
[REASON]
is returned when RESPONSE is EXCEPTION. Possible values are:
RESPONSE Possible REASON values
EXCEPTION INVALID_TOKEN
[[ Contents Previous Page | Next Page Index ]]