z/OS MVS Programming: Sysplex Services Reference
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


Return and Reason Codes

z/OS MVS Programming: Sysplex Services Reference
SA38-0658-00

When the IXCSEND macro returns control to your program:
  • GPR 15 (and retcode, when you code RETCODE) contains a return code.
  • When the value in GPR 15 is not zero, GPR 0 (and rsncode, when you code RSNCODE) contains a reason code.

The following table identifies the hexadecimal return and reason codes.

Table 1. Return and Reason Codes for the IXCSEND Macro

Hexadecimal
Return Code

Hexadecimal
Reason Code

Equate Symbol
Meaning and Action

0 None Successful completion. The message has been accepted for delivery to each selected target. Issue the XCF client/server receive service (IXCRECV) to obtain the results of the IXCSEND request.
8 00010004 Equate Symbol: IXCSENDRSNBADSTGPLIST

Meaning: Program error. XCF could not access the control parameter list.

Action: Ensure that:
  • The correct parameter list storage area was specified.
  • The parameter list storage area was not inadvertently freed by your program.
8 00010008 Equate Symbol: IXCSENDRSNBADALETPLIST

Meaning: Program error. The ALET that qualifies the address of the parameter list is neither zero nor a valid entry on the caller's Dispatchable Unit

Action: Take one or more of the following actions:
  • If your program is running in AR mode, ensure that you specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • Ensure that the ALET for the control parameter list storage is correct.
8 0001000C Equate Symbol: IXCSENDRSNBADVALMSGLEN

Meaning: Program error. The message length (MSGLEN) or the sum of the data size values (dd_DataSize) specified in message descriptors exceeds the allowable IXCSEND message length of 100MB. The message length is not in the decimal range of 0 to 104857600.

Action: Action: Take one or more of the following actions:
  • Ensure that the correct message length is specified.
  • Ensure that the parameter list was not inadvertently overlaid and that it was correctly specified.
Decrease the length of the message being sent and retry the IXCSEND request.
8 00010018 Equate Symbol: IXCSENDRSNBADPLISTVERSION

Meaning: Program error. The version number in the control parameter list was not valid.

Action: Check for errors such as the following:
  • Your program overlaid the control parameter list storage.
  • Your program was assembled with the wrong macro library for the release of z/OS® on which your program is running.
8 000100EE Equate Symbol: IXCSENDRSNBADENVNOTENABLE

Meaning: Program error. The caller is not enabled.

Action: Correct your program so that it does not issue IXCSEND while it is disabled.

8 0002000C Equate Symbol: IXCSENDRSNBADVALSENDER

Meaning: Program error. Sender Name (SENDER) value is not valid.

