Status codes

The CICS® Toolkit functions return status codes, for example, SFS_NO_SUCH_FILE_SYSTEM. Applications should check the status returned by functions and display a message if the status does not indicate success.

Each status code corresponds to a message. The following is a typical example:

ENC-sfs-0300: Operation requires a unique index

A code can be represented in four different forms:

The CICS Toolkit provides the translateError command to translate status codes into their associated messages. The following command example displays the status string, message string, C constant, and hexadecimal number associated with the status string ENC-sfs-0051:

% translateError  ENC-sfs-0051
ENC-sfs-0051: Unknown file system [SFS_NO_SUCH_FILE_SYSTEM] (0x7715a033)

You can pass the translateError command any of the forms of the status code (except the message string), and the command returns the other forms, including the message string, as in the following examples:

% translateError SFS_NO_SUCH_FILE_SYSTEM
SFS_NO_SUCH_FILE_SYSTEM:  ENC-sfs-0051: Unknown file system name. (0x7715a033)
% translateError 0x7715a033
0x7715a033:  ENC-sfs-0051: Unknown file system name. [SFS_NO_SUCH_FILE_SYSTEM]
% translateError ENC-sfs-0051
Unknown file system name. [SFS_NO_SUCH_FILE_SYSTEM] (0x7715a033)
% translateError 1997905971
ENC-sfs-0051: Unknown file system name. [SFS_NO_SUCH_FILE_SYSTEM] (0x7715a033)
Note: The NLSPATH and LANG environment variables must be set for the message string to be displayed in the output.

On Windows systems, you can use individual commands or the WinTrace graphical user interface (GUI) to translate error codes and trace IDs.

ENC-adm-0002
  • Status String: ENC-adm-0002
  • Status Code: ADMIN_SERVER_NOT_IN_ADMIN_MODE
  • Hexadecimal ID: 0x70084002
  • Message: Server not in admin mode
ENC-adm-0003
  • Status String: ENC-adm-0003
  • Status Code: ADMIN_CANNOT_OPEN_TRACE_FILE
  • Hexadecimal ID: 0x70084003
  • Message: Cannot open trace destination
ENC-adm-0004
  • Status String: ENC-adm-0004
  • Status Code: ADMIN_INVALID_COMPONENT
  • Hexadecimal ID: 0x70084004
  • Message: Invalid component
ENC-adm-0005
  • Status String: ENC-adm-0005
  • Status Code: ADMIN_ALREADY_INITIALIZED
  • Hexadecimal ID: 0x70084005
  • Message: Admin function has already been initialized
ENC-adm-0006
  • Status String: ENC-adm-0006
  • Status Code: ADMIN_TRACE_DESTINATION_NOT_INITIALIZED
  • Hexadecimal ID: 0x70084006
  • Message: Trace destination uninitialized
ENC-adm-0007
  • Status String: ENC-adm-0007
  • Status Code: ADMIN_INVALID_PARAMETER
  • Hexadecimal ID: 0x70084007
  • Message: Invalid parameter
ENC-adm-0008
  • Status String: ENC-adm-0008
  • Status Code: ADMIN_NOT_SUPPORTED
  • Hexadecimal ID: 0x70084008
  • Message: Call not supported in this application
ENC-adm-0009
  • Status String: ENC-adm-0009
  • Status Code: ADMIN_OUT_OF_MEMORY
  • Hexadecimal ID: 0x70084009
  • Message: Unable to allocate memory
ENC-adm-0010
  • Status String: ENC-adm-0010
  • Status Code: ADMIN_NO_CALLBACK_REGISTERED
  • Hexadecimal ID: 0x7008400a
  • Message: No such generic callback registered
ENC-adm-0011
  • Status String: ENC-adm-0011
  • Status Code: ADMIN_SERVER_IS_PRIMARY
  • Hexadecimal ID: 0x7008400b
  • Message: Server is already functioning as primary
ENC-alf-0001
  • Status String: ENC-alf-0001
  • Status Code: ALF_VALTYPE_MISMATCH
  • Hexadecimal ID: 0x701bd001
  • Message: Attribute value type mismatch.
ENC-alf-0002
  • Status String: ENC-alf-0002
  • Status Code: ALF_ATTRIBUTE_DOES_NOT_EXIST
  • Hexadecimal ID: 0x701bd002
  • Message: Named attribute does not exist.
ENC-alf-0003
  • Status String: ENC-alf-0003
  • Status Code: ALF_ATTRIBUTE_NOT_A_LIST
  • Hexadecimal ID: 0x701bd003
  • Message: Named attribute is not a list.
ENC-alf-0004
  • Status String: ENC-alf-0004
  • Status Code: ALF_ATTRIBUTE_NOT_A_SET
  • Hexadecimal ID: 0x701bd004
  • Message: Named attribute is not a set.
ENC-alf-0005
  • Status String: ENC-alf-0005
  • Status Code: ALF_INDEX_INVALID
  • Hexadecimal ID: 0x701bd005
  • Message: Index out of range.
ENC-alf-0006
  • Status String: ENC-alf-0006
  • Status Code: ALF_VALUE_NOT_PRESENT
  • Hexadecimal ID: 0x701bd006
  • Message: No element exists with specified value.
ENC-alf-0007
  • Status String: ENC-alf-0007
  • Status Code: ALF_VALUE_ALREADY_PRESENT
  • Hexadecimal ID: 0x701bd007
  • Message: Set already contains an element with specified value.
ENC-are-0001
  • Status String: ENC-are-0001
  • Status Code: AREA_MEMORY_LIMIT
  • Hexadecimal ID: 0x702ac001
  • Message: Out of memory
ENC-are-0002
  • Status String: ENC-are-0002
  • Status Code: AREA_AUTH_FAILURE
  • Hexadecimal ID: 0x702ac002
  • Message: Authorization failure
ENC-are-0003
  • Status String: ENC-are-0003
  • Status Code: AREA_COMMUNICATION_ERROR
  • Hexadecimal ID: 0x702ac003
  • Message: Communication error
ENC-are-0004
  • Status String: ENC-are-0004
  • Status Code: AREA_INVALID_SERVER_NAME
  • Hexadecimal ID: 0x702ac004
  • Message: Invalid server name
ENC-are-0005
  • Status String: ENC-are-0005
  • Status Code: AREA_UNKNOWN_SERVER_NAME
  • Hexadecimal ID: 0x702ac005
  • Message: Unknown server name
ENC-are-0006
  • Status String: ENC-are-0006
  • Status Code: AREA_BINDING_FAILURE
  • Hexadecimal ID: 0x702ac006
  • Message: Binding failure
ENC-are-0007
  • Status String: ENC-are-0007
  • Status Code: AREA_INTERNAL_ERROR
  • Hexadecimal ID: 0x702ac007
  • Message: Internal error
ENC-are-0008
  • Status String: ENC-are-0008
  • Status Code: AREA_UNIMPLEMENTED
  • Hexadecimal ID: 0x702ac008
  • Message: Not implemented
ENC-are-0009
  • Status String: ENC-are-0009
  • Status Code: AREA_INVALID_AREA_ID
  • Hexadecimal ID: 0x702ac009
  • Message: Invalid area ID
ENC-are-0010
  • Status String: ENC-are-0010
  • Status Code: AREA_NO_SUCH_PAGE
  • Hexadecimal ID: 0x702ac00a
  • Message: No such page
ENC-are-0011
  • Status String: ENC-are-0011
  • Status Code: AREA_INVALID_RESTART_KEY
  • Hexadecimal ID: 0x702ac00b
  • Message: Invalid restart key
ENC-are-0012
  • Status String: ENC-are-0012
  • Status Code: AREA_RESTART_KEY_NOT_FOUND
  • Hexadecimal ID: 0x702ac00c
  • Message: Restart key not found
ENC-are-0013
  • Status String: ENC-are-0013
  • Status Code: AREA_INVALID_PAGE_SIZE
  • Hexadecimal ID: 0x702ac00d
  • Message: Invalid page size
ENC-are-0014
  • Status String: ENC-are-0014
  • Status Code: AREA_VOLUME_IO_ERROR
  • Hexadecimal ID: 0x702ac00e
  • Message: Volume IO error
ENC-are-0015
  • Status String: ENC-are-0015
  • Status Code: AREA_INVALID_CALLING_MODE
  • Hexadecimal ID: 0x702ac00f
  • Message: Invalid calling mode
ENC-bde-0001
  • Status String: ENC-bde-0001
  • Status Code: BDE_ALARM_INVALID_TIME
  • Hexadecimal ID: 0x706bc001
  • Message: An invalid alarm time has been specified.
ENC-bde-0002
  • Status String: ENC-bde-0002
  • Status Code: BDE_EXTENT_TOO_SMALL
  • Hexadecimal ID: 0x706bc002
  • Message: The given extent was too small to be useful.
ENC-bde-0003
  • Status String: ENC-bde-0003
  • Status Code: BDE_FAILURE
  • Hexadecimal ID: 0x706bc003
  • Message: General Failure.
ENC-bde-0004
  • Status String: ENC-bde-0004
  • Status Code: BDE_FILE_DOES_NOT_EXIST
  • Hexadecimal ID: 0x706bc004
  • Message: The file does not exist and could not be created.
ENC-bde-0005
  • Status String: ENC-bde-0005
  • Status Code: BDE_FILE_EXISTS
  • Hexadecimal ID: 0x706bc005
  • Message: The modes BDE_FILE_CREATE and BDE_FILE_EXCL were specified but the file already exists.
ENC-bde-0006
  • Status String: ENC-bde-0006
  • Status Code: BDE_FILE_HANDLE_LIMIT
  • Hexadecimal ID: 0x706bc006
  • Message: The limit on the maximum number of open files has been reached.
ENC-bde-0007
  • Status String: ENC-bde-0007
  • Status Code: BDE_HAS_ASYNC_IO
  • Hexadecimal ID: 0x706bc007
  • Message: The platform provides true asynchronous file I/O.
ENC-bde-0008
  • Status String: ENC-bde-0008
  • Status Code: BDE_IN_PROGRESS
  • Hexadecimal ID: 0x706bc008
  • Message: The I/O operation has not yet completed.
ENC-bde-0009
  • Status String: ENC-bde-0009
  • Status Code: BDE_INTERNAL_MEMORY_LIMIT
  • Hexadecimal ID: 0x706bc009
  • Message: There is insufficient internal memory to satisfy the request.
ENC-bde-0010
  • Status String: ENC-bde-0010
  • Status Code: BDE_INVALID_ACCESS
  • Hexadecimal ID: 0x706bc00a
  • Message: The file protection prohibits access to or creation of the file.
ENC-bde-0011
  • Status String: ENC-bde-0011
  • Status Code: BDE_INVALID_ALARM
  • Hexadecimal ID: 0x706bc00b
  • Message: An invalid alarm id (bde_alarm_t) was specified.
ENC-bde-0012
  • Status String: ENC-bde-0012
  • Status Code: BDE_INVALID_ALIGNMENT
  • Hexadecimal ID: 0x706bc00c
  • Message: The given alignment is not an integer power of two.
ENC-bde-0013
  • Status String: ENC-bde-0013
  • Status Code: BDE_INVALID_ARGUMENT
  • Hexadecimal ID: 0x706bc00d
  • Message: One of the given arguments was invalid.
ENC-bde-0014
  • Status String: ENC-bde-0014
  • Status Code: BDE_INVALID_FILE_HANDLE
  • Hexadecimal ID: 0x706bc00e
  • Message: An invalid file handle (bde_file_t) was specified.
ENC-bde-0015
  • Status String: ENC-bde-0015
  • Status Code: BDE_INVALID_HANDLER_TYPE
  • Hexadecimal ID: 0x706bc00f
  • Message: An invalid handler type (bde_handlerType_t) was specified.
ENC-bde-0016
  • Status String: ENC-bde-0016
  • Status Code: BDE_INVALID_OFFSET
  • Hexadecimal ID: 0x706bc010
  • Message: An invalid offset was specified.
ENC-bde-0017
  • Status String: ENC-bde-0017
  • Status Code: BDE_INVALID_OPTION
  • Hexadecimal ID: 0x706bc011
  • Message: An invalid option was specified.
ENC-bde-0018
  • Status String: ENC-bde-0018
  • Status Code: BDE_INVALID_PATH
  • Hexadecimal ID: 0x706bc012
  • Message: The specified file does not exist.
  • Explanation: The specified path is invalid. This usually indicates that the path to a server executable has been incorrectly specified.
ENC-bde-0019
  • Status String: ENC-bde-0019
  • Status Code: BDE_INVALID_PRIORITY
  • Hexadecimal ID: 0x706bc013
  • Message: An invalid priority value was specified.
  • Explanation: The requested priority could not be set when starting a process.
ENC-bde-0020
  • Status String: ENC-bde-0020
  • Status Code: BDE_INVALID_PROC_HANDLE
  • Hexadecimal ID: 0x706bc014
  • Message: An invalid process handle (bde_process_t) was specified.
ENC-bde-0021
  • Status String: ENC-bde-0021
  • Status Code: BDE_INVALID_REQUEST
  • Hexadecimal ID: 0x706bc015
  • Message: The file was not opened in a mode that would permit the attempted operation.
ENC-bde-0022
  • Status String: ENC-bde-0022
  • Status Code: BDE_INVALID_SIGNAL
  • Hexadecimal ID: 0x706bc016
  • Message: The list contains a signal value that is invalid on the current platform.
ENC-bde-0023
  • Status String: ENC-bde-0023
  • Status Code: BDE_INVALID_SIZE
  • Hexadecimal ID: 0x706bc017
  • Message: The specified size was too large.
ENC-bde-0024
  • Status String: ENC-bde-0024
  • Status Code: BDE_INVALID_THREAD
  • Hexadecimal ID: 0x706bc018
  • Message: An invalid thread identifier (bde_thread_t) was specified.
ENC-bde-0025
  • Status String: ENC-bde-0025
  • Status Code: BDE_MEMORY_LIMIT
  • Hexadecimal ID: 0x706bc019
  • Message: There is insufficient memory to satisfy the request.
ENC-bde-0026
  • Status String: ENC-bde-0026
  • Status Code: BDE_NO_ASYNC_IO
  • Hexadecimal ID: 0x706bc01a
  • Message: The platform does not provide true asynchronous file I/O.
ENC-bde-0027
  • Status String: ENC-bde-0027
  • Status Code: BDE_NO_LIMIT_SET
  • Hexadecimal ID: 0x706bc01b
  • Message: No maximum limit has been set for the specified resource.
ENC-bde-0028
  • Status String: ENC-bde-0028
  • Status Code: BDE_OP_NOT_SUPPORTED
  • Hexadecimal ID: 0x706bc01c
  • Message: This operation is not supported for the current BDE implementation.
ENC-bde-0029
  • Status String: ENC-bde-0029
  • Status Code: BDE_PROC_HANDLE_LIMIT
  • Hexadecimal ID: 0x706bc01d
  • Message: Insufficient system resources available to start a child process.
ENC-bde-0030
  • Status String: ENC-bde-0030
  • Status Code: BDE_PROC_INFO_INVALID_FILE
  • Hexadecimal ID: 0x706bc01e
  • Message: One of the file descriptors in the process info structure is invalid.
ENC-bde-0031
  • Status String: ENC-bde-0031
  • Status Code: BDE_PROC_NO_CHILDREN
  • Hexadecimal ID: 0x706bc01f
  • Message: No child processes are currently executing.
ENC-bde-0032
  • Status String: ENC-bde-0032
  • Status Code: BDE_PROC_WAITER_EXISTS
  • Hexadecimal ID: 0x706bc020
  • Message: A waiter already exists for the specified process.
ENC-bde-0033
  • Status String: ENC-bde-0033
  • Status Code: BDE_SHORT_IO
  • Hexadecimal ID: 0x706bc021
  • Message: The requested file operation only partially completed.
ENC-bde-0034
  • Status String: ENC-bde-0034
  • Status Code: BDE_SHORT_READ
  • Hexadecimal ID: 0x706bc022
  • Message: The requested read operation only partially completed.
ENC-bde-0035
  • Status String: ENC-bde-0035
  • Status Code: BDE_SHORT_WRITE
  • Hexadecimal ID: 0x706bc023
  • Message: The requested write operation only partially completed.
ENC-bde-0036
  • Status String: ENC-bde-0036
  • Status Code: BDE_SYSTEM_ERROR
  • Hexadecimal ID: 0x706bc024
  • Message: An unexpected operating system error was encountered.
ENC-bde-0037
  • Status String: ENC-bde-0037
  • Status Code: BDE_THREAD_LIMIT
  • Hexadecimal ID: 0x706bc025
  • Message: The limit on the maximum number of concurrent threads has been reached.
ENC-bde-0038
  • Status String: ENC-bde-0038
  • Status Code: BDE_TRANSIENT_ERROR
  • Hexadecimal ID: 0x706bc026
  • Message: A system error occurred that may not occur if the call is retried.
ENC-bde-0039
  • Status String: ENC-bde-0039
  • Status Code: BDE_INVALID_USER
  • Hexadecimal ID: 0x706bc027
  • Message: An invalid user name or password was specified.
ENC-bde-0040
  • Status String: ENC-bde-0040
  • Status Code: BDE_INVALID_GROUP
  • Hexadecimal ID: 0x706bc028
  • Message: An invalid group was specified.
ENC-bde-0041
  • Status String: ENC-bde-0041
  • Status Code: BDE_INVALID_PGRP
  • Hexadecimal ID: 0x706bc029
  • Message: An invalid process group was specified.
ENC-bde-0042
  • Status String: ENC-bde-0042
  • Status Code: BDE_INVALID_DIRECTORY
  • Hexadecimal ID: 0x706bc02a
  • Message: An invalid directory was specified.
ENC-bde-0043
  • Status String: ENC-bde-0043
  • Status Code: BDE_PROC_HAS_BEEN_JOINED
  • Hexadecimal ID: 0x706bc02b
  • Message: Attempt to join with a process that has already been joined with.
ENC-bde-0044
  • Status String: ENC-bde-0044
  • Status Code: BDE_PROC_STILL_ACTIVE
  • Hexadecimal ID: 0x706bc02c
  • Message: Attempt to terminate the handle of a still running process.
ENC-bde-0045
  • Status String: ENC-bde-0045
  • Status Code: BDE_PROC_HAS_EXITED
  • Hexadecimal ID: 0x706bc02d
  • Message: A reference was made to an invalid or defunct process.
ENC-bde-0046
  • Status String: ENC-bde-0046
  • Status Code: BDE_LOCK_NOT_GRANTED
  • Hexadecimal ID: 0x706bc02e
  • Message: Requested lock is not granted.
ENC-bde-0047
  • Status String: ENC-bde-0047
  • Status Code: BDE_INVALID_LOCK_TYPE
  • Hexadecimal ID: 0x706bc02f
  • Message: Lock type supplied is invalid.
ENC-bde-0048
  • Status String: ENC-bde-0048
  • Status Code: BDE_BAD_FILE_HANDLE_FOR_LOCKING
  • Hexadecimal ID: 0x706bc030
  • Message: File handle unsuitable for lock type.
ENC-bde-0049
  • Status String: ENC-bde-0049
  • Status Code: BDE_LOAD_LOAD_OBJECT_FAILED
  • Hexadecimal ID: 0x706bc031
  • Message: Could not load specified shared object.
ENC-bde-0050
  • Status String: ENC-bde-0050
  • Status Code: BDE_LOAD_INVALID_MODE
  • Hexadecimal ID: 0x706bc032
  • Message: Attempt to load object using invalid mode.
ENC-bde-0051
  • Status String: ENC-bde-0051
  • Status Code: BDE_LOAD_NOT_SHARED_OBJECT
  • Hexadecimal ID: 0x706bc033
  • Message: Attempt to load an object which is not shared.
ENC-bde-0052
  • Status String: ENC-bde-0052
  • Status Code: BDE_LOAD_OBJECT_NOT_FOUND
  • Hexadecimal ID: 0x706bc034
  • Message: Specified object/library file was not found. Check the path and file name.
ENC-bde-0053
  • Status String: ENC-bde-0053
  • Status Code: BDE_LOAD_UNRESOLVED_SYMBOLS
  • Hexadecimal ID: 0x706bc035
  • Message: All the symbols could not be resolved.
ENC-bde-0054
  • Status String: ENC-bde-0054
  • Status Code: BDE_LOAD_UNLOAD_OBJECT_FAILED
  • Hexadecimal ID: 0x706bc036
  • Message: Could not unload object using the specified object handle.
ENC-bde-0055
  • Status String: ENC-bde-0055
  • Status Code: BDE_LOAD_INVALID_HANDLE
  • Hexadecimal ID: 0x706bc037
  • Message: The handle specified is either invalid or it does not point to module that is still open.
ENC-bde-0056
  • Status String: ENC-bde-0056
  • Status Code: BDE_LOAD_NO_SYMBOL
  • Hexadecimal ID: 0x706bc038
  • Message: The specified symbol was not found.
ENC-enc-1025
  • Status String: ENC-enc-1025
  • Status Code: ENCINA_STS_CATOPEN_FAILED
  • Hexadecimal ID: 0x71b0a401
  • Message: Failed to open the required catalog file.
ENC-enc-1026
  • Status String: ENC-enc-1026
  • Status Code: ENCINA_STS_UNKNOWN_FACILITY
  • Hexadecimal ID: 0x71b0a402
  • Message: The supplied facility was unknown.
ENC-enc-1027
  • Status String: ENC-enc-1027
  • Status Code: ENCINA_STS_UNKNOWN_ERROR
  • Hexadecimal ID: 0x71b0a403
  • Message: The supplied error was not found or the catalog file was badly formatted.
ENC-enc-1028
  • Status String: ENC-enc-1028
  • Status Code: ENCINA_STS_BUFFER_TOO_SMALL
  • Hexadecimal ID: 0x71b0a404
  • Message: The supplied buffer was too small to perform the conversion.
ENC-enc-1029
  • Status String: ENC-enc-1029
  • Status Code: ENCINA_ABORT_FACILITY_INVALID_TID
  • Hexadecimal ID: 0x71b0a405
  • Message: The transaction identifier was invalid.
ENC-enc-1030
  • Status String: ENC-enc-1030
  • Status Code: ENCINA_ABORT_FACILITY_INVALID_PTR
  • Hexadecimal ID: 0x71b0a406
  • Message: A pointer passed as an argument was invalid.
ENC-enc-1031
  • Status String: ENC-enc-1031
  • Status Code: ENCINA_ABORT_FACILITY_NOT_SET
  • Hexadecimal ID: 0x71b0a407
  • Message: The abort reason was not set.
ENC-enc-1032
  • Status String: ENC-enc-1032
  • Status Code: ENCINA_ABORT_FACILITY_NO_FORMATTER
  • Hexadecimal ID: 0x71b0a408
  • Message: No matching formatter for uuid.
ENC-enc-1041
  • Status String: ENC-enc-1041
  • Status Code: ENCINA_STS_BAD_FORMAT
  • Hexadecimal ID: 0x71b0a411
  • Message: The status string was badly formatted.
ENC-epm-0001
  • Status String: ENC-epm-0001
  • Status Code: EPM_NO_SUCH_RESOURCE
  • Hexadecimal ID: 0x71b64001
  • Message: The requested resource name is not registered.
ENC-epm-0002
  • Status String: ENC-epm-0002
  • Status Code: EPM_ARRAY_TOO_SMALL
  • Hexadecimal ID: 0x71b64002
  • Message: The array provided for retrieving results is not large enough.
ENC-epm-0003
  • Status String: ENC-epm-0003
  • Status Code: EPM_RPC_FAILURE
  • Hexadecimal ID: 0x71b64003
  • Message: An RPC failure occurred during the retrieval.
ENC-lck-0001
  • Status String: ENC-lck-0001
  • Status Code: LOCK_NOT_GRANTED
  • Hexadecimal ID: 0x7451a001
  • Message: The lock was not granted
ENC-lck-0002
  • Status String: ENC-lck-0002
  • Status Code: LOCK_NOT_HELD
  • Hexadecimal ID: 0x7451a002
  • Message: A lock is not held in the specified mode
ENC-lck-0003
  • Status String: ENC-lck-0003
  • Status Code: LOCK_TRAN_INVALID
  • Hexadecimal ID: 0x7451a003
  • Message: Transaction invalid
ENC-lck-0004
  • Status String: ENC-lck-0004
  • Status Code: LOCK_TRAN_ABORTED
  • Hexadecimal ID: 0x7451a004
  • Message: Transaction aborted
ENC-lck-0005
  • Status String: ENC-lck-0005
  • Status Code: LOCK_NOT_INIT
  • Hexadecimal ID: 0x7451a005
  • Message: The lock service has not been initialized
ENC-lck-0006
  • Status String: ENC-lck-0006
  • Status Code: LOCK_ALREADY_INIT
  • Hexadecimal ID: 0x7451a006
  • Message: The lock service is already initialized
ENC-lck-0007
  • Status String: ENC-lck-0007
  • Status Code: LOCK_MODE_INVALID
  • Hexadecimal ID: 0x7451a007
  • Message: A lock mode was invalid
ENC-lck-0008
  • Status String: ENC-lck-0008
  • Status Code: LOCK_NAME_INVALID
  • Hexadecimal ID: 0x7451a008
  • Message: The lock name was invalid
ENC-lck-0009
  • Status String: ENC-lck-0009
  • Status Code: LOCK_SPACE_INVALID
  • Hexadecimal ID: 0x7451a009
  • Message: The lock name space was invalid
ENC-lck-0010
  • Status String: ENC-lck-0010
  • Status Code: LOCK_WAIT_MODE_INVALID
  • Hexadecimal ID: 0x7451a00a
  • Message: The lock wait mode was invalid
ENC-lck-0011
  • Status String: ENC-lck-0011
  • Status Code: LOCK_DURATION_INVALID
  • Hexadecimal ID: 0x7451a00b
  • Message: The lock duration was invalid
ENC-lck-0012
  • Status String: ENC-lck-0012
  • Status Code: LOCK_RESTART_DATA_INVALID
  • Hexadecimal ID: 0x7451a00c
  • Message: The restart data was invalid
ENC-lck-0013
  • Status String: ENC-lck-0013
  • Status Code: LOCK_PTR_INVALID
  • Hexadecimal ID: 0x7451a00d
  • Message: A data pointer was invalid
ENC-lck-0014
  • Status String: ENC-lck-0014
  • Status Code: LOCK_CALLBACK_INVALID
  • Hexadecimal ID: 0x7451a00e
  • Message: The conflict callback and argument were invalid
ENC-lck-0015
  • Status String: ENC-lck-0015
  • Status Code: LOCK_TIMED_OUT
  • Hexadecimal ID: 0x7451a00f
  • Message: Timeout expired while waiting for a lock
ENC-lck-0016
  • Status String: ENC-lck-0016
  • Status Code: LOCK_DURATION_CONFLICT
  • Hexadecimal ID: 0x7451a010
  • Message: New lock duration conflicts with current value
ENC-lck-0017
  • Status String: ENC-lck-0017
  • Status Code: LOCK_TRAN_NOT_IN_PAIR
  • Hexadecimal ID: 0x7451a011
  • Message: Transaction does not belong to compatibility pair
ENC-lck-0018
  • Status String: ENC-lck-0018
  • Status Code: LOCK_TOP_LEVEL_TRAN_REQUIRED
  • Hexadecimal ID: 0x7451a012
  • Message: Transaction is not a top-level tran as required
ENC-lck-0019
  • Status String: ENC-lck-0019
  • Status Code: LOCK_TRAN_ALREADY_IN_PAIR
  • Hexadecimal ID: 0x7451a013
  • Message: Transaction already belongs to a compatibility pair
ENC-lck-0020
  • Status String: ENC-lck-0020
  • Status Code: LOCK_TRAN_RELATED
  • Hexadecimal ID: 0x7451a014
  • Message: Transactions are already related - cannot be made compatible
ENC-log-0002
  • Status String: ENC-log-0002
  • Status Code: LOG_INVALID_ARCHIVE
  • Hexadecimal ID: 0x746f6002
  • Message: Invalid archive id
ENC-log-0020
  • Status String: ENC-log-0020
  • Status Code: LOG_CHAIN_LIST_TOO_LONG
  • Hexadecimal ID: 0x746f6014
  • Message: Too many chains for a record or cursor
ENC-log-0021
  • Status String: ENC-log-0021
  • Status Code: LOG_CHAINID_TOO_LONG
  • Hexadecimal ID: 0x746f6015
  • Message: Chain ID size exceeds limit
ENC-log-0022
  • Status String: ENC-log-0022
  • Status Code: LOG_CHAIN_SIZE_TOO_SMALL
  • Hexadecimal ID: 0x746f6016
  • Message: One or more chain ID buffers too small
ENC-log-0023
  • Status String: ENC-log-0023
  • Status Code: LOG_CHAIN_LIST_TOO_SMALL
  • Hexadecimal ID: 0x746f6017
  • Message: Insufficient chain identifier buffers
ENC-log-0026
  • Status String: ENC-log-0026
  • Status Code: LOG_INVALID_CURSOR
  • Hexadecimal ID: 0x746f601a
  • Message: Invalid cursor
ENC-log-0027
  • Status String: ENC-log-0027
  • Status Code: LOG_END_OF_CURSOR
  • Hexadecimal ID: 0x746f601b
  • Message: No more records in the cursor
ENC-log-0070
  • Status String: ENC-log-0070
  • Status Code: LOG_INVALID_FILTER
  • Hexadecimal ID: 0x746f6046
  • Message: Filter was null, empty, or too long
ENC-log-0126
  • Status String: ENC-log-0126
  • Status Code: LOG_LOGFILE_ALREADY_EXISTS
  • Hexadecimal ID: 0x746f607e
  • Message: Log file already exists
ENC-log-0127
  • Status String: ENC-log-0127
  • Status Code: LOG_NO_SUCH_LOGFILE
  • Hexadecimal ID: 0x746f607f
  • Message: No such log file
ENC-log-0128
  • Status String: ENC-log-0128
  • Status Code: LOG_INVALID_LOGFILE_NAME
  • Hexadecimal ID: 0x746f6080
  • Message: Invalid log file name
ENC-log-0129
  • Status String: ENC-log-0129
  • Status Code: LOG_INVALID_HANDLE
  • Hexadecimal ID: 0x746f6081
  • Message: Invalid log file handle
ENC-log-0135
  • Status String: ENC-log-0135
  • Status Code: LOG_INVALID_LSN
  • Hexadecimal ID: 0x746f6087
  • Message: Invalid LSN
ENC-log-0160
  • Status String: ENC-log-0160
  • Status Code: LOG_RECORD_TOO_LARGE
  • Hexadecimal ID: 0x746f60a0
  • Message: Record size exceeds limit or buffer size
ENC-log-0191
  • Status String: ENC-log-0191
  • Status Code: LOG_NEW_RP_TOO_HIGH
  • Hexadecimal ID: 0x746f60bf
  • Message: RP is greater than current archive head
ENC-log-0192
  • Status String: ENC-log-0192
  • Status Code: LOG_NEW_RP_TOO_LOW
  • Hexadecimal ID: 0x746f60c0
  • Message: RP is less than current restart point
ENC-log-0210
  • Status String: ENC-log-0210
  • Status Code: LOG_INVALID_TAIL_INCLUDE
  • Hexadecimal ID: 0x746f60d2
  • Message: Invalid tail
ENC-log-0211
  • Status String: ENC-log-0211
  • Status Code: LOG_NEW_TAIL_TOO_HIGH
  • Hexadecimal ID: 0x746f60d3
  • Message: New archive tail is greater than archive head
ENC-log-0212
  • Status String: ENC-log-0212
  • Status Code: LOG_NEW_TAIL_TOO_LOW
  • Hexadecimal ID: 0x746f60d4
  • Message: New archive tail is less than current tail
ENC-log-0234
  • Status String: ENC-log-0234
  • Status Code: LOG_BUFFER_TOO_SMALL
  • Hexadecimal ID: 0x746f60ea
  • Message: Buffer too small to contain the requested data
ENC-log-0250
  • Status String: ENC-log-0250
  • Status Code: LOG_NO_SPACE
  • Hexadecimal ID: 0x746f60fa
  • Message: Insufficient free space in log
ENC-log-0251
  • Status String: ENC-log-0251
  • Status Code: LOG_INVALID_WRITE_MODE
  • Hexadecimal ID: 0x746f60fb
  • Message: Invalid write mode
ENC-log-0256
  • Status String: ENC-log-0256
  • Status Code: LOG_VOL_ERROR
  • Hexadecimal ID: 0x746f6100
  • Message: Error encountered while operating on a log volume.
  • Explanation: An error occurred while reading from or writing to a log volume. This typically indicates that the Volume Service (VOL) encountered a hard I/O error.
  • User Response: Default VOL tracing can be used to identify the underlying error.
ENC-log-0257
  • Status String: ENC-log-0257
  • Status Code: LOG_VOL_TOO_SMALL
  • Hexadecimal ID: 0x746f6101
  • Message: Log volume is too small for the implementation.
ENC-log-0268
  • Status String: ENC-log-0268
  • Status Code: LOG_ARCHIVE_ALREADY_EXISTS
  • Hexadecimal ID: 0x746f610c
  • Message: Log file archive already exists
ENC-log-0269
  • Status String: ENC-log-0269
  • Status Code: LOG_NO_SUCH_ARCHIVE
  • Hexadecimal ID: 0x746f610d
  • Message: Log file archive could not be found
ENC-log-0274
  • Status String: ENC-log-0274
  • Status Code: LOG_ARCHIVE_NOT_OFFLINE
  • Hexadecimal ID: 0x746f6112
  • Message: Operation is only valid on offline archives
ENC-log-0275
  • Status String: ENC-log-0275
  • Status Code: LOG_ARCHIVE_NOT_ONLINE
  • Hexadecimal ID: 0x746f6113
  • Message: Operation is only valid on online archives
ENC-log-0279
  • Status String: ENC-log-0279
  • Status Code: LOG_INVALID_VOLUME
  • Hexadecimal ID: 0x746f6117
  • Message: Invalid volume name specified
ENC-log-0281
  • Status String: ENC-log-0281
  • Status Code: LOG_INVALID_ARCH_DEV
  • Hexadecimal ID: 0x746f6119
  • Message: Invalid archive device name specified
ENC-log-0282
  • Status String: ENC-log-0282
  • Status Code: LOG_INVALID_ARCH_FILE
  • Hexadecimal ID: 0x746f611a
  • Message: Invalid archive file name specified
ENC-log-0285
  • Status String: ENC-log-0285
  • Status Code: LOG_BUFFER_POOL_TOO_SMALL
  • Hexadecimal ID: 0x746f611d
  • Message: The configured buffer pool for the volume is too small
ENC-log-0286
  • Status String: ENC-log-0286
  • Status Code: LOG_ARCH_DEV_ERROR
  • Hexadecimal ID: 0x746f611e
  • Message: Error encountered while operating on the archive device
ENC-log-0287
  • Status String: ENC-log-0287
  • Status Code: LOG_INVALID_ARCHIVE_TYPE
  • Hexadecimal ID: 0x746f611f
  • Message: Invalid archive type specified
ENC-log-0290
  • Status String: ENC-log-0290
  • Status Code: LOG_CORRUPT_ARCH_FILE
  • Hexadecimal ID: 0x746f6122
  • Message: An archive file is corrupted.
ENC-log-0291
  • Status String: ENC-log-0291
  • Status Code: LOG_VOLUME_NOT_READY
  • Hexadecimal ID: 0x746f6123
  • Message: Log volume is not ready
ENC-log-0292
  • Status String: ENC-log-0292
  • Status Code: LOG_NOT_SUPPORTED
  • Hexadecimal ID: 0x746f6124
  • Message: Specified option is not supported by the implementation.
ENC-log-0293
  • Status String: ENC-log-0293
  • Status Code: LOG_ARCH_FILE_NOT_ACCESSIBLE
  • Hexadecimal ID: 0x746f6125
  • Message: Archive device file needed to complete a read is not accessible.
ENC-log-0294
  • Status String: ENC-log-0294
  • Status Code: LOG_INVALID_EXTENT_SIZE
  • Hexadecimal ID: 0x746f6126
  • Message: Invalid extent size specified
ENC-log-0295
  • Status String: ENC-log-0295
  • Status Code: LOG_NOT_LOG_VOLUME
  • Hexadecimal ID: 0x746f6127
  • Message: The volume does not appear to be a log volume
ENC-log-0296
  • Status String: ENC-log-0296
  • Status Code: LOG_INVALID_CURSOR_ATTRIBUTE
  • Hexadecimal ID: 0x746f6128
  • Message: Undefined cursor attribute specified.
ENC-pge-0002
  • Status String: ENC-pge-0002
  • Status Code: PAGE_NO_NEXT_PAGE
  • Hexadecimal ID: 0x75eb4002
  • Message: Next page not exist
ENC-pge-0003
  • Status String: ENC-pge-0003
  • Status Code: PAGE_NO_PREV_PAGE
  • Hexadecimal ID: 0x75eb4003
  • Message: Previous page not exist
ENC-pge-0004
  • Status String: ENC-pge-0004
  • Status Code: PAGE_INSUFFICIENT_SPACE
  • Hexadecimal ID: 0x75eb4004
  • Message: Not enough space on page
ENC-pge-0005
  • Status String: ENC-pge-0005
  • Status Code: PAGE_PAGES_UNCHANGED
  • Hexadecimal ID: 0x75eb4005
  • Message: Pages not changed
ENC-pge-0006
  • Status String: ENC-pge-0006
  • Status Code: PAGE_PAGES_MERGED
  • Hexadecimal ID: 0x75eb4006
  • Message: Pages merged
ENC-pge-0007
  • Status String: ENC-pge-0007
  • Status Code: PAGE_PAGES_BALANCED
  • Hexadecimal ID: 0x75eb4007
  • Message: Pages balanced
ENC-pge-0008
  • Status String: ENC-pge-0008
  • Status Code: PAGE_INVALID_OFFSET
  • Hexadecimal ID: 0x75eb4008
  • Message: Invalid data offset
ENC-pge-0009
  • Status String: ENC-pge-0009
  • Status Code: PAGE_EMPTY_AFTER_OP
  • Hexadecimal ID: 0x75eb4009
  • Message: Page empty after operation
ENC-pge-0010
  • Status String: ENC-pge-0010
  • Status Code: PAGE_INSUFFICIENT_BUFFER
  • Hexadecimal ID: 0x75eb400a
  • Message: User provided buffer too short