Action: Consider the following for sender names:
  • Sender names consist of four 8-byte sections. Each 8-byte section must be left justified, padded on the right with EBCDIC blanks as needed.
  • Each section string can contain any alphanumeric (a-z, A-Z, 0-9), national (@,#,$), or underscore characters (_).
  • Any section but the first can be entirely blank.
  • Sender name is case sensitive.
The IXCYSRVR macro defines a mapping for client and server sender names (ixcysrvr_tName). Correct the sender name, and retry the request.
8 000200EE Equate Symbol: IXCSENDRSNBADENVLOCKED

Meaning: Program error. The caller of IXCSEND holds a lock.

Action: Correct your program so that it does not issue IXCSEND while it is holding a lock.

8 00030004 Equate Symbol: IXCSENDRSNBADSTGSERVER

Meaning: The system cannot access the area that contains the server name specified on the SERVER keyword.

Action: Take one or more of the following actions:
  • Ensure that the address of the server name is correct.
  • If your program is running in AR mode, ensure that:
    • The ALET for the server name is correct.
    • You specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
8 00030008 Equate Symbol: IXCSENDRSNBADALETSERVER

Meaning: Program error. The ALET that qualifies the address of the target Server Name (SERVER) is not zero, not a valid entry on the caller's Dispatchable Unit Access List (DU-AL), or not a valid entry for a common area data space.

Action: Take one or more of the following actions:
  • If your program is running in AR mode, ensure that you specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • Ensure that the ALET for the server name storage is correct.
8 0003000C Equate Symbol: IXCSENDRSNBADVALDESCRIPTION

Meaning: Program error. Server description (DESCRIPTION) value is not valid.

Action: DESCRIPTION can contain any alphanumeric (a-z, A-Z, 0-9), national (@,#,$), or special (underscore or blank) character. Leading blanks and all blank descriptors are not permitted. Descriptions are case sensitive.

8 00030018 Equate Symbol: IXCSENDRSNBADPLISTTARGET

Meaning: Program error. Target specified in the parameter list for the IXCSEND request is not valid. The SENDTO target was not SERVER or ORIGINATOR.

Action: Take one or more of the following actions:
  • Ensure that a correct SENDTO keyword value was specified.
  • Ensure that the parameter list was not inadvertently overlaid and that it was correctly specified.
8 000300EE Equate Symbol: IXCSENDRSNNORETMSGTOKEN

Meaning: Program error. RETMSGTOKEN must be specified when the results of the IXCSEND are being held (HOLDTIME) by XCF.

Action: When a non-zero HOLDTIME is specified, a RETMSGTOKEN is required in order to retrieve IXCSEND results using IXCRECV. Re-issue the IXCSEND request specifying the RETMSGTOKEN keyword.

8 00040004 Equate Symbol: IXCSENDRSNBADSTGSERVERID

Meaning: The system cannot access the area that contains the server ID specified on the SERVERID keyword.

Action: Take one or more of the following actions:
  • Ensure that the address of the server ID is correct.
  • If your program is running in AR mode, ensure that:
    • The ALET for the server ID is correct.
    • You specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
8 00040008 Equate Symbol: IXCSENDRSNBADALETSERVERID

Meaning: Program error. The ALET that qualifies the address of the server ID (SERVERID) is not zero,not a valid entry on the caller's Dispatchable Unit Access List (DU-AL), or not a valid entry for a common area data space.

Action: Take one or more of the following actions:
  • If your program is running in AR mode, ensure that you specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • Ensure that the ALET for the server ID storage is correct.
8 0004000C Equate Symbol: IXCSENDRSNBADVALSERVER

Meaning: Program error. Server Name (SERVER) value is not valid.

Action: Consider the following for server names:
  • Server names consist of four 8-byte sections. Each 8-byte section must be left justified, padded on the right with EBCDIC blanks as needed.
  • Each section string can contain any alphanumeric (a-z, A-Z, 0-9), national (@,#,$), or underscore characters (_).
  • Any section but the first can be entirely blank.
  • Sender name is case sensitive.
8 00040018 Equate Symbol: IXCSENDRSNBADPLISTLEN

Meaning: Program error. Parameter list length specified in the IXCSEND parameter list is not valid.

Action: Ensure that the parameter list was not inadvertently overlaid and that it was correctly specified.

8 00050004 Equate Symbol: IXCSENDRSNBADSTGMSGDATA

Meaning: Program error. XCF could not access the message buffer specified on the MSGDATA keyword.

Action: Take one or more of the following actions:
  • Ensure that the correct message buffer storage area was used.
  • If your program is running in AR mode, ensure that:
    • The ALET for the message buffer is correct.
    • You specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • Ensure that the message buffer storage area was not inadvertently freed by your program.
8 00050008 Equate Symbol: IXCSENDRSNBADALETMSGDATA

Meaning: Program error. Parameter list length specified in the IXCSEND parameter list is not valid.

Action: Check for errors such as the following:
  • You did not specify SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • You specified the wrong ALET for the message buffer.
8 0005000C Equate Symbol: IXCSENDRSNBADVALMAXLEVEL

Meaning: Program error. The relationship between MINSERVERLEVEL and MAXSERVERLEVEL for the server selection criteria specified on the CRITERIA keyword is not valid.

Action: MAXSERVERLEVEL must be greater than or equal to MINSERVERLEVEL.

8 00050018 Equate Symbol: IXCSENDRSNBADPLISTRSVD

Meaning: Program error. A reserved field in the control parameter list was not zero.

Action: Check to see if your program inadvertently overlaid the parameter list storage.

8 000500EE Equate Symbol: IXCSENDRSNNOOUTSTANDINGRESP

Meaning: An IXCSEND SENDTO=ORIGINATOR request was issued to send a response for a server request, but a response was not outstanding for the server request.

Action: Issuing a response for a server request that has already been responded to or XCF considers as no longer needing a response is not allowed by XCF. A response might have already been made in the following ways:
  • The server exit or a designated unit of work associated with the server instance issued an IXCSEND SENDTO=ORIGINATOR to send a response to the request originator.
  • The server has asked XCF to provide an acknowledgment on its behalf through the use of the SXPL_RefusalCode or SXPL_ResultCode interfaces in the Server Exit Parameter List (SXPL). XCF sends a response to the request originator. No other response is allowed.
  • XCF responds to an outstanding server request on behalf of a server instance when the RESPBIND entity for the server instance ends.
XCF considers a response to no longer be needed when a server request has not been responded to before the RESPTIME specified by the client when the server request was sent has exceeded.
8 00060004 Equate Symbol: IXCSENDRSNBADSTGMSGDESC

Meaning: Program error. A message descriptor mapped by ixcysrvr_tDataDescriptor or message data pointed to by a message descriptor dd_DataAddr field passed on the MSGDESC keyword is not accessible due to a bad address.

Action: Take one or more of the following actions:
  • Ensure that the correct storage area was specified on the MSGDESC keyword and the correct #MSGDESC value was specified.
  • Ensure that the correct buffer address was specified in the dd_DataAddr field of the message descriptor.
  • If your program is running in AR mode, ensure that:
    • The ALET for the message descriptors and message data (dd_DataAlet) is correct.
    • You specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • Ensure that the message descriptor or message buffer storage areas were not inadvertently freed by your program.
8 00060008 Equate Symbol: IXCSENDRSNBADALETMSGDESC

Meaning: Program error. The ALET that qualifies the address of a message descriptor mapped by ixcysrvr_tDataDescriptor (MSGDESC) or an ALET in a message descriptor (dd_DataAlet) that qualifies the address of message data (dd_DataAddr) pointed to by a message descriptor is not zero, not a valid entry on the caller's Dispatchable Unit Access List (DU-AL), or not a valid entry for a common area data space.

Action: Check for errors such as the following:
  • You did not specify SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • You specified the wrong ALET for the message descriptor table (MSGDESC) or for the message data pointed to by the message descriptor (dd_DataAlet).
8 0006000C Equate Symbol: IXCSENDRSNBADVALFEATURES

Meaning: Program error. Input feature string for the server selection criteria specified on the CRITERIA keyword is not valid.

Action: The feature level (sf_Level) used a value (xFF) that is reserved by XCF. Use another value.

8 000600EE Equate Symbol: IXCSENDRSNBADENVPAUSESRB

Meaning: Environmental error. The IXCSEND request was issued from a SUSPEND exit routine or from an SRB routine that the system abended with a 47B system completion.

For a SENDTO=SERVER request, this reason code is presented in a target descriptor metadata record returned on an IXCRECV service call. The target descriptor metadata records describe the results of an IXCSEND request to a target server. See the td_SendRsncode field of the target descriptor record mapping ixcysrvr_tTargetDescriptor.

For a SENDTO=ORIGINATOR request, this reason code is returned on the IXCSEND service call.

Action: IXCSEND should not be issued from a SUSPEND exit environment or from an SRB that the system abended with a 47B system completion code. Update the calling program to not invoke IXCSEND from a SUSPEND exit or after an ABEND 47B.

8 00070004 Equate Symbol: XCSENDRSNBADSTGRETMSGTOKEN

Meaning: Program error. RETMSGTOKEN storage is not accessible.

Action: None. The system could not store the message token identifying the IXCSEND request into the provided storage. Correct the storage addressing problem and re-issue the request if applicable.

8 00070008 Equate Symbol: IXCSENDRSNBADALETRETMSGTOKEN

Meaning: Program error. The ALET that qualifies the address of the IXCSEND message token (RETMSGTOKEN) is neither zero nor a valid entry on the caller's Dispatchable Unit Access List (DU-AL), nor a valid entry for a common area data space.

Action: Check for errors such as the following:
  • You did not specify SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • You specified the wrong ALET for the RETMSGTOKEN storage.
Re-issue the request with the correct ALET for the RETMSGTOKEN storage.
8 0007000C Equate Symbol: IXCSENDRSNBADVALTTOKEN

Meaning: Program error. The task token (TTOKEN) of the task that is responsible for invoking IXCRECV is not associated with a valid address space.

Action: Specify a valid task token and rerun the program.

8 000700EE Equate Symbol: IXCSENDRSNSYSTEMNOTACTIVE

Meaning: Environmental error. The target system for a SENDTO=SERVER request was not active in the sysplex or the system that a SENDTO=ORIGINATOR response request was destined for was not active in the sysplex.

For a SENDTO=ORIGINATOR request, this reason code is returned on the IXCSEND service call.

For a SENDTO=SERVER request, this reason code is presented in a target descriptor metadata record returned on an IXCRECV service call. The target descriptor metadata records describe the results of an IXCSEND request to a target server. See the td_SendRsncode field of the target descriptor record mapping ixcysrvr_tTargetDescriptor.

Action: None.

8 00080004 Equate Symbol: IXCSENDRSNBADSTGDESCRIPTION

Meaning: Program error. The storage area specified on the DESCRIPTION keyword is not accessible. The storage is not addressable.

Action: Take one or more of the following actions:
  • Ensure that the address of the request DESCRIPTION is correct.
  • If your program is running in AR mode, ensure that:
    • The ALET for the message descriptors and message data (dd_DataAlet) is correct.
    • You specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
8 00080008 Equate Symbol: IXCSENDRSNBADALETDESCRIPTION

Meaning: Program error. The ALET that qualifies the address of the Description (DESCRIPTION) of the request is not zero, not a valid entry on the caller's Dispatchable Unit Access List (DU-AL), or not a valid entry for a common area data space.

Action: Take one or more of the following actions:
  • If your program is running in AR mode, ensure that you specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • Ensure that the ALET for the message description information is correct.
8 0008000C Equate Symbol: IXCSENDRSNBADVALSYSNAME

Meaning: Program error. A system name value provided through the SYSNAME keyword contains invalid characters.

Action: Valid SYSNAME characters are A-Z, 0-9, $, @, # and the wild card characters specified or defaulted to. Correct the system name pattern value and re-issue the request.

8 00080018 Equate Symbol: IXCSENDRSNBADPLISTSYSTEMS

Meaning: Program error. Invalid SYSTEMS parameter specified.

Action: Take one or more of the following actions:
  • Ensure that a correct SYSTEMS keyword value was specified.
  • Ensure that the parameter list was not inadvertently overlaid and that it was correctly specified.
8 000800EE Equate Symbol: IXCSENDRSNNOTARGETSYSTEMS

Meaning: Program error. Invalid target selection criteria specified. There were no active systems in the sysplex that matched the criteria specified by the SYSTEMS or SERVERID keywords.

Action: Correct the target selection criteria and re-issue the request.

8 00090004 Equate Symbol: IXCSENDRSNBADSTGMSGCNTL

Meaning: Program error. The system cannot access the area that contains the user message control information (MSGCNTL).

Action: Take one or more of the following actions:
  • Ensure that the address of the message control information is correct.
  • If your program is running in AR mode, ensure that
    • You specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
    • The ALET for the message control information is correct.
8 00090008 Equate Symbol: IXCSENDRSNBADALETMSGCNTL

Meaning: Program error. The ALET that qualifies the address of the user message control data (MSGCNTL) is neither zero nor a valid entry on the caller's Dispatchable Unit Access List (DU-AL), nor a valid entry for a common area data space.

Action: Take one or more of the following actions:
  • If your program is running in AR mode, ensure that you specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • Ensure that the ALET for the user message control information is correct.
8 0009000C Equate Symbol: IXCSENDRSNBADVALEXPECTREPLY

Meaning: ExpectReply=YES is not supported by the IXCSEND service for SENDTO=ORIGINATOR response requests.

Action: Do not code the EXPECTREPLY keyword or specify EXPECTREPLY=NO when sending a response message (SENDTO=ORIGINATOR).

8 00090018 Equate Symbol: IXCSENDRSNBADPLISTRECVBIND

Meaning: Program error. Invalid RECVBIND specified. SRB mode callers must explicity specify a TTOKEN on the request when establishing a recovery bind to a task for IXCRECV.

Action: Specify RECVBIND=TASK, TTOKEN=xttoken on the IXCSEND invocation.

8 000A0004 Equate Symbol: IXCSENDRSNBADSTGRESPTOKEN

Meaning: Program error. The system cannot access the area that contains the response token (RESPTOKEN).

Action: Take one or more of the following actions:
  • Ensure that the address of the response token is correct.
  • If your program is running in AR mode, ensure that:
    • The ALET for the response token is correct.
    • You specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
8 000A0008 Equate Symbol: IXCSENDRSNBADALETRESPTOKEN

Meaning: Program error. The ALET that qualifies the address of the response token (RESPTOKEN) is not zero, not a valid entry on the caller's Dispatchable Unit Access List (DU-AL), or not a valid entry for a common area data space.

Action: Take one or more of the following actions:
  • If your program is running in AR mode, ensure that you specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • Ensure that the ALET for the response token is correct.
8 000A000C Equate Symbol: IXCSENDRSNBADVALSERVERID

Meaning: Program error. Server ID value (SERVERID) is not valid.

Action: Ensure that a correct server ID value was specified.

8 000B0004 Equate Symbol: IXCSENDRSNBADSTGSYSNAMES

Meaning: Program error. The system cannot access the storage identified by the SYSNAME keyword containing a system name pattern or system name pattern array.

Action: Take one or more of the following actions:
  • Ensure that the address of the system name patterns is correct.
  • Ensure that the values for the #SYSTEMS and LENSYSENTRY are correct.
  • If your program is running in AR mode, ensure that:
    • The ALET for the system name patterns is correct.
    • You specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
8 000B0008 Equate Symbol: IXCSENDRSNBADALETSYSNAMES

Meaning: Program error. The ALET that qualifies the address of system name patterns (SYSNAME) is neither zero nor a valid entry on the caller's Dispatchable Unit Access List (DU-AL), nor a valid entry for a common area data space.

Action: Take one or more of the following actions:
  • If your program is running in AR mode, ensure that you specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • Ensure that the ALET for the system name patterns is correct.
8 000B000C Equate Symbol: IXCSENDRSNBADVALSENDTIME

Meaning: The SENDTIME (SENDTIME) is not within the valid range as defined for the IXCSEND service

Action: Specify a valid value for SENDTIME.

8 000B0018 Equate Symbol: IXCSENDRSNBADPLISTTARGSERVER

Meaning: Program error. Target server specified in the parameter list for the IXCSEND request is not valid.

Action: A target server must be identified by server name (SERVER keyword) or server ID (SERVERID keyword). Ensure that the parameter list was not inadvertently overlaid and that it was correctly specified.

8 000C0004 Equate Symbol: IXCSENDRSNBADSTGSYSIDS

Meaning: Program error. The system cannot access the storage identified by the SYSID keyword containing a system ID or system ID array.

Action: Take one or more of the following actions:
  • Ensure that the address of the system ID or system ID array is correct.
  • Ensure that the values for the #SYSTEMS and LENSYSENTRY are correct.
  • If your program is running in AR mode, ensure that
    • The ALET for the system name patterns is correct.
    • you specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
8 000C0008 Equate Symbol: IXCSENDRSNBADALETSYSIDS

Meaning: Program error. The ALET that qualifies the address of an XCF system ID of a target system or array of system IDs (SYSID) is neither zero nor a valid entry on the caller's Dispatchable Unit Access List (DU-AL), nor a valid entry for a common area data space.

Action: Take one or more of the following actions:
  • If your program is running in AR mode, ensure that you specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
  • Ensure that the ALET for the system ID or system ID array is correct.
8 000C000C Equate Symbol: IXCSENDRSNBADVALRESPTIME

Meaning: Environmental error. The RespTime (RESPTIME) is not within the valid range for the IXCSEND service.

Action: Specify a valid repsonse time value.

8 000D000C Equate Symbol: IXCSENDRSNBADVALHOLDTIME

Meaning: The HOLDTIME value is not within the valid range for the IXCSEND service

Action: Specify a valid value for HOLDTIME.

8 000D0018 Equate Symbol: IXCSENDRSNBADPLISTCRITERIA

Meaning: Program error. CRITERIA mapping content is not valid. Reserved fields are not initialized to nulls.

Action: Set the reserved fields of the CRITERIA mapping to nulls and re-issue the request.

8 000E000C Equate Symbol: IXCSENDRSNTTOKENTASKTERM

Meaning: Environmental error. The task identified by TTOKEN and responsible for invoking IXCRECV represents a task that is terminating. A receive bind cannot be made to a task that is ending.

Action: Specify a TTOKEN for a task that is not terminating and retry the request.

8 000F0004 Equate Symbol: IXCSENDRSNBADSTGCRITERIA

Meaning: Program error. The system cannot access the storage identified by the CRITERIA keyword containing the server selection criteria.

Action: Take one or more of the following actions:
  • Ensure that the address for the server selection criteria is correct.
  • If your program is running in AR mode, ensure that:
    • The ALET for the storage containing the server selection criteria is correct
    • You specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro.
8 000F0008 Equate Symbol: IXCSENDRSNBADALETCRITERIA

Meaning: Program error. The ALET that qualifies the address of target server selection criteria specified by the CRITERIA keyword is neither zero nor a valid entry on the caller's Dispatchable Unit Access List (DU-AL), nor a valid entry for a common area data space.

Action: Take one or more of the following actions:
  • If your program is running in AR mode, ensure that you specified SYSSTATE ASCENV=AR before issuing the IXCSEND macro. -
  • Ensure that the ALET for the target server selection criteria is correct.
8 000F000C Equate Symbol: IXCSENDRSNBADTTOKENMASTERAS

Meaning: Program error. A task residing in the master address space cannot be designated with a receive bind if the master address space is not the caller's HOME address space.

Action: Correct the error, and retry.

8 000F0018 Equate Symbol: IXCSENDRSNBADCRITERIAVERSION

Meaning: Program error. Invalid version number specified in the CRITERIA data mapping

Action: Specify a valid version. See the ixcysrvr_tCriteria mapping in the IXCYSRVR macro.

8 0010000C Equate Symbol: IXCSENDRSNBADVALRESPTOKEN

Meaning: Program error. The RESPTOKEN that identifies an originating message to which this response is being sent is invalid or corrupted.

Action: Correct the error, and retry.

8 0011000C Equate Symbol: IXCSENDRSNBADVALRECVBIND

Meaning: The RECVBIND value specified in the service parameter list is not valid and not recognized by the IXCSEND service.

Action: Specify a valid RECVBIND value of TASK, ADDRSPACE, or SYSTEM. Ensure that the parameter list was not inadvertently overlaid and that it was correctly specified.

8 0012000C Equate Symbol: IXCSENDRSNBADVAL#SYSTEMS

Meaning: Environmental error. Bad #SYSTEMS parameter specified.

Action: #SYSTEMS must be greater than zero (0).

8 0013000C Equate Symbol: IXCSENDRSNBADVALWILDCARDONE

Meaning: Program error. Bad WILDCARDONE parameter specified. The WILDCARDONE character contains a value that is not accepted by IXCSEND.

Action: Specify a valid character for WILDCARDONE. WILDCARDONE characters cannot be:
  • A-Z, a-z, 0-9
  • @, #, $
  • &
  • EBCDIC blank or the value specified for WILDCARDANY
8 0014000C Equate Symbol: IXCSENDRSNBADVALLENMDENTRY

Meaning: Environmental error. LENMDENTRY value is not valid.

Action: LENMDENTRY must be greater than or equal to the length of one data descriptor (16).

8 0015000C Equate Symbol: IXCSENDRSNBADVALMSGSTGSTGKEY

Meaning: Environmental error. Message data described by MSGDATA or message data described by message descriptors specified on the MSGDESC keyword cannot be fetched using the storage key indicated by MSGSTGKEY.

Action: Specify a valid storage key.

8 0016000C Equate Symbol: IXCSENDRSNBADVALWILDCARDANY

Meaning: Environmental error. Bad WILDCARDANY parameter specified. The WILDCARDANY character contains a value that is not accepted by IXCSEND.

Action: Specify a valid character for WILDCARDANY. WILDCARDANY characters cannot be:
  • A-Z, a-z, 0-9
  • @, #, $
  • &
  • EBCDIC blank or the value specified for WILDCARDANY
8 0017000C Equate Symbol: IXCSENDRSNBADSERVERREQMSGLEN

Meaning: The message length of an XCF Server request message exceeds the maximum supported length for the current version of the IXCSEND macro service.

Action: Specify a value for the message length that is supported by the IXCSEND service for XCF Server requests.

8 0018000C Equate Symbol: IXCSENDRSNBADVALWILDCARDSSAME

Meaning: The value for WILDCARDONE and WILDCARDANY are the same. The values must be different.

Action: The wildcard characters for WILDCARDANY and WILDCARDONE cannot be the same value. Change the values and retry the request.

8 0019000C Equate Symbol: IXCSENDRSNBADVALSTOKEN

Meaning: The STOKEN for the address space responsible for invoking IXCRECV does not represent a valid address space.

Action: Ensure that the provided STOKEN value represents a valid address space.

8 001A000C Equate Symbol: IXCSENDRSNBADVALLENSYSENTRY

Meaning: Environmental error. LENSYSENTRY must be at least eight (8) when SYSTEMS=NAME is specified or LENSYSENTRY must be at least four (4) when SYSTEMS=SYSID is specified.

Action: Specify a valid LENSYSENTRY value.

C 000100CE Equate Symbol: IXCSENDRSNALESERVADDFAILED

Meaning: Environment Error. Unexpected return code from ALESERV while trying to add the XCF address space to the DU-AL

Action: Retry the request after allowing some time for the condition to clear.

C 000200CE Equate Symbol: IXCSENDRSNSYSTEMRESOURCES

Meaning: Environmental error. Environmental Error. XCF Signalling or other system resources were not readily available to satisfy the IXCSEND request.

Action: Retry the request after allowing some time for the system or sysplex to clear the resource constraint condition.

C 000300CE Equate Symbol: IXCSENDRSNDOWNLEVELSYSTEM

Meaning: Environmental error. The selected target system does not support the XCF client/server protocols.

For a SENDTO=SERVER request, this reason code is presented in a target descriptor metadata record returned on an IXCRECV service call. The target descriptor metadata records describe the results of an IXCSEND request to a target server. See the td_SendRsncode field of the target descriptor record mapping ixcysrvr_tTargetDescriptor.

Action: Determine why the SENDTIME expired and increase the SENDTIME if necessary.

C 000400CE Equate Symbol: IXCSENDRSNENVSENDTIMEEXP

Meaning: Environmental error. The amount of time that IXCSEND was allowed to pause the unit of work to synchronously complete accessing the caller's storage areas expired. XCF canceled the incomplete IXCSEND processing and the message was not sent to all the selected target systems.

This reason code is presented in a target descriptor metadata record returned on an IXCRECV service call. The target descriptor metadata records describe the results of an IXCSEND request to a target server. See the td_SendRsncode field of the target descriptor record mapping ixcysrvr_tTargetDescriptor.

Action: Determine why the SENDTIME expired and increase the SENDTIME if necessary.

C 000500CE Equate Symbol: IXCSENDRSNFORCECOMPLETION

Meaning:An IXCMSGC REQUEST=COMPLETION request was issued for a message while XCF was processing an IXCSEND request. The IXCSEND request was forced to complete before XCF sent messages to all intended targets.

This reason code is presented in a target descriptor metadata record returned on an IXCRECV service call. The target descriptor metadata records describe the results of an IXCSEND request to a target server. See the td_SendRsncode field of the target descriptor record mapping ixcysrvr_tTargetDescriptor.

Action: Determine if the application intended to force the completion of the IXCSEND request prior to the message being sent to one or more of the intended targets. Re-issue the request if applicable.

C 000600CE Equate Symbol: IXCSENDRSNRELEASEMSG

Meaning: Environmental error. An IXCMSGC REQUEST=RELEASEMSG request was issued for a message while XCF was processing an IXCSEND request. The IXCSEND request was forced to end before XCF sent messages to all intended targets.

For a SENDTO=SERVER request, this reason code is presented in a target descriptor metadata record returned on an IXCRECV service call. The target descriptor metadata records describe the results of an IXCSEND request to a target server. See the td_SendRsncode field of the target descriptor record mapping ixcysrvr_tTargetDescriptor.

For a SENDTO=ORIGINATOR request, this reason code is returned on the IXCSEND service call.

Action: None.

C 000700CE Equate Symbol: IXCSENDRSNDISCARDMSG

Meaning: Environmental error. An IXCMSGC REQUEST=DISCARDMSG request was issued for a message while XCF was processing an IXCSEND request. The IXCSEND request was forced to end before XCF sent messages to all intended targets.

Action: None.

C 000800CE Equate Symbol: IXCSENDRSNASYNCABENDSENDING

Meaning: Environmental error. The send request was cancelled to the specific target due to an asynchronous abend that affected the suspended unit of work. XCF could not complete sending the message to the target .

For a SENDTO=SERVER request, this reason code is presented in a target descriptor metadata record returned on an IXCRECV service call. The target descriptor metadata records describe the results of an IXCSEND request to a target server. See the td_SendRsncode field of the target descriptor record mapping ixcysrvr_tTargetDescriptor.

For a SENDTO=ORIGINATOR request, this reason code is returned on the IXCSEND service call.

Action: None.

C 000900CE Equate Symbol: IXCSENDRSNENVRESPTIMEEXP

Meaning: Environmental error. The amount of time (RESPTIME) that IXCSEND was allowed to let send requests to targets remain send pending expired. XCF canceled the incomplete IXCSEND processing and the message was not sent to all the selected target systems.

This reason code is presented in a target descriptor metadata record returned on an IXCRECV service call. The target descriptor metadata records describe the results of an IXCSEND request to a target server. See the td_SendRsncode field of the target descriptor record mapping ixcysrvr_tTargetDescriptor.

Action: Retry the request after allowing some time for the system or sysplex to clear the conditions causing the send to remain pending.

10 None Equate Symbol: None.

Meaning: Failure in XCF processing.

Action: None.

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014