ENC-ppc-0001
  • Status String: ENC-ppc-0001
  • Status Code: PPC_ALLOC_BUSY
  • Hexadecimal ID: 0x7601a001
  • Message: Allocation failure, all sessions busy
ENC-ppc-0002
  • Status String: ENC-ppc-0002
  • Status Code: PPC_ALLOC_CONV_TYPE_MISMATCH
  • Hexadecimal ID: 0x7601a002
  • Message: Allocation failure, conversation type mismatch
ENC-ppc-0003
  • Status String: ENC-ppc-0003
  • Status Code: PPC_ALLOC_FAILURE_NO_RETRY
  • Hexadecimal ID: 0x7601a003
  • Message: Allocation failure, no retry
ENC-ppc-0004
  • Status String: ENC-ppc-0004
  • Status Code: PPC_ALLOC_FAILURE_RETRY
  • Hexadecimal ID: 0x7601a004
  • Message: Allocation failure, retry
ENC-ppc-0005
  • Status String: ENC-ppc-0005
  • Status Code: PPC_ALLOC_PIP_ILLEGAL
  • Hexadecimal ID: 0x7601a005
  • Message: Allocation failure, PIP data not supported
ENC-ppc-0006
  • Status String: ENC-ppc-0006
  • Status Code: PPC_ALLOC_PIP_MAL_FORMED
  • Hexadecimal ID: 0x7601a006
  • Message: Allocation failure, PIP data incorrectly specified
ENC-ppc-0007
  • Status String: ENC-ppc-0007
  • Status Code: PPC_ALLOC_SCHEDULER_FAILURE
  • Hexadecimal ID: 0x7601a007
  • Message: Allocation failure, transaction scheduler failure
ENC-ppc-0008
  • Status String: ENC-ppc-0008
  • Status Code: PPC_ALLOC_SECURITY_VIOLATION
  • Hexadecimal ID: 0x7601a008
  • Message: Allocation failure, security violation
ENC-ppc-0009
  • Status String: ENC-ppc-0009
  • Status Code: PPC_ALLOC_SYNCLEVEL_NO_LU_SUPP
  • Hexadecimal ID: 0x7601a009
  • Message: Allocation failure, LU does not support synclevel
ENC-ppc-0010
  • Status String: ENC-ppc-0010
  • Status Code: PPC_ALLOC_SYNCLEVEL_NO_PGM_SUPP
  • Hexadecimal ID: 0x7601a00a
  • Message: Allocation failure, TPN does not support synclevel
ENC-ppc-0011
  • Status String: ENC-ppc-0011
  • Status Code: PPC_ALLOC_TPN_UNAVL_NO_RETRY
  • Hexadecimal ID: 0x7601a00b
  • Message: Allocation failure, TPN unavailable, no retry
ENC-ppc-0012
  • Status String: ENC-ppc-0012
  • Status Code: PPC_ALLOC_TPN_UNAVL_RETRY
  • Hexadecimal ID: 0x7601a00c
  • Message: Allocation failure, TPN unavailable, retry
ENC-ppc-0013
  • Status String: ENC-ppc-0013
  • Status Code: PPC_ALLOC_UNKNOWN_TPN
  • Hexadecimal ID: 0x7601a00d
  • Message: Allocation failure, TPN unknown
ENC-ppc-0014
  • Status String: ENC-ppc-0014
  • Status Code: PPC_ALREADY_INITIALIZED
  • Hexadecimal ID: 0x7601a00e
  • Message: PPC Service already initialized
ENC-ppc-0015
  • Status String: ENC-ppc-0015
  • Status Code: PPC_BACKED_OUT
  • Hexadecimal ID: 0x7601a00f
  • Message: Backed out
ENC-ppc-0016
  • Status String: ENC-ppc-0016
  • Status Code: PPC_CONN_FAILURE_NO_RETRY
  • Hexadecimal ID: 0x7601a010
  • Message: Connection failure, no retry
  • Explanation: The allocate request failed because PPC was unable to establish a SNA connection. This is commonly caused by a mismatch between the "prof_name" entry of the side_info profile and the "local_lu_name" of the local_lu_lu6.2 profile.
  • User Response: Refer to the appropriate SNA configuration documentation for more information.
ENC-ppc-0017
  • Status String: ENC-ppc-0017
  • Status Code: PPC_CONN_FAILURE_RETRY
  • Hexadecimal ID: 0x7601a011
  • Message: Connection failure, retry
ENC-ppc-0018
  • Status String: ENC-ppc-0018
  • Status Code: PPC_DEALLOC_ABEND
  • Hexadecimal ID: 0x7601a012
  • Message: Deallocated, abend
ENC-ppc-0019
  • Status String: ENC-ppc-0019
  • Status Code: PPC_DEALLOC_ABEND_PROG
  • Hexadecimal ID: 0x7601a013
  • Message: Deallocated, program abend
ENC-ppc-0020
  • Status String: ENC-ppc-0020
  • Status Code: PPC_DEALLOC_ABEND_SVC
  • Hexadecimal ID: 0x7601a014
  • Message: Deallocated, service program abend
ENC-ppc-0021
  • Status String: ENC-ppc-0021
  • Status Code: PPC_DEALLOC_ABEND_TIMER
  • Hexadecimal ID: 0x7601a015
  • Message: Deallocated, timer abend
ENC-ppc-0022
  • Status String: ENC-ppc-0022
  • Status Code: PPC_DEALLOC_NORMAL
  • Hexadecimal ID: 0x7601a016
  • Message: Deallocated, normally
ENC-ppc-0023
  • Status String: ENC-ppc-0023
  • Status Code: PPC_SUCCESS_HEURISTIC_MIXED
  • Hexadecimal ID: 0x7601a017
  • Message: Commited_Heuristic mixed
ENC-ppc-0024
  • Status String: ENC-ppc-0024
  • Status Code: PPC_BACKED_OUT_HEURISTIC_MIXED
  • Hexadecimal ID: 0x7601a018
  • Message: BackedOut_Heuristic mixed
ENC-ppc-0025
  • Status String: ENC-ppc-0025
  • Status Code: PPC_FAILURE
  • Hexadecimal ID: 0x7601a019
  • Message: Failure
ENC-ppc-0026
  • Status String: ENC-ppc-0026
  • Status Code: PPC_INVALID_CONVERSATION_TYPE
  • Hexadecimal ID: 0x7601a01a
  • Message: Invalid conversation type
ENC-ppc-0027
  • Status String: ENC-ppc-0027
  • Status Code: PPC_INVALID_CONN_TYPE
  • Hexadecimal ID: 0x7601a01b
  • Message: Invalid connection type
ENC-ppc-0028
  • Status String: ENC-ppc-0028
  • Status Code: PPC_INVALID_CONVID
  • Hexadecimal ID: 0x7601a01c
  • Message: Invalid conversation identifier
ENC-ppc-0029
  • Status String: ENC-ppc-0029
  • Status Code: PPC_INVALID_DEALLOCATE_TYPE
  • Hexadecimal ID: 0x7601a01d
  • Message: Invalid deallocate type
ENC-ppc-0030
  • Status String: ENC-ppc-0030
  • Status Code: PPC_INVALID_ENCRYPT_LEVEL
  • Hexadecimal ID: 0x7601a01e
  • Message: Invalid encryption level
ENC-ppc-0031
  • Status String: ENC-ppc-0031
  • Status Code: PPC_INVALID_GDS_DATA
  • Hexadecimal ID: 0x7601a01f
  • Message: Invalid GDS data
ENC-ppc-0032
  • Status String: ENC-ppc-0032
  • Status Code: PPC_INVALID_LUNAME
  • Hexadecimal ID: 0x7601a020
  • Message: Invalid LU name or Fully Qualified LU Name
ENC-ppc-0033
  • Status String: ENC-ppc-0033
  • Status Code: PPC_INVALID_MODE_NAME
  • Hexadecimal ID: 0x7601a021
  • Message: Invalid mode name
ENC-ppc-0034
  • Status String: ENC-ppc-0034
  • Status Code: PPC_INVALID_OPTION
  • Hexadecimal ID: 0x7601a022
  • Message: Invalid option
ENC-ppc-0035
  • Status String: ENC-ppc-0035
  • Status Code: PPC_INVALID_PREPARE
  • Hexadecimal ID: 0x7601a023
  • Message: Invalid prepare
ENC-ppc-0036
  • Status String: ENC-ppc-0036
  • Status Code: PPC_INVALID_SECURITY_LEVEL
  • Hexadecimal ID: 0x7601a024
  • Message: Invalid security level
ENC-ppc-0037
  • Status String: ENC-ppc-0037
  • Status Code: PPC_INVALID_SYNCLEVEL
  • Hexadecimal ID: 0x7601a025
  • Message: Invalid synclevel
ENC-ppc-0038
  • Status String: ENC-ppc-0038
  • Status Code: PPC_INVALID_TID
  • Hexadecimal ID: 0x7601a026
  • Message: Invalid transaction identifier
ENC-ppc-0039
  • Status String: ENC-ppc-0039
  • Status Code: PPC_INVALID_TPN
  • Hexadecimal ID: 0x7601a027
  • Message: Invalid TPN
ENC-ppc-0040
  • Status String: ENC-ppc-0040
  • Status Code: PPC_INVALID_TS_DATA
  • Hexadecimal ID: 0x7601a028
  • Message: Invalid transaction scheduler data
ENC-ppc-0041
  • Status String: ENC-ppc-0041
  • Status Code: PPC_INVALID_USERID
  • Hexadecimal ID: 0x7601a029
  • Message: Invalid user identifier
ENC-ppc-0042
  • Status String: ENC-ppc-0042
  • Status Code: PPC_LISTENER_FAILURE
  • Hexadecimal ID: 0x7601a02a
  • Message: PPC listener failure
ENC-ppc-0043
  • Status String: ENC-ppc-0043
  • Status Code: PPC_NESTING_NOT_SUPPORTED
  • Hexadecimal ID: 0x7601a02b
  • Message: Nested transactions not supported
ENC-ppc-0044
  • Status String: ENC-ppc-0044
  • Status Code: PPC_NOT_DEALLOCATED
  • Hexadecimal ID: 0x7601a02c
  • Message: Conversation not deallocated
ENC-ppc-0045
  • Status String: ENC-ppc-0045
  • Status Code: PPC_NOT_INITIALIZED
  • Hexadecimal ID: 0x7601a02d
  • Message: PPC Service not initialized
ENC-ppc-0046
  • Status String: ENC-ppc-0046
  • Status Code: PPC_NOT_SNA_SYSID
  • Hexadecimal ID: 0x7601a02e
  • Message: Not a SNA system identifier
ENC-ppc-0047
  • Status String: ENC-ppc-0047
  • Status Code: PPC_PROG_ERROR_NO_TRUNC
  • Hexadecimal ID: 0x7601a02f
  • Message: Program error, not truncated
ENC-ppc-0048
  • Status String: ENC-ppc-0048
  • Status Code: PPC_PROG_ERROR_PURGING
  • Hexadecimal ID: 0x7601a030
  • Message: Program error, purging
ENC-ppc-0049
  • Status String: ENC-ppc-0049
  • Status Code: PPC_PROG_ERROR_TRUNC
  • Hexadecimal ID: 0x7601a031
  • Message: Program error, truncated
ENC-ppc-0050
  • Status String: ENC-ppc-0050
  • Status Code: PPC_STATE_ERROR
  • Hexadecimal ID: 0x7601a032
  • Message: State error
ENC-ppc-0051
  • Status String: ENC-ppc-0051
  • Status Code: PPC_SVC_ERROR_NO_TRUNC
  • Hexadecimal ID: 0x7601a033
  • Message: Service program error, not truncated
ENC-ppc-0052
  • Status String: ENC-ppc-0052
  • Status Code: PPC_SVC_ERROR_PURGING
  • Hexadecimal ID: 0x7601a034
  • Message: Service program error, purging
ENC-ppc-0053
  • Status String: ENC-ppc-0053
  • Status Code: PPC_SVC_ERROR_TRUNC
  • Hexadecimal ID: 0x7601a035
  • Message: Service program error, truncated
ENC-ppc-0054
  • Status String: ENC-ppc-0054
  • Status Code: PPC_SYSID_EXISTS
  • Hexadecimal ID: 0x7601a036
  • Message: System identifier exists
ENC-ppc-0055
  • Status String: ENC-ppc-0055
  • Status Code: PPC_TPN_FAILURE
  • Hexadecimal ID: 0x7601a037
  • Message: SNA TPNs not configured
ENC-ppc-0056
  • Status String: ENC-ppc-0056
  • Status Code: PPC_UNKNOWN_SYSID
  • Hexadecimal ID: 0x7601a038
  • Message: Unknown system identifier
ENC-ppc-0057
  • Status String: ENC-ppc-0057
  • Status Code: PPC_CONNECTION_NAME_EXISTS
  • Hexadecimal ID: 0x7601a039
  • Message: Connection name already exists
ENC-ppc-0058
  • Status String: ENC-ppc-0058
  • Status Code: PPC_PROTOCOL_UNAVAILABLE
  • Hexadecimal ID: 0x7601a03a
  • Message: Specified protocol uninitialized or unavailable
ENC-ppc-0059
  • Status String: ENC-ppc-0059
  • Status Code: PPC_GWY_NO_SYSID_MAP
  • Hexadecimal ID: 0x7601a03b
  • Message: No Map for SysId at Gateway
ENC-ppc-0060
  • Status String: ENC-ppc-0060
  • Status Code: PPC_GWY_SYSID_MAP_EXISTS
  • Hexadecimal ID: 0x7601a03c
  • Message: Map for SysId exists at Gateway
ENC-ppc-0061
  • Status String: ENC-ppc-0061
  • Status Code: PPC_UNKNOWN_SCHEDULING_FUNCTION
  • Hexadecimal ID: 0x7601a03d
  • Message: Unknown Scheduling Function
ENC-ppc-0062
  • Status String: ENC-ppc-0062
  • Status Code: PPC_SCHEDULING_FUNCTION_EXISTS
  • Hexadecimal ID: 0x7601a03e
  • Message: Scheduling function already exists
ENC-ppc-0063
  • Status String: ENC-ppc-0063
  • Status Code: PPC_UNKNOWN_GWY_SYSID
  • Hexadecimal ID: 0x7601a03f
  • Message: SysId unknown at Gateway
ENC-ppc-0066
  • Status String: ENC-ppc-0066
  • Status Code: PPC_GWY_INVALID_WAIT_TIME
  • Hexadecimal ID: 0x7601a042
  • Message: Invalid wait time
ENC-ppc-0067
  • Status String: ENC-ppc-0067
  • Status Code: PPC_GWY_UNAUTHORISED_CLIENT
  • Hexadecimal ID: 0x7601a043
  • Message: Client Unauthorised at Gateway
ENC-ppc-0068
  • Status String: ENC-ppc-0068
  • Status Code: PPC_GWY_ALREADY_INITIALIZED
  • Hexadecimal ID: 0x7601a044
  • Message: Gateway Already Initialized
ENC-ppc-0069
  • Status String: ENC-ppc-0069
  • Status Code: PPC_ASYNC_ABORTED_TRANSACTION
  • Hexadecimal ID: 0x7601a045
  • Message: Transaction aborted asynchronously
ENC-ppc-0070
  • Status String: ENC-ppc-0070
  • Status Code: PPC_THREAD_NOT_CERTIFIED
  • Hexadecimal ID: 0x7601a046
  • Message: Thread not certified
ENC-ppc-0071
  • Status String: ENC-ppc-0071
  • Status Code: PPC_UNSUPPORTED
  • Hexadecimal ID: 0x7601a047
  • Message: Unsupported function
ENC-ppc-0072
  • Status String: ENC-ppc-0072
  • Status Code: PPC_TIMED_OUT
  • Hexadecimal ID: 0x7601a048
  • Message: Allocate timed out
ENC-ppc-0073
  • Status String: ENC-ppc-0073
  • Status Code: PPC_CONN_FAILURE_NO_RETRY_BO_REQUIRED
  • Hexadecimal ID: 0x7601a049
  • Message: Connection failure, no retry BO
ENC-ppc-0074
  • Status String: ENC-ppc-0074
  • Status Code: PPC_CONN_FAILURE_RETRY_BO_REQUIRED
  • Hexadecimal ID: 0x7601a04a
  • Message: Connection failure, retry BO
ENC-ppc-0075
  • Status String: ENC-ppc-0075
  • Status Code: PPC_DEALLOC_ABEND_BO_REQUIRED
  • Hexadecimal ID: 0x7601a04b
  • Message: Deallocated, abend BO
ENC-ppc-0076
  • Status String: ENC-ppc-0076
  • Status Code: PPC_DEALLOC_ABEND_PROG_BO_REQUIRED
  • Hexadecimal ID: 0x7601a04c
  • Message: Deallocated, program abend BO
ENC-ppc-0077
  • Status String: ENC-ppc-0077
  • Status Code: PPC_DEALLOC_ABEND_SVC_BO_REQUIRED
  • Hexadecimal ID: 0x7601a04d
  • Message: Deallocated, service program abend BO
ENC-ppc-0078
  • Status String: ENC-ppc-0078
  • Status Code: PPC_DEALLOC_ABEND_TIMER_BO_REQUIRED
  • Hexadecimal ID: 0x7601a04e
  • Message: Deallocated, timer abend BO
ENC-ppc-0079
  • Status String: ENC-ppc-0079
  • Status Code: PPC_FAILURE_BO_REQUIRED
  • Hexadecimal ID: 0x7601a04f
  • Message: Failure BO
ENC-ppc-0080
  • Status String: ENC-ppc-0080
  • Status Code: PPC_SUCCESS_OUTCOME_PENDING
  • Hexadecimal ID: 0x7601a050
  • Message: Success - outcome pending
ENC-ppc-0081
  • Status String: ENC-ppc-0081
  • Status Code: PPC_BACKED_OUT_OUTCOME_PENDING
  • Hexadecimal ID: 0x7601a051
  • Message: Backed out - outcome pending
ENC-ppc-0082
  • Status String: ENC-ppc-0082
  • Status Code: PPC_UNSUCCESSFUL
  • Hexadecimal ID: 0x7601a052
  • Message: Nothing to return
ENC-ppc-0083
  • Status String: ENC-ppc-0083
  • Status Code: PPC_UNKNOWN_GWY_SERVER
  • Hexadecimal ID: 0x7601a053
  • Message: Gateway Server unknown in Name Service
ENC-ppc-0084
  • Status String: ENC-ppc-0084
  • Status Code: PPC_INTERFACE_NOT_SUPPORTED
  • Hexadecimal ID: 0x7601a054
  • Message: Specified interface is not supported
ENC-ppc-0085
  • Status String: ENC-ppc-0085
  • Status Code: PPC_GWY_INVALID_LU_NAME
  • Hexadecimal ID: 0x7601a055
  • Message: Invalid LU Name specified at Gateway
ENC-ppc-0086
  • Status String: ENC-ppc-0086
  • Status Code: PPC_NOT_SNA_LUNAME
  • Hexadecimal ID: 0x7601a056
  • Message: Not a valid SNA LU Name
ENC-ppc-0087
  • Status String: ENC-ppc-0087
  • Status Code: PPC_LUNAME_EXISTS
  • Hexadecimal ID: 0x7601a057
  • Message: LU Name exists
ENC-ppc-0088
  • Status String: ENC-ppc-0088
  • Status Code: PPC_UNKNOWN_LUNAME
  • Hexadecimal ID: 0x7601a058
  • Message: Unknown LU Name
ENC-ppc-0089
  • Status String: ENC-ppc-0089
  • Status Code: PPC_COMMAND_UNNECESSARY
  • Hexadecimal ID: 0x7601a059
  • Message: Unnecessary Gateway configuration command
ENC-ppc-0090
  • Status String: ENC-ppc-0090
  • Status Code: PPC_GWY_COMMAND_NOT_SUPPORTED
  • Hexadecimal ID: 0x7601a05a
  • Message: Unsupported Gateway command
ENC-ppc-0091
  • Status String: ENC-ppc-0091
  • Status Code: PPC_GWY_UNKNOWN_LUW
  • Hexadecimal ID: 0x7601a05b
  • Message: Unknown LUW at the Gateway Server
ENC-ppc-0092
  • Status String: ENC-ppc-0092
  • Status Code: PPC_GWY_UNKNOWN_TID
  • Hexadecimal ID: 0x7601a05c
  • Message: Unknown transaction at the Gateway Server
ENC-ppc-0093
  • Status String: ENC-ppc-0093
  • Status Code: PPC_GWY_NO_PENDING_RESYNC
  • Hexadecimal ID: 0x7601a05d
  • Message: No pending resynchronizations
ENC-ppc-0094
  • Status String: ENC-ppc-0094
  • Status Code: PPC_UNKNOWN_TPNAME
  • Hexadecimal ID: 0x7601a05e
  • Message: TP name is not registered - command failed
ENC-ppc-0095
  • Status String: ENC-ppc-0095
  • Status Code: PPC_TPNAME_EXISTS
  • Hexadecimal ID: 0x7601a05f
  • Message: TP name has already been registered - command failed
ENC-ppc-0096
  • Status String: ENC-ppc-0096
  • Status Code: PPC_TPNAME_ERROR
  • Hexadecimal ID: 0x7601a060
  • Message: TP name malformed - command failed
ENC-ppc-0097
  • Status String: ENC-ppc-0097
  • Status Code: PPC_GWY_RSN_PROTOCOL_VIOLATION
  • Hexadecimal ID: 0x7601a061
  • Message: Protocol violation during resynchronization
ENC-ppc-0098
  • Status String: ENC-ppc-0098
  • Status Code: PPC_GWY_RSN_LOG_NAME_MISMATCH
  • Hexadecimal ID: 0x7601a062
  • Message: Log Identifier Name mismatch during resynchronization
ENC-ppc-0099
  • Status String: ENC-ppc-0099
  • Status Code: PPC_GWY_RSN_ABNORMAL_XLN_REPLY
  • Hexadecimal ID: 0x7601a063
  • Message: Abnormal reply in Exchange Log Names from partner during resynchronization
ENC-ppc-0100
  • Status String: ENC-ppc-0100
  • Status Code: PPC_GWY_CNF_EXPORT_FILE_ERROR
  • Hexadecimal ID: 0x7601a064
  • Message: Gateway configuration export file cannot be created or over written
ENC-ppc-0101
  • Status String: ENC-ppc-0101
  • Status Code: PPC_DPL_ABEND_SET
  • Hexadecimal ID: 0x7601a065
  • Message: CICS DPL abend code set
ENC-ppc-0102
  • Status String: ENC-ppc-0102
  • Status Code: PPC_DPL_CCODE_SET
  • Hexadecimal ID: 0x7601a066
  • Message: CICS DPL condition code set
ENC-ppc-0103
  • Status String: ENC-ppc-0103
  • Status Code: PPC_DPL_BAD_MESSAGE
  • Hexadecimal ID: 0x7601a067
  • Message: Malformed DPL message received from CICS
ENC-rec-0001
  • Status String: ENC-rec-0001
  • Status Code: REC_ACTIVE_SLAVES
  • Hexadecimal ID: 0x76ae2001
  • Message: Ending operation with active slaves.
ENC-rec-0002
  • Status String: ENC-rec-0002
  • Status Code: REC_BUFFERS_EXHAUSTED
  • Hexadecimal ID: 0x76ae2002
  • Message: All buffers in the buffer pool are pinned.
ENC-rec-0003
  • Status String: ENC-rec-0003
  • Status Code: REC_DISK_IO_ERROR
  • Hexadecimal ID: 0x76ae2003
  • Message: Disk read/write Error.
ENC-rec-0004
  • Status String: ENC-rec-0004
  • Status Code: REC_INIT_NOTIFICATION_NOT_ACKED
  • Hexadecimal ID: 0x76ae2004
  • Message: Init notification for a pinned page not acknowledged.
ENC-rec-0005
  • Status String: ENC-rec-0005
  • Status Code: REC_INVALID_OP_ID
  • Hexadecimal ID: 0x76ae2005
  • Message: Invalid operation identifier.
ENC-rec-0006
  • Status String: ENC-rec-0006
  • Status Code: REC_INVALID_VOL_ACCESS
  • Hexadecimal ID: 0x76ae2006
  • Message: Invalid volume access.
ENC-rec-0007
  • Status String: ENC-rec-0007
  • Status Code: REC_INVALID_PAGE_RANGE
  • Hexadecimal ID: 0x76ae2007
  • Message: Invalid page range.
ENC-rec-0008
  • Status String: ENC-rec-0008
  • Status Code: REC_NO_INIT_NOTIFICATION
  • Hexadecimal ID: 0x76ae2008
  • Message: Attempt to acknowledge a non-existent init notification.
ENC-rec-0009
  • Status String: ENC-rec-0009
  • Status Code: REC_PAGE_NOT_PINNED
  • Hexadecimal ID: 0x76ae2009
  • Message: Page not pinned.
ENC-rec-0010
  • Status String: ENC-rec-0010
  • Status Code: REC_PAGE_PINNED
  • Hexadecimal ID: 0x76ae200a
  • Message: Page is pinned.
ENC-rec-0011
  • Status String: ENC-rec-0011
  • Status Code: REC_PAGE_UPDATE_NOT_BEGUN
  • Hexadecimal ID: 0x76ae200b
  • Message: Attempt to update a page without beginning a page update.
ENC-rec-0012
  • Status String: ENC-rec-0012
  • Status Code: REC_PAGE_UPDATE_NOT_FINISHED
  • Hexadecimal ID: 0x76ae200c
  • Message: Attempt to unpin a page without ending a page update.
ENC-rec-0013
  • Status String: ENC-rec-0013
  • Status Code: REC_TID_NOT_ACTIVE
  • Hexadecimal ID: 0x76ae200d
  • Message: Specified transaction is not active.
ENC-rec-0014
  • Status String: ENC-rec-0014
  • Status Code: REC_BACKUP_IN_PROGRESS
  • Hexadecimal ID: 0x76ae200e
  • Message: Backup of specified volume is in progress.
ENC-rec-0015
  • Status String: ENC-rec-0015
  • Status Code: REC_INVALID_BACKUP_TYPE
  • Hexadecimal ID: 0x76ae200f
  • Message: Invalid backup type.
ENC-rec-0016
  • Status String: ENC-rec-0016
  • Status Code: REC_SEGMENT_IN_PROGRESS
  • Hexadecimal ID: 0x76ae2010
  • Message: Backup segment in progress.
ENC-rec-0017
  • Status String: ENC-rec-0017
  • Status Code: REC_BAD_BACKUP_FILE
  • Hexadecimal ID: 0x76ae2011
  • Message: Bad backup file.
ENC-rec-0018
  • Status String: ENC-rec-0018
  • Status Code: REC_INVALID_BACKUP_ID
  • Hexadecimal ID: 0x76ae2012
  • Message: Invalid backup identifier.
ENC-rec-0019
  • Status String: ENC-rec-0019
  • Status Code: REC_NO_ACTIVE_BACKUP
  • Hexadecimal ID: 0x76ae2013
  • Message: No active backup.
ENC-rec-0020
  • Status String: ENC-rec-0020
  • Status Code: REC_NO_ACTIVE_SEGMENT
  • Hexadecimal ID: 0x76ae2014
  • Message: Attempt to end a backup segment without a corresponding begin segment.
ENC-rec-0021
  • Status String: ENC-rec-0021
  • Status Code: REC_NO_BACKUP
  • Hexadecimal ID: 0x76ae2015
  • Message: Specified volume has no backup.
ENC-rec-0022
  • Status String: ENC-rec-0022
  • Status Code: REC_MEDIA_ARCHIVING_DISABLED
  • Hexadecimal ID: 0x76ae2016
  • Message: Media archiving is currently disabled.
ENC-rec-0023
  • Status String: ENC-rec-0023
  • Status Code: REC_BACKUP_SEGMENT_ABORTED
  • Hexadecimal ID: 0x76ae2017
  • Message: Backup segment aborted.
ENC-rec-0024
  • Status String: ENC-rec-0024
  • Status Code: REC_BACKUP_FILE_TOO_SMALL
  • Hexadecimal ID: 0x76ae2018
  • Message: Backup file is too small.
ENC-rec-0025
  • Status String: ENC-rec-0025
  • Status Code: REC_RESTORE_ABORTED
  • Hexadecimal ID: 0x76ae2019
  • Message: Restore is aborted.
ENC-rec-0026
  • Status String: ENC-rec-0026
  • Status Code: REC_RESTORE_NO_BACKUP
  • Hexadecimal ID: 0x76ae201a
  • Message: There is no backup for one of the volumes to restore.
ENC-rec-0027
  • Status String: ENC-rec-0027
  • Status Code: REC_RESTORE_WRONG_FILE
  • Hexadecimal ID: 0x76ae201b
  • Message: The backup file does not match the volume being restored.
ENC-rec-0028
  • Status String: ENC-rec-0028
  • Status Code: REC_NO_ACTIVE_RESTORE
  • Hexadecimal ID: 0x76ae201c
  • Message: No active restore.
ENC-rec-0029
  • Status String: ENC-rec-0029
  • Status Code: REC_VOL_ENABLED
  • Hexadecimal ID: 0x76ae201d
  • Message: Volume enabled.
ENC-rec-0030
  • Status String: ENC-rec-0030
  • Status Code: REC_VOL_DISABLED
  • Hexadecimal ID: 0x76ae201e
  • Message: Volume disabled.
ENC-rec-0031
  • Status String: ENC-rec-0031
  • Status Code: REC_VOL_BROKEN
  • Hexadecimal ID: 0x76ae201f
  • Message: Volume damaged.
ENC-rec-0032
  • Status String: ENC-rec-0032
  • Status Code: REC_FUNCTION_UNAVAILABLE
  • Hexadecimal ID: 0x76ae2020
  • Message: Specified function is unavailable.
ENC-rec-0033
  • Status String: ENC-rec-0033
  • Status Code: REC_LOG_ARCHIVE_FILE_INACCESSIBLE
  • Hexadecimal ID: 0x76ae2021
  • Message: Log archive file containing desired information is inaccessible.
ENC-rec-0034
  • Status String: ENC-rec-0034
  • Status Code: REC_MEDIA_ARCHIVE_ERROR
  • Hexadecimal ID: 0x76ae2022
  • Message: Error when operating on log media archive
ENC-rec-0035
  • Status String: ENC-rec-0035
  • Status Code: REC_OPEN_LOG_FAILURE
  • Hexadecimal ID: 0x76ae2023
  • Message: Failure to enable the log.
ENC-rst-0001
  • Status String: ENC-rst-0001
  • Status Code: RESTART_INVALID_DEVICE_NAME
  • Hexadecimal ID: 0x76d23001
  • Message: Same names for two or more devices.
ENC-rst-0002
  • Status String: ENC-rst-0002
  • Status Code: RESTART_INVALID_NUM_DEVICES
  • Hexadecimal ID: 0x76d23002
  • Message: The number of device supplied is either less or greater than the supported value.
ENC-rst-0003
  • Status String: ENC-rst-0003
  • Status Code: RESTART_INVALID_RESTART_MODE
  • Hexadecimal ID: 0x76d23003
  • Message: The restart mode is neither cold start nor warm start.
ENC-sfs-0002
  • Status String: ENC-sfs-0002
  • Status Code: SFS_BAD_ACCESS_MODE
  • Hexadecimal ID: 0x7715a002
  • Message: Invalid access mode in open request
ENC-sfs-0003
  • Status String: ENC-sfs-0003
  • Status Code: SFS_BAD_ATTRIBUTE_NAME
  • Hexadecimal ID: 0x7715a003
  • Message: Attribute name has an invalid format.
ENC-sfs-0004
  • Status String: ENC-sfs-0004
  • Status Code: SFS_BAD_AUTHORITY
  • Hexadecimal ID: 0x7715a004
  • Message: Unrecognized authority value.
ENC-sfs-0005
  • Status String: ENC-sfs-0005
  • Status Code: SFS_BAD_CONSISTENCY
  • Hexadecimal ID: 0x7715a005
  • Message: Invalid consistency value in open request.
ENC-sfs-0006
  • Status String: ENC-sfs-0006
  • Status Code: SFS_BAD_DUPLICATE_DETECTION
  • Hexadecimal ID: 0x7715a006
  • Message: Invalid duplicate detection value in open request.
ENC-sfs-0007
  • Status String: ENC-sfs-0007
  • Status Code: SFS_BAD_FIELD_NAME
  • Hexadecimal ID: 0x7715a007
  • Message: Invalid record field name.
ENC-sfs-0008
  • Status String: ENC-sfs-0008
  • Status Code: SFS_BAD_FIELD_SIZE
  • Hexadecimal ID: 0x7715a008
  • Message: Invalid record field size.
ENC-sfs-0009
  • Status String: ENC-sfs-0009
  • Status Code: SFS_BAD_FIELD_TYPE
  • Hexadecimal ID: 0x7715a009
  • Message: Unrecognized record field type.
ENC-sfs-0010
  • Status String: ENC-sfs-0010
  • Status Code: SFS_BAD_FILE_NAME
  • Hexadecimal ID: 0x7715a00a
  • Message: Invalid file name.
ENC-sfs-0011
  • Status String: ENC-sfs-0011
  • Status Code: SFS_BAD_FILE_ORGANIZATION
  • Hexadecimal ID: 0x7715a00b
  • Message: Invalid file organization value.
ENC-sfs-0012
  • Status String: ENC-sfs-0012
  • Status Code: SFS_BAD_INDEX_NAME
  • Hexadecimal ID: 0x7715a00c
  • Message: Invalid index name.
ENC-sfs-0013
  • Status String: ENC-sfs-0013
  • Status Code: SFS_BAD_KEY_VALUE
  • Hexadecimal ID: 0x7715a00d
  • Message: Invalid key value.
ENC-sfs-0014
  • Status String: ENC-sfs-0014
  • Status Code: SFS_BAD_NUMBER_OF_FIELDS
  • Hexadecimal ID: 0x7715a00e
  • Message: Invalid num of record or key fields.
ENC-sfs-0015
  • Status String: ENC-sfs-0015
  • Status Code: SFS_BAD_RECORD_VALUE
  • Hexadecimal ID: 0x7715a00f
  • Message: Invalid record value.
ENC-sfs-0016
  • Status String: ENC-sfs-0016
  • Status Code: SFS_BAD_VOLUME_NAME
  • Hexadecimal ID: 0x7715a010
  • Message: Invalid volume name.
ENC-sfs-0017
  • Status String: ENC-sfs-0017
  • Status Code: SFS_CRP_UNDEFINED
  • Hexadecimal ID: 0x7715a011
  • Message: The current record position is not established.
ENC-sfs-0018
  • Status String: ENC-sfs-0018
  • Status Code: SFS_CURRENT_RECORD_DELETED
  • Hexadecimal ID: 0x7715a012
  • Message: The current record is deleted.
ENC-sfs-0019
  • Status String: ENC-sfs-0019
  • Status Code: SFS_CURRENT_UNDEFINED
  • Hexadecimal ID: 0x7715a013
  • Message: There is a previous or next record but no current record.
ENC-sfs-0020
  • Status String: ENC-sfs-0020
  • Status Code: SFS_DISALLOWED_ON_ACTIVE_INDEX
  • Hexadecimal ID: 0x7715a014
  • Message: Invalid operation on an active index.
ENC-sfs-0021
  • Status String: ENC-sfs-0021
  • Status Code: SFS_DISALLOWED_ON_PRIMARY_INDEX
  • Hexadecimal ID: 0x7715a015
  • Message: Invalid operation on primary index.
ENC-sfs-0022
  • Status String: ENC-sfs-0022
  • Status Code: SFS_DUPLICATE_IN_UNIQUE_INDEX
  • Hexadecimal ID: 0x7715a016
  • Message: Attempt to insert a duplicate key in a unique index.
ENC-sfs-0023
  • Status String: ENC-sfs-0023
  • Status Code: SFS_END_OF_KEY_RANGE
  • Hexadecimal ID: 0x7715a017
  • Message: Attempt to read past end of range.
ENC-sfs-0024
  • Status String: ENC-sfs-0024
  • Status Code: SFS_ESN_TOO_BIG
  • Hexadecimal ID: 0x7715a018
  • Message: ESN is too large for 4-byte conversion.
ENC-sfs-0025
  • Status String: ENC-sfs-0025
  • Status Code: SFS_EXCLUSIVE_OFD_EXISTS
  • Hexadecimal ID: 0x7715a019
  • Message: File is already opened exclusively.
ENC-sfs-0026
  • Status String: ENC-sfs-0026
  • Status Code: SFS_EXCLUSIVE_OFD_REQUIRED
  • Hexadecimal ID: 0x7715a01a
  • Message: Operation requires an exclusive OFD.
ENC-sfs-0027
  • Status String: ENC-sfs-0027
  • Status Code: SFS_FILE_DAMAGED
  • Hexadecimal ID: 0x7715a01b
  • Message: File is damaged.
ENC-sfs-0028
  • Status String: ENC-sfs-0028
  • Status Code: SFS_FILE_NAME_EXISTS
  • Hexadecimal ID: 0x7715a01c
  • Message: File by this name already exists.
ENC-sfs-0029
  • Status String: ENC-sfs-0029
  • Status Code: SFS_INDEX_NOT_ACTIVE
  • Hexadecimal ID: 0x7715a01d
  • Message: The index is not active.
ENC-sfs-0030
  • Status String: ENC-sfs-0030
  • Status Code: SFS_INDEX_NOT_UNIQUE
  • Hexadecimal ID: 0x7715a01e
  • Message: Operation requires a unique index.
ENC-sfs-0031
  • Status String: ENC-sfs-0031
  • Status Code: SFS_INDEX_NAME_EXISTS
  • Hexadecimal ID: 0x7715a01f
  • Message: Index by this name already exists.
ENC-sfs-0032
  • Status String: ENC-sfs-0032
  • Status Code: SFS_INSUFFICIENT_AUTHORITY
  • Hexadecimal ID: 0x7715a020
  • Message: Insufficient authority for this operation.
ENC-sfs-0033
  • Status String: ENC-sfs-0033
  • Status Code: SFS_INSUFFICIENT_BUFFER
  • Hexadecimal ID: 0x7715a021
  • Message: At least one supplied record buffer is too small.
ENC-sfs-0034
  • Status String: ENC-sfs-0034
  • Status Code: SFS_INSUFFICIENT_FILE_ACCESS_RIGHTS
  • Hexadecimal ID: 0x7715a022
  • Message: Insufficient privilege for this operation.
ENC-sfs-0035
  • Status String: ENC-sfs-0035
  • Status Code: SFS_INTERNAL_SFS_ERROR
  • Hexadecimal ID: 0x7715a023
  • Message: SFS internal error.
ENC-sfs-0036
  • Status String: ENC-sfs-0036
  • Status Code: SFS_INVALID_END_POINT
  • Hexadecimal ID: 0x7715a024
  • Message: Either start or end of a range is invalid.
ENC-sfs-0037
  • Status String: ENC-sfs-0037
  • Status Code: SFS_INVALID_ESN
  • Hexadecimal ID: 0x7715a025
  • Message: ESN is not a valid Entry Sequence Number.
ENC-sfs-0038
  • Status String: ENC-sfs-0038
  • Status Code: SFS_INVALID_ISOLATION_LEVEL
  • Hexadecimal ID: 0x7715a026
  • Message: Unrecognized isolation level.
ENC-sfs-0039
  • Status String: ENC-sfs-0039
  • Status Code: SFS_INVALID_LOCK_MODE
  • Hexadecimal ID: 0x7715a027
  • Message: Invalid lock mode value.
ENC-sfs-0040
  • Status String: ENC-sfs-0040
  • Status Code: SFS_INVALID_MAX_NUMBER_RECORDS
  • Hexadecimal ID: 0x7715a028
  • Message: Invalid value for maximum number of records.
ENC-sfs-0041
  • Status String: ENC-sfs-0041
  • Status Code: SFS_INVALID_RECORD_SIZE
  • Hexadecimal ID: 0x7715a029
  • Message: Invalid record size.
ENC-sfs-0042
  • Status String: ENC-sfs-0042
  • Status Code: SFS_MAX_NUMBER_RECORDS_EXCEEDED
  • Hexadecimal ID: 0x7715a02a
  • Message: Maximum number of records has been exceeded.
ENC-sfs-0043
  • Status String: ENC-sfs-0043
  • Status Code: SFS_MEDIA_RECOVERY_REQUIRED
  • Hexadecimal ID: 0x7715a02b
  • Message: Media recovery must be performed.
ENC-sfs-0044
  • Status String: ENC-sfs-0044
  • Status Code: SFS_MEMORY_LIMIT
  • Hexadecimal ID: 0x7715a02c
  • Message: Memory allocation failure.
ENC-sfs-0045
  • Status String: ENC-sfs-0045
  • Status Code: SFS_NO_ASSOCIATED_ESN
  • Hexadecimal ID: 0x7715a02d
  • Message: The OFD does not have an associated ESN.
ENC-sfs-0046
  • Status String: ENC-sfs-0046
  • Status Code: SFS_NO_ASSOCIATED_RSN
  • Hexadecimal ID: 0x7715a02e
  • Message: The OFD does not have an associated RSN.
ENC-sfs-0047
  • Status String: ENC-sfs-0047
  • Status Code: SFS_NO_DUPLICATE_DETECTION
  • Hexadecimal ID: 0x7715a02f
  • Message: Duplicate detection has not been requested for this OFD.
ENC-sfs-0048
  • Status String: ENC-sfs-0048
  • Status Code: SFS_NO_SUCH_ATTRIBUTE
  • Hexadecimal ID: 0x7715a030
  • Message: Attribute by this name is not found.
ENC-sfs-0049
  • Status String: ENC-sfs-0049
  • Status Code: SFS_NO_SUCH_FIELD
  • Hexadecimal ID: 0x7715a031
  • Message: Field by this name does not exist.
ENC-sfs-0050
  • Status String: ENC-sfs-0050
  • Status Code: SFS_NO_SUCH_FILE
  • Hexadecimal ID: 0x7715a032
  • Message: File by this name does not exist.
ENC-sfs-0051
  • Status String: ENC-sfs-0051
  • Status Code: SFS_NO_SUCH_FILE_SYSTEM
  • Hexadecimal ID: 0x7715a033
  • Message: Unknown file system name.
ENC-sfs-0052
  • Status String: ENC-sfs-0052
  • Status Code: SFS_NO_SUCH_INDEX
  • Hexadecimal ID: 0x7715a034
  • Message: Index by this name does not exist.
ENC-sfs-0053
  • Status String: ENC-sfs-0053
  • Status Code: SFS_NO_SUCH_KEY_VALUE
  • Hexadecimal ID: 0x7715a035
  • Message: Cannot find a key by that value.
ENC-sfs-0054
  • Status String: ENC-sfs-0054
  • Status Code: SFS_NO_SUCH_VOLUME
  • Hexadecimal ID: 0x7715a036
  • Message: Unknown volume name.
ENC-sfs-0055
  • Status String: ENC-sfs-0055
  • Status Code: SFS_NON_TRANSACTIONAL_OFD_REQUIRED
  • Hexadecimal ID: 0x7715a037
  • Message: Operation requires non-transactional OFD.
ENC-sfs-0056
  • Status String: ENC-sfs-0056
  • Status Code: SFS_NOT_AN_ENTRY_SEQUENCED_FILE
  • Hexadecimal ID: 0x7715a038
  • Message: Operation only allowed on a Entry-Sequenced file.
ENC-sfs-0057
  • Status String: ENC-sfs-0057
  • Status Code: SFS_NOT_A_RELATIVE_FILE
  • Hexadecimal ID: 0x7715a039
  • Message: Operation only allowed on a relative file.
ENC-sfs-0058
  • Status String: ENC-sfs-0058
  • Status Code: SFS_OFD_ASSOCIATED_WITH_TRANSACTION
  • Hexadecimal ID: 0x7715a03a
  • Message: Ofd still associated with a transaction.
ENC-sfs-0059
  • Status String: ENC-sfs-0059
  • Status Code: SFS_OFD_INVALID
  • Hexadecimal ID: 0x7715a03b
  • Message: Invalid OfD.
ENC-sfs-0060
  • Status String: ENC-sfs-0060
  • Status Code: SFS_OPERATION_TIMED_OUT
  • Hexadecimal ID: 0x7715a03c
  • Message: Timeout expired before operation completed.
  • Explanation: The requested Structured File Server (SFS) operation timed out before completion. This could be caused by a long-running operation or by a conflict (for example, a transactional lock conflict) which prevents the operation from completing.
  • User Response: Increase the operation timeout for the request or resolve the conflict.
ENC-sfs-0061
  • Status String: ENC-sfs-0061
  • Status Code: SFS_PRIMARY_KEY_CANNOT_BE_ALTERED
  • Hexadecimal ID: 0x7715a03d
  • Message: Primary key value cannot be altered.
ENC-sfs-0062
  • Status String: ENC-sfs-0062
  • Status Code: SFS_SLOT_OCCUPIED
  • Hexadecimal ID: 0x7715a03e
  • Message: Record already exists at this relative slot.
ENC-sfs-0063
  • Status String: ENC-sfs-0063
  • Status Code: SFS_TRANSACTION_ABORTED
  • Hexadecimal ID: 0x7715a03f
  • Message: User transaction is aborted.
ENC-sfs-0064
  • Status String: ENC-sfs-0064
  • Status Code: SFS_UNIMPLEMENTED
  • Hexadecimal ID: 0x7715a040
  • Message: This feature is not yet implemented.
ENC-sfs-0065
  • Status String: ENC-sfs-0065
  • Status Code: SFS_USER_TRANSACTION_REQUIRED
  • Hexadecimal ID: 0x7715a041
  • Message: Operation on this OFD requires a user transaction.
ENC-sfs-0066
  • Status String: ENC-sfs-0066
  • Status Code: SFS_VOLUME_IO_ERROR
  • Hexadecimal ID: 0x7715a042
  • Message: An I/O error occurred on the volume.
ENC-sfs-0067
  • Status String: ENC-sfs-0067
  • Status Code: SFS_VOLUME_NOT_MOUNTED
  • Hexadecimal ID: 0x7715a043
  • Message: The specified volume is not mounted.
ENC-sfs-0068
  • Status String: ENC-sfs-0068
  • Status Code: SFS_VOLUME_SPACE_EXHAUSTED
  • Hexadecimal ID: 0x7715a044
  • Message: The volume is full.
ENC-sfs-0069
  • Status String: ENC-sfs-0069
  • Status Code: SFS_WRONG_TRANSACTION
  • Hexadecimal ID: 0x7715a045
  • Message: Attempt to associate an ofd with a transaction in a different family.
ENC-sfs-0070
  • Status String: ENC-sfs-0070
  • Status Code: SFS_LAST_WRITE_UNDEFINED
  • Hexadecimal ID: 0x7715a046
  • Message: Last write operation is not defined.
ENC-sfs-0071
  • Status String: ENC-sfs-0071
  • Status Code: SFS_CLIENT_MEMORY_CORRUPTION
  • Hexadecimal ID: 0x7715a047
  • Message: A client memory corruption has been detected.
ENC-sfs-0072
  • Status String: ENC-sfs-0072
  • Status Code: SFS_AREA_SPACE_EXHAUSTED
  • Hexadecimal ID: 0x7715a048
  • Message: The allocation in a file data or index area is exhausted.
ENC-sfs-0073
  • Status String: ENC-sfs-0073
  • Status Code: SFS_BAD_RECORD_SPEC
  • Hexadecimal ID: 0x7715a049
  • Message: Invalid record specification.
ENC-sfs-0074
  • Status String: ENC-sfs-0074
  • Status Code: SFS_BAD_KEY_SPEC
  • Hexadecimal ID: 0x7715a04a
  • Message: Invalid index specification.
ENC-sfs-0075
  • Status String: ENC-sfs-0075
  • Status Code: SFS_OFD_IN_AUTOCLOSE_MODE
  • Hexadecimal ID: 0x7715a04b
  • Message: This OFD has been opened in auto-close mode.
ENC-sfs-0076
  • Status String: ENC-sfs-0076
  • Status Code: SFS_COMMUNICATION_ERROR
  • Hexadecimal ID: 0x7715a04c
  • Message: A communication error occurred.
  • Explanation: A transactional RPC (TRPC) or RPC from the SFS client to the SFS server has failed. This could be caused by a wide range of environmental problems, from a transient communication error to the termination of the server process.
  • User Response: Use default trpc tracing to identify the RPC exception caught and verify the validity of the binding used for the RPC. Ensure that the client process has a valid login context and check the viability of the server using 'rpcutil ping server'.
ENC-sfs-0077
  • Status String: ENC-sfs-0077
  • Status Code: SFS_BAD_FIELD_VALUE
  • Hexadecimal ID: 0x7715a04d
  • Message: Invalid field value.
ENC-sfs-0078
  • Status String: ENC-sfs-0078
  • Status Code: SFS_INVALID_SCAN_DIRECTION
  • Hexadecimal ID: 0x7715a04e
  • Message: Invalid scan direction value.
ENC-sfs-0079
  • Status String: ENC-sfs-0079
  • Status Code: SFS_INVALID_MODIFY_OPERATION
  • Hexadecimal ID: 0x7715a04f
  • Message: Invalid modify operation request.
ENC-sfs-0080
  • Status String: ENC-sfs-0080
  • Status Code: SFS_INVALID_RSN
  • Hexadecimal ID: 0x7715a050
  • Message: The relative slot number is invalid.
ENC-sfs-0081
  • Status String: ENC-sfs-0081
  • Status Code: SFS_INCONSISTENT_OFDS
  • Hexadecimal ID: 0x7715a051
  • Message: Batch request involves inconsistent OFDs.
ENC-sfs-0082
  • Status String: ENC-sfs-0082
  • Status Code: SFS_INVALID_BATCH_OPERATION
  • Hexadecimal ID: 0x7715a052
  • Message: Invalid batch operation request.
ENC-sfs-0083
  • Status String: ENC-sfs-0083
  • Status Code: SFS_BAD_INDEX_SPEC
  • Hexadecimal ID: 0x7715a053
  • Message: Invalid index specification.
ENC-sfs-0086
  • Status String: ENC-sfs-0086
  • Status Code: SFS_FILE_HAS_ACTIVE_INDICES
  • Hexadecimal ID: 0x7715a056
  • Message: File has active indices.
ENC-sfs-0087
  • Status String: ENC-sfs-0087
  • Status Code: SFS_INDEX_ALREADY_REQUESTED
  • Hexadecimal ID: 0x7715a057
  • Message: Copy operation requested that an index be copied more than once.
ENC-sfs-0088
  • Status String: ENC-sfs-0088
  • Status Code: SFS_NOT_ALL_ACTIVE_INDICES_REBUILT
  • Hexadecimal ID: 0x7715a058
  • Message: All active indices could not be rebuilt.
ENC-sfs-0090
  • Status String: ENC-sfs-0090
  • Status Code: SFS_FILE_NOT_READ_LOCKED
  • Hexadecimal ID: 0x7715a05a
  • Message: Operation requires a read lock on the source file.
ENC-sfs-0091
  • Status String: ENC-sfs-0091
  • Status Code: SFS_OPERATION_ABORTED
  • Hexadecimal ID: 0x7715a05b
  • Message: Operation was aborted.
ENC-sfs-0092
  • Status String: ENC-sfs-0092
  • Status Code: SFS_NO_SUCH_TRANSACTION
  • Hexadecimal ID: 0x7715a05c
  • Message: Transaction could not be found.
ENC-sfs-0093
  • Status String: ENC-sfs-0093
  • Status Code: SFS_INVALID_ARGUMENT
  • Hexadecimal ID: 0x7715a05d
  • Message: An invalid argument was specified.
ENC-sfs-0095
  • Status String: ENC-sfs-0095
  • Status Code: SFS_READ_FROM_MODIFIED_FILE
  • Hexadecimal ID: 0x7715a05f
  • Message: File was modified since last read.
ENC-sfs-0096
  • Status String: ENC-sfs-0096
  • Status Code: SFS_SECURITY_NOT_IN_USE
  • Hexadecimal ID: 0x7715a060
  • Message: Security service is not in use.
ENC-sfs-0100
  • Status String: ENC-sfs-0100
  • Status Code: SFS_INVALID_TRANSACTION
  • Hexadecimal ID: 0x7715a064
  • Message: Attempt to associate ofd with an invalid transaction.
ENC-sfs-0101
  • Status String: ENC-sfs-0101
  • Status Code: SFS_OFD_TRANSACTION_ASSOCIATION_TIMED_OUT
  • Hexadecimal ID: 0x7715a065
  • Message: Procedure to associate a transaction to an ofd timed out.
ENC-sfs-0102
  • Status String: ENC-sfs-0102
  • Status Code: SFS_IE_DEVICE_ERROR
  • Hexadecimal ID: 0x7715a066
  • Message: A device error has been encountered.
ENC-sfs-0103
  • Status String: ENC-sfs-0103
  • Status Code: SFS_IE_BADLY_DELIMITED_BUFFER
  • Hexadecimal ID: 0x7715a067
  • Message: Initial and final buffer length delimiters do not match.
ENC-sfs-0104
  • Status String: ENC-sfs-0104
  • Status Code: SFS_IE_CHKPT_FILENAME_CONFLICT
  • Hexadecimal ID: 0x7715a068
  • Message: Checkpoint file by the same name exists for a different SFS file.
ENC-sfs-0105
  • Status String: ENC-sfs-0105
  • Status Code: SFS_IE_END_OF_MEDIA_ON_READ
  • Hexadecimal ID: 0x7715a069
  • Message: Next segment to read was not found on the media.
ENC-sfs-0106
  • Status String: ENC-sfs-0106
  • Status Code: SFS_IE_END_OF_MEDIA_ON_WRITE
  • Hexadecimal ID: 0x7715a06a
  • Message: The media is full.
ENC-sfs-0107
  • Status String: ENC-sfs-0107
  • Status Code: SFS_IE_ERROR_LOG_ERROR
  • Hexadecimal ID: 0x7715a06b
  • Message: Error processing the error log operations.
ENC-sfs-0108
  • Status String: ENC-sfs-0108
  • Status Code: SFS_IE_ERROR_LOG_FILENAME_CONFLICT
  • Hexadecimal ID: 0x7715a06c
  • Message: Error log by the same name exists for a different SFS file.
ENC-sfs-0109
  • Status String: ENC-sfs-0109
  • Status Code: SFS_IE_ERROR_OBTAINING_EXPORT_ID
  • Hexadecimal ID: 0x7715a06d
  • Message: Unable to obtain an export ID.
ENC-sfs-0110
  • Status String: ENC-sfs-0110
  • Status Code: SFS_IE_FILE_MODIFIED
  • Hexadecimal ID: 0x7715a06e
  • Message: Force needed to continue the import or export function.
ENC-sfs-0111
  • Status String: ENC-sfs-0111
  • Status Code: SFS_IE_OPERATION_IN_PROGRESS
  • Hexadecimal ID: 0x7715a06f
  • Message: Restart, resume or force needed to continue the import or export.
ENC-sfs-0112
  • Status String: ENC-sfs-0112
  • Status Code: SFS_IE_MEDIA_TOO_SMALL_FOR_METADATA
  • Hexadecimal ID: 0x7715a070
  • Message: Need a larger media to store metadata.
ENC-sfs-0113
  • Status String: ENC-sfs-0113
  • Status Code: SFS_IE_TRAILER_NOT_EXPORTED
  • Hexadecimal ID: 0x7715a071
  • Message: Cannot export trailer information since the media is full.
ENC-sfs-0114
  • Status String: ENC-sfs-0114
  • Status Code: SFS_IE_UNABLE_TO_OPEN_FILE
  • Hexadecimal ID: 0x7715a072
  • Message: Cannot open the SFS file.
ENC-sfs-0115
  • Status String: ENC-sfs-0115
  • Status Code: SFS_IE_UNABLE_TO_CLOSE_FILE
  • Hexadecimal ID: 0x7715a073
  • Message: Cannot close the SFS file.
ENC-sfs-0116
  • Status String: ENC-sfs-0116
  • Status Code: SFS_IE_UNABLE_TO_DESTROY_FILE
  • Hexadecimal ID: 0x7715a074
  • Message: Cannot destroy the SFS file.
ENC-sfs-0117
  • Status String: ENC-sfs-0117
  • Status Code: SFS_IE_UNABLE_TO_LOCK_FILE
  • Hexadecimal ID: 0x7715a075
  • Message: Cannot lock the SFS file.
ENC-sfs-0118
  • Status String: ENC-sfs-0118
  • Status Code: SFS_IE_UNABLE_TO_GET_INFO
  • Hexadecimal ID: 0x7715a076
  • Message: Cannot get the SFS file information.
ENC-sfs-0119
  • Status String: ENC-sfs-0119
  • Status Code: SFS_IE_UNABLE_TO_GET_ATTRIBUTES
  • Hexadecimal ID: 0x7715a077
  • Message: Cannot get the SFS file attributes.
ENC-sfs-0120
  • Status String: ENC-sfs-0120
  • Status Code: SFS_IE_UNABLE_TO_SET_ATTRIBUTE
  • Hexadecimal ID: 0x7715a078
  • Message: Cannot set the SFS file attributes.
ENC-sfs-0121
  • Status String: ENC-sfs-0121
  • Status Code: SFS_IE_UNABLE_TO_SET_RANGE_ON_SFS_FILE
  • Hexadecimal ID: 0x7715a079
  • Message: Cannot set the range on the SFS file.
ENC-sfs-0122
  • Status String: ENC-sfs-0122
  • Status Code: SFS_IE_UNABLE_TO_READ_FILE
  • Hexadecimal ID: 0x7715a07a
  • Message: Cannot read records from the SFS file.
ENC-sfs-0123
  • Status String: ENC-sfs-0123
  • Status Code: SFS_IE_UNABLE_TO_EXTRACT_KEY
  • Hexadecimal ID: 0x7715a07b
  • Message: Cannot extract a key from SFS file.
ENC-sfs-0124
  • Status String: ENC-sfs-0124
  • Status Code: SFS_IE_UNABLE_TO_COMPARE_KEYS
  • Hexadecimal ID: 0x7715a07c
  • Message: Cannot compare keys from the SFS file.
ENC-sfs-0125
  • Status String: ENC-sfs-0125
  • Status Code: SFS_IE_UNABLE_TO_CREATE_FILE
  • Hexadecimal ID: 0x7715a07d
  • Message: Cannot create the SFS file.
ENC-sfs-0126
  • Status String: ENC-sfs-0126
  • Status Code: SFS_IE_UNABLE_TO_INSERT_INTO_FILE
  • Hexadecimal ID: 0x7715a07e
  • Message: Cannot insert records into the SFS file.
ENC-sfs-0127
  • Status String: ENC-sfs-0127
  • Status Code: SFS_IE_UNABLE_TO_GET_SECONDARY_INDEX_INFO
  • Hexadecimal ID: 0x7715a07f
  • Message: Cannot get the secondary index information.
ENC-sfs-0128
  • Status String: ENC-sfs-0128
  • Status Code: SFS_IE_UNABLE_TO_ADD_SECONDARY_INDEX
  • Hexadecimal ID: 0x7715a080
  • Message: Cannot add a secondary index.
ENC-sfs-0129
  • Status String: ENC-sfs-0129
  • Status Code: SFS_IE_UNABLE_TO_GET_ESN
  • Hexadecimal ID: 0x7715a081
  • Message: Cannot get the ESN for a record.
ENC-sfs-0130
  • Status String: ENC-sfs-0130
  • Status Code: SFS_IE_UNABLE_TO_GET_RSN
  • Hexadecimal ID: 0x7715a082
  • Message: Cannot get the RSN for a record.
ENC-sfs-0131
  • Status String: ENC-sfs-0131
  • Status Code: SFS_IE_UNABLE_TO_FIND_RSN_FIELD
  • Hexadecimal ID: 0x7715a083
  • Message: Cannot find the offset within a record to the RSN field.
ENC-sfs-0132
  • Status String: ENC-sfs-0132
  • Status Code: SFS_IE_UNABLE_TO_GET_SFS_DUPLICATE
  • Hexadecimal ID: 0x7715a084
  • Message: Call to sfs_IsDuplicate failed.
ENC-sfs-0133
  • Status String: ENC-sfs-0133
  • Status Code: SFS_IE_UNABLE_TO_CREATE_CHKPT_FILE
  • Hexadecimal ID: 0x7715a085
  • Message: Cannot create checkpoint file.
ENC-sfs-0134
  • Status String: ENC-sfs-0134
  • Status Code: SFS_IE_UNABLE_TO_OPEN_CHKPT_FILE
  • Hexadecimal ID: 0x7715a086
  • Message: Cannot open checkpoint file.
ENC-sfs-0135
  • Status String: ENC-sfs-0135
  • Status Code: SFS_IE_UNABLE_TO_INSERT_CHKPT
  • Hexadecimal ID: 0x7715a087
  • Message: Cannot insert checkpoints.
ENC-sfs-0136
  • Status String: ENC-sfs-0136
  • Status Code: SFS_IE_UNABLE_TO_DELETE_CHKPT
  • Hexadecimal ID: 0x7715a088
  • Message: Cannot delete checkpoints.
ENC-sfs-0137
  • Status String: ENC-sfs-0137
  • Status Code: SFS_IE_UNABLE_TO_UPDATE_CHKPT
  • Hexadecimal ID: 0x7715a089
  • Message: Cannot update checkpoints.
ENC-sfs-0138
  • Status String: ENC-sfs-0138
  • Status Code: SFS_IE_UNABLE_TO_SET_RANGE_ON_CHKPT_FILE
  • Hexadecimal ID: 0x7715a08a
  • Message: Cannot set range on checkpoint file.
ENC-sfs-0139
  • Status String: ENC-sfs-0139
  • Status Code: SFS_IE_UNABLE_TO_READ_CHKPT_FILE
  • Hexadecimal ID: 0x7715a08b
  • Message: Cannot read checkpoints.
ENC-sfs-0140
  • Status String: ENC-sfs-0140
  • Status Code: SFS_IE_UNABLE_TO_CLOSE_CHKPT_FILE
  • Hexadecimal ID: 0x7715a08c
  • Message: Cannot close checkpoint file.
ENC-sfs-0141
  • Status String: ENC-sfs-0141
  • Status Code: SFS_IE_UNABLE_TO_DESTROY_CHKPT_FILE
  • Hexadecimal ID: 0x7715a08d
  • Message: Cannot destroy checkpoint file.
ENC-sfs-0142
  • Status String: ENC-sfs-0142
  • Status Code: SFS_IE_VERSION_UNKNOWN
  • Hexadecimal ID: 0x7715a08e
  • Message: Version number in export set is not recognized.
ENC-sfs-0143
  • Status String: ENC-sfs-0143
  • Status Code: SFS_IE_IMPROPER_EXPORT_FORMAT
  • Hexadecimal ID: 0x7715a08f
  • Message: Section of export set unknown or not in correct order.
ENC-sfs-0144
  • Status String: ENC-sfs-0144
  • Status Code: SFS_IE_ERROR_IN_TRAILER
  • Hexadecimal ID: 0x7715a090
  • Message: Unable to read trailer section.
ENC-sfs-0145
  • Status String: ENC-sfs-0145
  • Status Code: SFS_IE_UNABLE_TO_DETERMINE_DATA_REP
  • Hexadecimal ID: 0x7715a091
  • Message: Unable to determine the byte order of integers.
ENC-sfs-0146
  • Status String: ENC-sfs-0146
  • Status Code: SFS_IE_UNABLE_TO_POSITION_DEVICE
  • Hexadecimal ID: 0x7715a092
  • Message: Unable to find the device position.
ENC-sfs-0147
  • Status String: ENC-sfs-0147
  • Status Code: SFS_IE_UNABLE_TO_OPEN_DEVICE
  • Hexadecimal ID: 0x7715a093
  • Message: Unable to open the device or file.
ENC-sfs-0148
  • Status String: ENC-sfs-0148
  • Status Code: SFS_IE_UNABLE_TO_CLOSE_DEVICE
  • Hexadecimal ID: 0x7715a094
  • Message: Unable to close the device or file.
ENC-sfs-0149
  • Status String: ENC-sfs-0149
  • Status Code: SFS_IE_INVALID_SEGMENT_HEADER
  • Hexadecimal ID: 0x7715a095
  • Message: Invalid field or value in segment header.
ENC-sfs-0150
  • Status String: ENC-sfs-0150
  • Status Code: SFS_INSERT_CACHE_NOT_FLUSHED
  • Hexadecimal ID: 0x7715a096
  • Message: Failed to flush the contents of the insert cache.
ENC-sfs-0151
  • Status String: ENC-sfs-0151
  • Status Code: SFS_FILE_NOT_WRITE_LOCKED
  • Hexadecimal ID: 0x7715a097
  • Message: Operation requires a write lock on the source file.
ENC-sfs-0152
  • Status String: ENC-sfs-0152
  • Status Code: SFS_READ_CACHE_NOT_FLUSHED
  • Hexadecimal ID: 0x7715a098
  • Message: Failed to flush the contents of the read cache.
ENC-sfs-0153
  • Status String: ENC-sfs-0153
  • Status Code: SFS_OPERATIONAL_FORCE_NOT_ALLOWED
  • Hexadecimal ID: 0x7715a099
  • Message: Incompatible operation with ofd's operational force.
ENC-sfs-0154
  • Status String: ENC-sfs-0154
  • Status Code: SFS_DUPLICATE_DETECTION_NOT_ALLOWED
  • Hexadecimal ID: 0x7715a09a
  • Message: Incompatible operation with ofd's duplicate detection.
ENC-sfs-0155
  • Status String: ENC-sfs-0155
  • Status Code: SFS_FUNCTION_NOT_SUPPORTED
  • Hexadecimal ID: 0x7715a09b
  • Message: Function not supported by server.
ENC-sfs-0157
  • Status String: ENC-sfs-0157
  • Status Code: SFS_MAX_BATCH_CALLS_EXCEEDED
  • Hexadecimal ID: 0x7715a09d
  • Message: Maximum number of batch calls exceeded.
ENC-sfs-0158
  • Status String: ENC-sfs-0158
  • Status Code: SFS_BAD_ATTRIBUTE_VALUE
  • Hexadecimal ID: 0x7715a09e
  • Message: Invalid attribute value.
ENC-sfs-0159
  • Status String: ENC-sfs-0159
  • Status Code: SFS_TRANSACTIONAL_OFD_REQUIRED
  • Hexadecimal ID: 0x7715a09f
  • Message: Operation requires a transactional OFD.
ENC-sfs-0160
  • Status String: ENC-sfs-0160
  • Status Code: SFS_FAILED_OPERATIONS_IN_INSERT_CACHE
  • Hexadecimal ID: 0x7715a0a0
  • Message: One or more records could not be flushed in insert cache
ENC-sfs-0161
  • Status String: ENC-sfs-0161
  • Status Code: SFS_FAILED_OPERATIONS_IN_READ_CACHE
  • Hexadecimal ID: 0x7715a0a1
  • Message: One or more records could not be flushed in read cache
ENC-sfs-0162
  • Status String: ENC-sfs-0162
  • Status Code: SFS_CLIENT_SIDE_CACHING_NOT_ENABLED
  • Hexadecimal ID: 0x7715a0a2
  • Message: Client side caching is not enabled.
ENC-sfs-0163
  • Status String: ENC-sfs-0163
  • Status Code: SFS_UNABLE_TO_REGISTER_INTERFACE
  • Hexadecimal ID: 0x7715a0a3
  • Message: Failed to register an RPC interface.
ENC-sfs-0164
  • Status String: ENC-sfs-0164
  • Status Code: SFS_VOLUMES_NOT_RECOVERED
  • Hexadecimal ID: 0x7715a0a4
  • Message: Logical data volumes are not recovered.
ENC-sfs-0165
  • Status String: ENC-sfs-0165
  • Status Code: SFS_BUFFER_POOL_EXHAUSTED
  • Hexadecimal ID: 0x7715a0a5
  • Message: No more buffers available in pool
ENC-sfs-0166
  • Status String: ENC-sfs-0166
  • Status Code: SFS_UNKNOWN_INTEGER_FORMAT
  • Hexadecimal ID: 0x7715a0a6
  • Message: Unable to byte swap integers according to format received
ENC-sfs-0167
  • Status String: ENC-sfs-0167
  • Status Code: SFS_ST_ALREADY_ACTIVE
  • Hexadecimal ID: 0x7715a0a7
  • Message: A server side transaction is already active for this client.
ENC-sfs-0168
  • Status String: ENC-sfs-0168
  • Status Code: SFS_ST_NOT_ACTIVE
  • Hexadecimal ID: 0x7715a0a8
  • Message: No server side transaction is active for this client.
ENC-sfs-0169
  • Status String: ENC-sfs-0169
  • Status Code: SFS_ST_NOT_SUPPORTED
  • Hexadecimal ID: 0x7715a0a9
  • Message: SFS server does not support server side transactions.
ENC-tht-0001
  • Status String: ENC-tht-0001
  • Status Code: THREADTID_RREQ_FAILED
  • Hexadecimal ID: 0x777eb001
  • Message: threadTid_CallbackAfterReceivingRequest failed
ENC-tmx-0001
  • Status String: ENC-tmx-0001
  • Status Code: TMXA_ALREADY_INITIALIZED
  • Hexadecimal ID: 0x778b7001
  • Message: TM-XA has already been initialized using the tmxa_Init function.
ENC-tmx-0002
  • Status String: ENC-tmx-0002
  • Status Code: TMXA_DID_NOT_MIGRATE
  • Hexadecimal ID: 0x778b7002
  • Message: A migration request was not honored by a resource manager instance that claimed it supported migration.
ENC-tmx-0003
  • Status String: ENC-tmx-0003
  • Status Code: TMXA_EXISTING_ASSOCIATION
  • Hexadecimal ID: 0x778b7003
  • Message: An association has already been made in this thread.
ENC-tmx-0004
  • Status String: ENC-tmx-0004
  • Status Code: TMXA_INTERNAL_ERROR
  • Hexadecimal ID: 0x778b7004
  • Message: The TM-XA Service found some internal inconsistency or memory allocation problem it could not resolve.
ENC-tmx-0005
  • Status String: ENC-tmx-0005
  • Status Code: TMXA_INVALID_PARAM
  • Hexadecimal ID: 0x778b7005
  • Message: One of the parameters has an invalid value.
ENC-tmx-0006
  • Status String: ENC-tmx-0006
  • Status Code: TMXA_NO_EXISTING_ASSOCIATION
  • Hexadecimal ID: 0x778b7006
  • Message: A request to remove an association was made when no association existed.
ENC-tmx-0007
  • Status String: ENC-tmx-0007
  • Status Code: TMXA_NO_MORE_MEMORY
  • Hexadecimal ID: 0x778b7007
  • Message: No memory available.
ENC-tmx-0008
  • Status String: ENC-tmx-0008
  • Status Code: TMXA_NOT_INITIALIZED
  • Hexadecimal ID: 0x778b7008
  • Message: TM-XA has not yet been initialized using the tmxa_Init function.
ENC-tmx-0009
  • Status String: ENC-tmx-0009
  • Status Code: TMXA_RESUMER_NOT_SUSPENDER
  • Hexadecimal ID: 0x778b7009
  • Message: An attempt is made to resume an association that was not migrated and was not suspended in the current thread.
ENC-tmx-0010
  • Status String: ENC-tmx-0010
  • Status Code: TMXA_TOO_MANY_INSTANCES_REGISTERED
  • Hexadecimal ID: 0x778b700a
  • Message: Too many resource manager instances have been registered.
ENC-tmx-0011
  • Status String: ENC-tmx-0011
  • Status Code: TMXA_TOO_MANY_TIDS
  • Hexadecimal ID: 0x778b700b
  • Message: Too many transactions have been associated with resource managers.
ENC-tmx-0012
  • Status String: ENC-tmx-0012
  • Status Code: TMXA_TRAN_ERROR
  • Hexadecimal ID: 0x778b700c
  • Message: TRAN returned an unrecoverable error.
ENC-tmx-0013
  • Status String: ENC-tmx-0013
  • Status Code: TMXA_TRUNCATED_XID
  • Hexadecimal ID: 0x778b700d
  • Message: The TM-XA Service generated an XID value greater than 128 bytes. Recovery of the related transaction is compromised.
ENC-tmx-0014
  • Status String: ENC-tmx-0014
  • Status Code: TMXA_XACLOSE_ERROR
  • Hexadecimal ID: 0x778b700e
  • Message: An XA error was encountered while closing a resource manager instance.
ENC-tmx-0015
  • Status String: ENC-tmx-0015
  • Status Code: TMXA_XACOMMIT_ERROR
  • Hexadecimal ID: 0x778b700f
  • Message: An XA error was encountered during an xa_commit call.
ENC-tmx-0016
  • Status String: ENC-tmx-0016
  • Status Code: TMXA_XAEND_ERROR
  • Hexadecimal ID: 0x778b7010
  • Message: An XA error was encountered during an xa_end call.
ENC-tmx-0017
  • Status String: ENC-tmx-0017
  • Status Code: TMXA_XAFORGET_ERROR
  • Hexadecimal ID: 0x778b7011
  • Message: An XA error was encountered during an xa_forget call.
ENC-tmx-0018
  • Status String: ENC-tmx-0018
  • Status Code: TMXA_XAOPEN_ERROR
  • Hexadecimal ID: 0x778b7012
  • Message: An XA error was encountered while opening a resource manager instance.
ENC-tmx-0019
  • Status String: ENC-tmx-0019
  • Status Code: TMXA_XAPREPARE_ERROR
  • Hexadecimal ID: 0x778b7013
  • Message: An XA error was encountered during an xa_prepare call.
ENC-tmx-0020
  • Status String: ENC-tmx-0020
  • Status Code: TMXA_XAROLLBACK_ERROR
  • Hexadecimal ID: 0x778b7014
  • Message: An XA error was encountered during an xa_rollback call.
ENC-tmx-0021
  • Status String: ENC-tmx-0021
  • Status Code: TMXA_XASTART_ERROR
  • Hexadecimal ID: 0x778b7015
  • Message: An xa_start call was not successful.
ENC-tmx-0022
  • Status String: ENC-tmx-0022
  • Status Code: TMXA_XID_ALREADY_CHOSEN
  • Hexadecimal ID: 0x778b7016
  • Message: The procedure specifies a model for a transaction that already has an XID assigned to it.
ENC-tmx-0023
  • Status String: ENC-tmx-0023
  • Status Code: TMXA_RMI_IS_BUSY
  • Hexadecimal ID: 0x778b7017
  • Message: The specified RMI is busy and cannot be disabled.
ENC-tmx-0024
  • Status String: ENC-tmx-0024
  • Status Code: TMXA_UNKNOWN_RMI
  • Hexadecimal ID: 0x778b7018
  • Message: The specified RMID is illegal.
ENC-tmx-0025
  • Status String: ENC-tmx-0025
  • Status Code: TMXA_RMI_IS_DISABLED
  • Hexadecimal ID: 0x778b7019
  • Message: Tried to manually flow XA calls to a disabled RMI.
ENC-tmx-0026
  • Status String: ENC-tmx-0026
  • Status Code: TMXA_RMI_IS_BEING_DISABLED
  • Hexadecimal ID: 0x778b701a
  • Message: Tried to disable a RMI that is in the middle of being disabled.
ENC-tmx-0027
  • Status String: ENC-tmx-0027
  • Status Code: TMXA_ALL_RMIS_ARE_DISABLED
  • Hexadecimal ID: 0x778b701b
  • Message: Tried to manually flow XA calls when all RMIs are disabled.
ENC-tra-0001
  • Status String: ENC-tra-0001
  • Status Code: TRAN_NOT_SUPPORTED
  • Hexadecimal ID: 0x77968001
  • Message: The requested function is not supported in this implementation.
ENC-tra-0010
  • Status String: ENC-tra-0010
  • Status Code: TRAN_APPL_INITIALIZED
  • Hexadecimal ID: 0x7796800a
  • Message: The application has already called tran_Init.
ENC-tra-0011
  • Status String: ENC-tra-0011
  • Status Code: TRAN_APPL_NOT_INITIALIZED
  • Hexadecimal ID: 0x7796800b
  • Message: The application has not called tran_Init.
ENC-tra-0012
  • Status String: ENC-tra-0012
  • Status Code: TRAN_APPL_READY
  • Hexadecimal ID: 0x7796800c
  • Message: The application has already called tran_Ready.
ENC-tra-0013
  • Status String: ENC-tra-0013
  • Status Code: TRAN_APPL_NOT_READY
  • Hexadecimal ID: 0x7796800d
  • Message: The application has not called tran_Ready.
ENC-tra-0014
  • Status String: ENC-tra-0014
  • Status Code: TRAN_COMM_INITIALIZED
  • Hexadecimal ID: 0x7796800e
  • Message: The communication service has already called tran_CommInit.
ENC-tra-0015
  • Status String: ENC-tra-0015
  • Status Code: TRAN_COMM_NOT_INITIALIZED
  • Hexadecimal ID: 0x7796800f
  • Message: The communication service has not called tran_CommInit.
ENC-tra-0016
  • Status String: ENC-tra-0016
  • Status Code: TRAN_ENVIRONMENT_INCOMPLETE
  • Hexadecimal ID: 0x77968010
  • Message: The application has not established one or more of the environment functions.
ENC-tra-0017
  • Status String: ENC-tra-0017
  • Status Code: TRAN_REC_INITIALIZED
  • Hexadecimal ID: 0x77968011
  • Message: The recovery service has already called tran_RecInit.
ENC-tra-0018
  • Status String: ENC-tra-0018
  • Status Code: TRAN_REC_NOT_INITIALIZED
  • Hexadecimal ID: 0x77968012
  • Message: The recovery service has not called tran_RecInit.
ENC-tra-0019
  • Status String: ENC-tra-0019
  • Status Code: TRAN_INVALID_SERVICE
  • Hexadecimal ID: 0x77968013
  • Message: The service identifier does not refer to a valid communication or recovery service.
ENC-tra-0030
  • Status String: ENC-tra-0030
  • Status Code: TRAN_NESTING_DISABLED
  • Hexadecimal ID: 0x7796801e
  • Message: The application disabled nested transactions when it called tran_Init.
ENC-tra-0031
  • Status String: ENC-tra-0031
  • Status Code: TRAN_NESTING_NOT_SUPPORTED
  • Hexadecimal ID: 0x7796801f
  • Message: This version of the Transaction Service does not support nested transactions.
ENC-tra-0050
  • Status String: ENC-tra-0050
  • Status Code: TRAN_INTERNAL_ERROR
  • Hexadecimal ID: 0x77968032
  • Message: The transaction service has encountered an internal error.
ENC-tra-0070
  • Status String: ENC-tra-0070
  • Status Code: TRAN_INVALID_MESSAGE
  • Hexadecimal ID: 0x77968046
  • Message: The message cannot be interpreted.
ENC-tra-0071
  • Status String: ENC-tra-0071
  • Status Code: TRAN_INVALID_RECORD
  • Hexadecimal ID: 0x77968047
  • Message: The log record cannot be interpreted.
ENC-tra-0100
  • Status String: ENC-tra-0100
  • Status Code: TRAN_TID_NOT_VALID
  • Hexadecimal ID: 0x77968064
  • Message: The transaction identifier that was passed as an argument did not meet the requirements for the function.
ENC-tra-0120
  • Status String: ENC-tra-0120
  • Status Code: TRAN_NOT_BEGINNER
  • Hexadecimal ID: 0x77968078
  • Message: This application did not begin the transaction.
ENC-tra-0130
  • Status String: ENC-tra-0130
  • Status Code: TRAN_TID_ACTIVE_CHILDREN
  • Hexadecimal ID: 0x77968082
  • Message: The transaction has children that have neither committed nor aborted.
ENC-tra-0131
  • Status String: ENC-tra-0131
  • Status Code: TRAN_TID_OUTSTANDING_REQUESTS
  • Hexadecimal ID: 0x77968083
  • Message: The transaction has sent requests for which replies have not yet been received.
ENC-tra-0140
  • Status String: ENC-tra-0140
  • Status Code: TRAN_COORDINATOR_NOT_SET
  • Hexadecimal ID: 0x7796808c
  • Message: No coordinator has been specified yet.
ENC-tra-0141
  • Status String: ENC-tra-0141
  • Status Code: TRAN_COORDINATOR_CONFLICT
  • Hexadecimal ID: 0x7796808d
  • Message: Some other application insisted on a different coordinator.
ENC-tra-0150
  • Status String: ENC-tra-0150
  • Status Code: TRAN_PROPERTY_KEY_NOT_FOUND
  • Hexadecimal ID: 0x77968096
  • Message: No properties with the specified key were found.
ENC-tra-0151
  • Status String: ENC-tra-0151
  • Status Code: TRAN_PROPERTY_KEY_RESERVED
  • Hexadecimal ID: 0x77968097
  • Message: The property key is reserved for use by the transaction service.
ENC-tra-0160
  • Status String: ENC-tra-0160
  • Status Code: TRAN_TRANSACTION_ABORTED
  • Hexadecimal ID: 0x779680a0
  • Message: The message refers to a transaction that has been aborted.
ENC-tra-0170
  • Status String: ENC-tra-0170
  • Status Code: TRAN_SECURITY_KEY_ALREADY_SET
  • Hexadecimal ID: 0x779680aa
  • Message: A security key has already been associated with the transaction.
ENC-trc-0001
  • Status String: ENC-trc-0001
  • Status Code: TC_NOT_INIT
  • Hexadecimal ID: 0x7796a001
  • Message: Transactional-C was not initialized.
ENC-trc-0002
  • Status String: ENC-trc-0002
  • Status Code: TC_ALREADY_INIT
  • Hexadecimal ID: 0x7796a002
  • Message: Transactional-C was already initialized.
ENC-trc-0003
  • Status String: ENC-trc-0003
  • Status Code: TC_ILLEGAL_SUSPEND
  • Hexadecimal ID: 0x7796a003
  • Message: Illegal use of the suspend clause.
ENC-trc-0004
  • Status String: ENC-trc-0004
  • Status Code: TC_ILLEGAL_SUSPEND_ARG
  • Hexadecimal ID: 0x7796a004
  • Message: The tran_tid_t pointer passed as an argument to the suspend clause was NULL.
ENC-trc-0005
  • Status String: ENC-trc-0005
  • Status Code: TC_ILLEGAL_RESUME
  • Hexadecimal ID: 0x7796a005
  • Message: The resumeTran statement was used in an illegal context (e.g. in a concurrent statement).
ENC-trc-0006
  • Status String: ENC-trc-0006
  • Status Code: TC_ILLEGAL_RESUME_ARG
  • Hexadecimal ID: 0x7796a006
  • Message: The tran_tid_t argument passed to the resumeTran statement does not belong to a suspended transaction.
ENC-trc-0007
  • Status String: ENC-trc-0007
  • Status Code: TC_ILLEGAL_SUBTRAN
  • Hexadecimal ID: 0x7796a007
  • Message: The subTran clause was used outside a concurrent or cofor statement.
ENC-trc-0008
  • Status String: ENC-trc-0008
  • Status Code: TC_ILLEGAL_SUBTHREAD
  • Hexadecimal ID: 0x7796a008
  • Message: The subThread clause was used outside a concurrent or cofor statement.
ENC-trc-0009
  • Status String: ENC-trc-0009
  • Status Code: TC_ILLEGAL_TRAN
  • Hexadecimal ID: 0x7796a009
  • Message: The transaction statement was executed within a concurrent or cofor statement.
ENC-trc-0010
  • Status String: ENC-trc-0010
  • Status Code: TC_ILLEGAL_TOPLEVEL
  • Hexadecimal ID: 0x7796a00a
  • Message: The topLevel statement was executed within a concurrent or cofor statement.
ENC-trc-0011
  • Status String: ENC-trc-0011
  • Status Code: TC_ILLEGAL_CATCH
  • Hexadecimal ID: 0x7796a00b
  • Message: The catchAbort statement was executed within a concurrent or cofor statement.
ENC-trc-0012
  • Status String: ENC-trc-0012
  • Status Code: TC_ILLEGAL_ABORT
  • Hexadecimal ID: 0x7796a00c
  • Message: The abort call was made outside the scope of a transaction.
ENC-trc-0013
  • Status String: ENC-trc-0013
  • Status Code: TC_ILLEGAL_CONCURRENT
  • Hexadecimal ID: 0x7796a00d
  • Message: The concurrent or cofor statement was executed within a concurrent or cofor statement.
ENC-trc-0014
  • Status String: ENC-trc-0014
  • Status Code: TC_ILLEGAL_CONCTHREAD
  • Hexadecimal ID: 0x7796a00e
  • Message: The concThread statement was executed within a concurrent or cofor statement.
ENC-trc-0015
  • Status String: ENC-trc-0015
  • Status Code: TC_ILLEGAL_CALLBACK
  • Hexadecimal ID: 0x7796a00f
  • Message: An attempt was made to register a transaction service callback outside the scope of a transaction.
ENC-trc-0016
  • Status String: ENC-trc-0016
  • Status Code: TC_ILLEGAL_COMPLETED_TID
  • Hexadecimal ID: 0x7796a010
  • Message: The getCompletedTid function was called outside commit or abort clause.
ENC-trc-0017
  • Status String: ENC-trc-0017
  • Status Code: TC_ILLEGAL_CONTAINING_TID
  • Hexadecimal ID: 0x7796a011
  • Message: The getContainingTid function called outside the scope of a transaction.
ENC-trc-0018
  • Status String: ENC-trc-0018
  • Status Code: TC_ILLEGAL_MUTEX_TERMINATE
  • Hexadecimal ID: 0x7796a012
  • Message: The tranMutexTerminate function was called on an uninitialized tranMutex_t.
ENC-trc-0019
  • Status String: ENC-trc-0019
  • Status Code: TC_ILLEGAL_MUTEX_LOCK
  • Hexadecimal ID: 0x7796a013
  • Message: The tranMutexLock function was called on an uninitialized tranMutex_t.
ENC-trc-0020
  • Status String: ENC-trc-0020
  • Status Code: TC_ILLEGAL_MUTEX_UNLOCK
  • Hexadecimal ID: 0x7796a014
  • Message: The tranMutexUnlock function was called on an uninitialized, or unlocked, tranMutex_t.
ENC-trc-0021
  • Status String: ENC-trc-0021
  • Status Code: TC_ILLEGAL_WATCHDOG
  • Hexadecimal ID: 0x7796a015
  • Message: Attempt to set a watch on TRAN_TID_NULL.
ENC-trc-0022
  • Status String: ENC-trc-0022
  • Status Code: TC_ILLEGAL_MEMORY_ALLOC
  • Hexadecimal ID: 0x7796a016
  • Message: Call to tranMemAlloc made with either a size of zero or on behalf of a non-existent transaction.
ENC-trc-0023
  • Status String: ENC-trc-0023
  • Status Code: TC_ILLEGAL_MEMORY_FREE
  • Hexadecimal ID: 0x7796a017
  • Message: Call to tranMemFree with a NULL or invalid pointer.
ENC-trc-0024
  • Status String: ENC-trc-0024
  • Status Code: TC_ILLEGAL_RPC
  • Hexadecimal ID: 0x7796a018
  • Message: Transactional RPC made on behalf of non-existent transaction.
ENC-trc-0025
  • Status String: ENC-trc-0025
  • Status Code: TC_ILLEGAL_ABORT_REASON
  • Hexadecimal ID: 0x7796a019
  • Message: The abortReason function was called outside the scope of an onAbort clause.
ENC-trc-0026
  • Status String: ENC-trc-0026
  • Status Code: TC_ILLEGAL_ABORT_NAME
  • Hexadecimal ID: 0x7796a01a
  • Message: The abortModuleName function was called outside the scope of an onAbort clause.
ENC-trc-0027
  • Status String: ENC-trc-0027
  • Status Code: TC_ILLEGAL_ABORT_FUNCTION
  • Hexadecimal ID: 0x7796a01b
  • Message: The abortFunctionName function was called outside the scope of an onAbort clause.
ENC-trc-0028
  • Status String: ENC-trc-0028
  • Status Code: TC_ILLEGAL_LAZY
  • Hexadecimal ID: 0x7796a01c
  • Message: The lazyTran statement was executed before the recovery service was initialized.
ENC-trc-0029
  • Status String: ENC-trc-0029
  • Status Code: TC_INIT_CALLBACK_FAILED
  • Hexadecimal ID: 0x7796a01d
  • Message: An application initialization callback returned FALSE.
ENC-trc-0030
  • Status String: ENC-trc-0030
  • Status Code: TC_TERM_CALLBACK_FAILED
  • Hexadecimal ID: 0x7796a01e
  • Message: An application termination callback returned FALSE.
ENC-trc-0031
  • Status String: ENC-trc-0031
  • Status Code: TC_MALLOC_ERROR
  • Hexadecimal ID: 0x7796a01f
  • Message: Internal Transactional-C error -- vital memory allocation failed.
ENC-trc-0032
  • Status String: ENC-trc-0032
  • Status Code: TC_ILLEGAL_LOCK
  • Hexadecimal ID: 0x7796a020
  • Message: A call to obtain a lock was made outside the scope of a transaction.
ENC-trc-0033
  • Status String: ENC-trc-0033
  • Status Code: TC_ILLEGAL_UNLOCK
  • Hexadecimal ID: 0x7796a021
  • Message: A call to release a lock was made outside the scope of a transaction.
ENC-trc-0034
  • Status String: ENC-trc-0034
  • Status Code: TC_ILLEGAL_CHANGEMODE
  • Hexadecimal ID: 0x7796a022
  • Message: A call to change a lock mode was made outside the scope of a transaction.
ENC-trc-0035
  • Status String: ENC-trc-0035
  • Status Code: TC_ILLEGAL_CALL
  • Hexadecimal ID: 0x7796a023
  • Message: A Transactional-C construct was executed in non-Tran-C thread.
ENC-trc-0036
  • Status String: ENC-trc-0036
  • Status Code: TC_INTERNAL_ERROR
  • Hexadecimal ID: 0x7796a024
  • Message: Internal Transactional-C error.
ENC-trc-0037
  • Status String: ENC-trc-0037
  • Status Code: TC_DEFAULT_ERROR
  • Hexadecimal ID: 0x7796a025
  • Message: Unknown error
ENC-trc-0038
  • Status String: ENC-trc-0038
  • Status Code: TC_ILLEGAL_ABORT_CODE
  • Hexadecimal ID: 0x7796a026
  • Message: The abortCode function was called outside the scope of an onAbort clause.
ENC-trc-0039
  • Status String: ENC-trc-0039
  • Status Code: TC_ILLEGAL_ABORT_FORMAT
  • Hexadecimal ID: 0x7796a027
  • Message: The abortFormat function was called outside the scope of an onAbort clause.
ENC-trc-0040
  • Status String: ENC-trc-0040
  • Status Code: TC_ILLEGAL_ABORT_FORMAT_UUID
  • Hexadecimal ID: 0x7796a028
  • Message: The abort format was not a valid uuid.
ENC-trc-0041
  • Status String: ENC-trc-0041
  • Status Code: TC_ILLEGAL_ABORT_DATA
  • Hexadecimal ID: 0x7796a029
  • Message: The getAbortData function was called outside the scope of an onAbort clause.
ENC-trc-0042
  • Status String: ENC-trc-0042
  • Status Code: TC_ILLEGAL_WRAP
  • Hexadecimal ID: 0x7796a02a
  • Message: The wrapEachCall statement was executed within a concurrent or cofor statement.
ENC-trc-0043
  • Status String: ENC-trc-0043
  • Status Code: TC_ILLEGAL_COMM_ERROR
  • Hexadecimal ID: 0x7796a02b
  • Message: The commError function was called outside the scope of an onAbort clause.
ENC-trc-0044
  • Status String: ENC-trc-0044
  • Status Code: TC_ILLEGAL_MARK_LAZY
  • Hexadecimal ID: 0x7796a02c
  • Message: The markTranLazy statement was executed in a non-toplevel transaction or outside the scope of any transaction.
ENC-trf-0001
  • Status String: ENC-trf-0001
  • Status Code: TRACE_NO_ABORT_DATA
  • Hexadecimal ID: 0x7796d001
  • Message: No trace buffer was found in the abort data.
ENC-trf-0002
  • Status String: ENC-trf-0002
  • Status Code: TRACE_NO_FORMAT_FOUND
  • Hexadecimal ID: 0x7796d002
  • Message: No format was found for the trace event.
ENC-trf-0003
  • Status String: ENC-trf-0003
  • Status Code: TRACE_INVALID_INDEX
  • Hexadecimal ID: 0x7796d003
  • Message: The requested parameter is not in the trace buffer.
ENC-trf-0004
  • Status String: ENC-trf-0004
  • Status Code: TRACE_NO_MEMORY
  • Hexadecimal ID: 0x7796d004
  • Message: Insufficient memory is available to process the request.
ENC-trf-0005
  • Status String: ENC-trf-0005
  • Status Code: TRACE_BAD_THREAD
  • Hexadecimal ID: 0x7796d005
  • Message: No information is available for the requested thread.
ENC-trp-0001
  • Status String: ENC-trp-0001
  • Status Code: TRPC_ASYNC_RPC_FAILED
  • Hexadecimal ID: 0x77977001
  • Message: UpcallCommSend fails
ENC-trp-0002
  • Status String: ENC-trp-0002
  • Status Code: TRPC_NULL_APPLID
  • Hexadecimal ID: 0x77977002
  • Message: a null application id was provided
ENC-trp-0003
  • Status String: ENC-trp-0003
  • Status Code: TRPC_NULL_HANDLE
  • Hexadecimal ID: 0x77977003
  • Message: a null handle was used
ENC-trp-0004
  • Status String: ENC-trp-0004
  • Status Code: TRPC_NO_HANDLE
  • Hexadecimal ID: 0x77977004
  • Message: could not find handle in cache
ENC-trp-0006
  • Status String: ENC-trp-0006
  • Status Code: TRPC_MULTIPLE_REGISTRATION
  • Hexadecimal ID: 0x77977006
  • Message: function has been multiply registered
ENC-trp-0007
  • Status String: ENC-trp-0007
  • Status Code: TRPC_INVALID_ADDR_STRING
  • Hexadecimal ID: 0x77977007
  • Message: invalid application string has been used
ENC-trp-0008
  • Status String: ENC-trp-0008
  • Status Code: TRPC_ALREADY_INITIALIZED
  • Hexadecimal ID: 0x77977008
  • Message: trpc has already been initialized
ENC-trp-0009
  • Status String: ENC-trp-0009
  • Status Code: TRPC_INVALID_BINDING_HANDLE
  • Hexadecimal ID: 0x77977009
  • Message: invalid rpc binding handle has been used
ENC-trp-0010
  • Status String: ENC-trp-0010
  • Status Code: TRPC_UNBOUND_TRAN_HANDLE
  • Hexadecimal ID: 0x7797700a
  • Message: could not get a fully bound transactional handle
  • Explanation: The transactional RPC (TRPC) has failed because a fully-bound transactional handle could not be generated. This can be caused by a null or invalid TRPC handle, or the failure of the RPC to the target server.
  • User Response: Check the client's default trpc tracing for the underlying cause (usually, an RPC status or exception is identified as the root cause).
ENC-trp-0011
  • Status String: ENC-trp-0011
  • Status Code: TRPC_SREQ_FAILED
  • Hexadecimal ID: 0x7797700b
  • Message: tran_CommSendingRequest failed
ENC-trp-0012
  • Status String: ENC-trp-0012
  • Status Code: TRPC_RREQ_FAILED
  • Hexadecimal ID: 0x7797700c
  • Message: tran_CommReceivedRequest failed
ENC-trp-0013
  • Status String: ENC-trp-0013
  • Status Code: TRPC_SREP_FAILED
  • Hexadecimal ID: 0x7797700d
  • Message: tran_CommSendingReply failed
ENC-trp-0014
  • Status String: ENC-trp-0014
  • Status Code: TRPC_RREP_FAILED
  • Hexadecimal ID: 0x7797700e
  • Message: tran_CommReceivedReply failed
ENC-trp-0016
  • Status String: ENC-trp-0016
  • Status Code: TRPC_MGR_ABORTED
  • Hexadecimal ID: 0x77977010
  • Message: application provided manager function was aborted
ENC-trp-0017
  • Status String: ENC-trp-0017
  • Status Code: TRPC_SREQ_CALLBACK_ABORTED
  • Hexadecimal ID: 0x77977011
  • Message: one of the sending request callbacks aborted the transaction
ENC-trp-0018
  • Status String: ENC-trp-0018
  • Status Code: TRPC_RREP_CALLBACK_ABORTED
  • Hexadecimal ID: 0x77977012
  • Message: one of the received reply callbacks aborted the transaction
ENC-trp-0019
  • Status String: ENC-trp-0019
  • Status Code: TRPC_NO_LOCAL_ADDRESS
  • Hexadecimal ID: 0x77977013
  • Message: could not get local address
ENC-trp-0020
  • Status String: ENC-trp-0020
  • Status Code: TRPC_DUPLICATE_CALL
  • Hexadecimal ID: 0x77977014
  • Message: function has been erroneously called more than once
ENC-trp-0021
  • Status String: ENC-trp-0021
  • Status Code: TRPC_NO_PROTSEQ_SUPPORTED
  • Hexadecimal ID: 0x77977015
  • Message: no protocol sequence could be used
ENC-trp-0022
  • Status String: ENC-trp-0022
  • Status Code: TRPC_USE_WK_ALREADY_CALLED
  • Hexadecimal ID: 0x77977016
  • Message: trpc_UseWkEndpoints has already been called
ENC-trp-0023
  • Status String: ENC-trp-0023
  • Status Code: TRPC_NOT_INITIALIZED
  • Hexadecimal ID: 0x77977017
  • Message: trpc i/f has not been initialized
ENC-trp-0024
  • Status String: ENC-trp-0024
  • Status Code: TRPC_BIND_WK_ALREADY_CALLED
  • Hexadecimal ID: 0x77977018
  • Message: trpc_BindWkEndpoints has already been called
ENC-trp-0025
  • Status String: ENC-trp-0025
  • Status Code: TRPC_GOT_DYN_BUT_NO_NS
  • Hexadecimal ID: 0x77977019
  • Message: trpc got a dynamic binding but the name service is not running
ENC-trp-0026
  • Status String: ENC-trp-0026
  • Status Code: TRPC_ALREADY_READIED
  • Hexadecimal ID: 0x7797701a
  • Message: trpc has been already readied
ENC-trp-0027
  • Status String: ENC-trp-0027
  • Status Code: TRPC_TRAN_NOT_READIED
  • Hexadecimal ID: 0x7797701b
  • Message: tran_Ready has yet not been called
ENC-trp-0029
  • Status String: ENC-trp-0029
  • Status Code: TRPC_RPC_FAILED
  • Hexadecimal ID: 0x7797701d
  • Message: RPC failed for unknown reasons
  • Explanation: A transactional RPC (TRPC) failed for unknown reasons. This is the generic "RPC failure" status code for TRPC. This status is returned when TRPC cannot successfully convert the exception caught into an appropriate corresponding status.
  • User Response: Use default trpc tracing to identify the exception caught.
ENC-trp-0030
  • Status String: ENC-trp-0030
  • Status Code: TRPC_CALLBACK_DATA_OVERFLOW
  • Hexadecimal ID: 0x7797701e
  • Message: more callback data was supplied than could be accomodated
ENC-trp-0031
  • Status String: ENC-trp-0031
  • Status Code: TRPC_INVALID_ASYNC_RPC
  • Hexadecimal ID: 0x7797701f
  • Message: parameters to an asynchronous RPC were invalid
ENC-trp-0033
  • Status String: ENC-trp-0033
  • Status Code: TRPC_SREQ_PIGGYBACK_OVERFLOW
  • Hexadecimal ID: 0x77977021
  • Message: The Transaction Service state for an outgoing TRPC was too large to be carried in the RPC message.
ENC-trp-0034
  • Status String: ENC-trp-0034
  • Status Code: TRPC_SREP_PIGGYBACK_OVERFLOW
  • Hexadecimal ID: 0x77977022
  • Message: The Transaction Service state for an returning TRPC was too large to be carried in the RPC message.
ENC-trp-0035
  • Status String: ENC-trp-0035
  • Status Code: TRPC_SERVER_SIDE_ABORT
  • Hexadecimal ID: 0x77977023
  • Message: The server-side transaction was aborted or took an exception.
ENC-trp-0036
  • Status String: ENC-trp-0036
  • Status Code: TRPC_ABORT_REASON_UNKNOWN
  • Hexadecimal ID: 0x77977024
  • Message: The abort reason for the server-side transaction could not be determined.
ENC-trp-0037
  • Status String: ENC-trp-0037
  • Status Code: TRPC_DEFAULT_TIMEOUT_EXPIRED
  • Hexadecimal ID: 0x77977025
  • Message: The auto tran watch facilty aborted the transaction because the default timeout expired.
ENC-trp-0038
  • Status String: ENC-trp-0038
  • Status Code: TRPC_CAUGHT_RPC_FAILURE
  • Hexadecimal ID: 0x77977026
  • Message: (internal) An RPC was caught by a comm_status or fault_status parameter.
ENC-trp-0039
  • Status String: ENC-trp-0039
  • Status Code: TRPC_NOT_IN_MGR
  • Hexadecimal ID: 0x77977027
  • Message: not in manager function
ENC-trp-0040
  • Status String: ENC-trp-0040
  • Status Code: TRPC_SREP_FAILED_RPC_OK
  • Hexadecimal ID: 0x77977028
  • Message: (internal) tran_CommSendingReply failed, but the RPC returned normally.
ENC-trp-0041
  • Status String: ENC-trp-0041
  • Status Code: TRPC_REQUEST_REJECTED
  • Hexadecimal ID: 0x77977029
  • Message: (internal) The RPC was rejected.
ENC-trp-0042
  • Status String: ENC-trp-0042
  • Status Code: TRPC_NOT_IN_STUB
  • Hexadecimal ID: 0x7797702a
  • Message: Call is only valid within a stub function
ENC-trp-0043
  • Status String: ENC-trp-0043
  • Status Code: TRPC_MGR_ABORTED_RPC_OK
  • Hexadecimal ID: 0x7797702b
  • Message: The application provided manager function was aborted, but the RPC returned normally
ENC-vol-0001
  • Status String: ENC-vol-0001
  • Status Code: VOL_CHUNK_SIZE_MISMATCH
  • Hexadecimal ID: 0x7857b001
  • Message: A physical volume chunk size differs from one backing a logical volume.
ENC-vol-0002
  • Status String: ENC-vol-0002
  • Status Code: VOL_ACCESS_DENIED
  • Hexadecimal ID: 0x7857b002
  • Message: Client attempted to access a disk which belongs to another VOL client.
ENC-vol-0003
  • Status String: ENC-vol-0003
  • Status Code: VOL_DISK_DAMAGED
  • Hexadecimal ID: 0x7857b003
  • Message: Disk control block is damaged.
ENC-vol-0004
  • Status String: ENC-vol-0004
  • Status Code: VOL_DISK_IO_ERROR
  • Hexadecimal ID: 0x7857b004
  • Message: Disk read/write error.
ENC-vol-0005
  • Status String: ENC-vol-0005
  • Status Code: VOL_DISK_ONLINE
  • Hexadecimal ID: 0x7857b005
  • Message: Disk is being used for read/write operations.
ENC-vol-0006
  • Status String: ENC-vol-0006
  • Status Code: VOL_DISK_OFFLINE
  • Hexadecimal ID: 0x7857b006
  • Message: Disk is not available for read/write operations.
ENC-vol-0007
  • Status String: ENC-vol-0007
  • Status Code: VOL_DISK_PROTECTED
  • Hexadecimal ID: 0x7857b007
  • Message: User is not permitted to access the disk.
  • Explanation: The application was unable to read from or write to the specified disk device.
  • User Response: Ensure that appropriate permissions have been granted for the device and that the application is running under the proper identity to access the device.
ENC-vol-0008
  • Status String: ENC-vol-0008
  • Status Code: VOL_DISK_INITIALIZED
  • Hexadecimal ID: 0x7857b008
  • Message: Disk is already initialized.
ENC-vol-0009
  • Status String: ENC-vol-0009
  • Status Code: VOL_DISK_NOT_INITIALIZED
  • Hexadecimal ID: 0x7857b009
  • Message: Disk is not yet initialized.
ENC-vol-0010
  • Status String: ENC-vol-0010
  • Status Code: VOL_INVALID_CHUNK_SIZE
  • Hexadecimal ID: 0x7857b00a
  • Message: Chunk size is not a power of two, or too large.
ENC-vol-0011
  • Status String: ENC-vol-0011
  • Status Code: VOL_INVALID_DATA_POINTER
  • Hexadecimal ID: 0x7857b00b
  • Message: Client provided data pointer is NULL.
ENC-vol-0012
  • Status String: ENC-vol-0012
  • Status Code: VOL_INVALID_DISK_ADDR
  • Hexadecimal ID: 0x7857b00c
  • Message: A supplied or calculated disk address is invalid.
ENC-vol-0013
  • Status String: ENC-vol-0013
  • Status Code: VOL_INVALID_FLAG
  • Hexadecimal ID: 0x7857b00d
  • Message: Client provided state or mount flag is invalid.
ENC-vol-0014
  • Status String: ENC-vol-0014
  • Status Code: VOL_INVALID_LOGICAL_ID
  • Hexadecimal ID: 0x7857b00e
  • Message: Client provided logical volume identifier is invalid.
ENC-vol-0015
  • Status String: ENC-vol-0015
  • Status Code: VOL_INVALID_LOGICAL_SIZE
  • Hexadecimal ID: 0x7857b00f
  • Message: Client provided logical volume size is invalid.
ENC-vol-0016
  • Status String: ENC-vol-0016
  • Status Code: VOL_INVALID_NAME
  • Hexadecimal ID: 0x7857b010
  • Message: Client provided volume or disk name is invalid.
  • Explanation: An incorrect name has been specified to the Volume Service (VOL). The most common cause is that the specified physical device or file volume does not exist, or that the specified logical volume name has not been created.
ENC-vol-0017
  • Status String: ENC-vol-0017
  • Status Code: VOL_INVALID_PAGE_NUMBER
  • Hexadecimal ID: 0x7857b011
  • Message: Client provided page number is invalid.
ENC-vol-0018
  • Status String: ENC-vol-0018
  • Status Code: VOL_INVALID_PHYSICAL_ID
  • Hexadecimal ID: 0x7857b012
  • Message: Client provided physical volume identifier is invalid.
ENC-vol-0019
  • Status String: ENC-vol-0019
  • Status Code: VOL_INVALID_RESTART_FN
  • Hexadecimal ID: 0x7857b013
  • Message: Client provided NULL for restart function pointer.
ENC-vol-0020
  • Status String: ENC-vol-0020
  • Status Code: VOL_NAME_COLLISION
  • Hexadecimal ID: 0x7857b014
  • Message: A volume or disk of that name already exists.
ENC-vol-0021
  • Status String: ENC-vol-0021
  • Status Code: VOL_OS_ERROR
  • Hexadecimal ID: 0x7857b015
  • Message: Some operating system error occurred.
ENC-vol-0022
  • Status String: ENC-vol-0022
  • Status Code: VOL_REGION_OCCUPIED
  • Hexadecimal ID: 0x7857b016
  • Message: Client provided region is already in use.
ENC-vol-0023
  • Status String: ENC-vol-0023
  • Status Code: VOL_REGION_TOO_SMALL
  • Hexadecimal ID: 0x7857b017
  • Message: Client provided region is smaller than the chunk size.
ENC-vol-0024
  • Status String: ENC-vol-0024
  • Status Code: VOL_UNINITIALIZED
  • Hexadecimal ID: 0x7857b018
  • Message: The vol_Init() function has not been called.
ENC-vol-0025
  • Status String: ENC-vol-0025
  • Status Code: VOL_VOLUME_DIRTY
  • Hexadecimal ID: 0x7857b019
  • Message: A logical or physical volume is dirty.
ENC-vol-0026
  • Status String: ENC-vol-0026
  • Status Code: VOL_VOLUME_INDETERMINATE
  • Hexadecimal ID: 0x7857b01a
  • Message: A logical or physical volume is indeterminate.
ENC-vol-0027
  • Status String: ENC-vol-0027
  • Status Code: VOL_VOLUME_CORRUPTED
  • Hexadecimal ID: 0x7857b01b
  • Message: A logical or physical volume is corrupted.
ENC-vol-0028
  • Status String: ENC-vol-0028
  • Status Code: VOL_VOLUME_MAPPED
  • Hexadecimal ID: 0x7857b01c
  • Message: A specified physical volume is mapped to logical volume.
ENC-vol-0029
  • Status String: ENC-vol-0029
  • Status Code: VOL_VOLUME_MIRRORED
  • Hexadecimal ID: 0x7857b01d
  • Message: A specified logical volume is mirrored.
ENC-vol-0030
  • Status String: ENC-vol-0030
  • Status Code: VOL_VOLUME_MOUNTED
  • Hexadecimal ID: 0x7857b01e
  • Message: A specified volume is mounted.
ENC-vol-0031
  • Status String: ENC-vol-0031
  • Status Code: VOL_VOLUME_NOT_MAPPED
  • Hexadecimal ID: 0x7857b01f
  • Message: A specified physical volume is not mapped to a logical volume.
ENC-vol-0032
  • Status String: ENC-vol-0032
  • Status Code: VOL_VOLUME_NOT_MIRRORED
  • Hexadecimal ID: 0x7857b020
  • Message: A specified logical volume is not mirrored.
ENC-vol-0033
  • Status String: ENC-vol-0033
  • Status Code: VOL_VOLUME_NOT_MOUNTED
  • Hexadecimal ID: 0x7857b021
  • Message: A specified volume is not mounted.
ENC-vol-0034
  • Status String: ENC-vol-0034
  • Status Code: VOL_VOLUME_NOT_MOUNTED_MAINT
  • Hexadecimal ID: 0x7857b022
  • Message: A specified volume is not mounted in maintenance mode.
ENC-vol-0035
  • Status String: ENC-vol-0035
  • Status Code: VOL_VOLUME_OFFLINE
  • Hexadecimal ID: 0x7857b023
  • Message: A specified physical volume is not available for read/write request.
ENC-vol-0036
  • Status String: ENC-vol-0036
  • Status Code: VOL_VOLUME_SIZE_MISMATCH
  • Hexadecimal ID: 0x7857b024
  • Message: A region or physical volume is too small.
ENC-vol-0037
  • Status String: ENC-vol-0037
  • Status Code: VOL_VOLUME_STALE
  • Hexadecimal ID: 0x7857b025
  • Message: A specified physical volume is stale.
ENC-vol-0038
  • Status String: ENC-vol-0038
  • Status Code: VOL_NOT_IMPLEMENTED
  • Hexadecimal ID: 0x7857b026
  • Message: The function is not supported on the current machine type.
ENC-vol-0039
  • Status String: ENC-vol-0039
  • Status Code: VOL_FILE_DESCR_EXHAUSTED
  • Hexadecimal ID: 0x7857b027
  • Message: The process limit for open file descriptors has been reached.
ENC-vol-0040
  • Status String: ENC-vol-0040
  • Status Code: VOL_INVALID_LAYOUT
  • Hexadecimal ID: 0x7857b028
  • Message: A vol_physLayout_t is invalid.
ENC-vol-0041
  • Status String: ENC-vol-0041
  • Status Code: VOL_INTERNAL_ERROR
  • Hexadecimal ID: 0x7857b029
  • Message: An unexpected error was encountered by the Volume Service.
ENC-vol-0042
  • Status String: ENC-vol-0042
  • Status Code: VOL_INVALID_LOCK_ID
  • Hexadecimal ID: 0x7857b02a
  • Message: The lock identifier is not valid for this volume.
ENC-vol-0043
  • Status String: ENC-vol-0043
  • Status Code: VOL_INVALID_LOCK_TYPE
  • Hexadecimal ID: 0x7857b02b
  • Message: The specified lock type is invalid.
ENC-vol-0044
  • Status String: ENC-vol-0044
  • Status Code: VOL_LOCKS_EXHAUSTED
  • Hexadecimal ID: 0x7857b02c
  • Message: The maximum number of allowed locks has been reached.
ENC-vol-0045
  • Status String: ENC-vol-0045
  • Status Code: VOL_LOCK_EXPIRED
  • Hexadecimal ID: 0x7857b02d
  • Message: A lock was held too long.
ENC-vol-0046
  • Status String: ENC-vol-0046
  • Status Code: VOL_SYNC_IN_PROGRESS
  • Hexadecimal ID: 0x7857b02e
  • Message: A sync is already executing on this logical volume.
ENC-vol-0047
  • Status String: ENC-vol-0047
  • Status Code: VOL_VOLUME_MOUNTED_RESTORE
  • Hexadecimal ID: 0x7857b02f
  • Message: A specified logical volume is mounted in restore mode.
ENC-vol-0048
  • Status String: ENC-vol-0048
  • Status Code: VOL_VOLUME_MOUNTED_MAINT
  • Hexadecimal ID: 0x7857b030
  • Message: A specified logical volume is mounted in maintenance mode.
ENC-vol-0049
  • Status String: ENC-vol-0049
  • Status Code: VOL_ID_COLLISION
  • Hexadecimal ID: 0x7857b031
  • Message: A volume with the specified id already exists
ENC-vol-0050
  • Status String: ENC-vol-0050
  • Status Code: VOL_VOLUME_NOT_LOCAL
  • Hexadecimal ID: 0x7857b032
  • Message: Specified volume is imported from another site
ENC-vol-0051
  • Status String: ENC-vol-0051
  • Status Code: VOL_VOLUME_IS_EXPORTED
  • Hexadecimal ID: 0x7857b033
  • Message: Specified physical volume is currently exported
ENC-vol-0052
  • Status String: ENC-vol-0052
  • Status Code: VOL_VOLUME_NOT_EXPORTED
  • Hexadecimal ID: 0x7857b034
  • Message: Specified physical volume is not exported
ENC-vol-0053
  • Status String: ENC-vol-0053
  • Status Code: VOL_VOLUME_ALREADY_IMPORTED
  • Hexadecimal ID: 0x7857b035
  • Message: Specified physical volume is already imported
ENC-vol-0054
  • Status String: ENC-vol-0054
  • Status Code: VOL_INVALID_REMOTE_VOLUME_NAME
  • Hexadecimal ID: 0x7857b036
  • Message: Name specified for remote volume is invalid
ENC-vol-0055
  • Status String: ENC-vol-0055
  • Status Code: VOL_REMOTE_VOLUME_SERVICE_UNAVAILABLE
  • Hexadecimal ID: 0x7857b037
  • Message: Volume service at remote site is not available
ENC-vol-0056
  • Status String: ENC-vol-0056
  • Status Code: VOL_REMOTE_ACCESS_DENIED
  • Hexadecimal ID: 0x7857b038
  • Message: Client is not authorized to access the server
ENC-vol-0057
  • Status String: ENC-vol-0057
  • Status Code: VOL_OPERATION_NOT_APPLICABLE
  • Hexadecimal ID: 0x7857b039
  • Message: Requested operation is not applicable to the specified volume