美文网首页
CICS ECI常见错误码

CICS ECI常见错误码

作者: 烧瓶君 | 来源:发表于2019-10-08 20:17 被阅读0次

ECI返回码

code info desc
0 ECI_NO_ERROR No error.
-1 ECI_ERR_INVALID_DATA_LENGTH Bad data length.
This might be because the protocol used to communicate with CICS is unable to send or receive the specified COMMAREA size.
-2 ECI_ERR_INVALID_EXTEND_MODE The eci_extend_mode field is not valid.
-3 ECI_ERR_NO_CICS Communication with the target CICS server could not be established.
-4 ECI_ERR_CICS_DIED Communication with the target CICS server was interrupted during the request.
-5 ECI_ERR_REQUEST_TIMEOUT The timeout interval expired before the request was sent to CICS, or the value supplied for timeout is negative.
-6 ECI_ERR_RESPONSE_TIMEOUT The ECI call timed out while waiting for a response.
-7 ECI_ERR_TRANSACTION_ABEND The CICS transaction abended.
The abend code is available in the eci_abend_code field.
-8 ECI_ERR_EXEC_LUW_TOKEN The value in eci_luw_token is incorrect.
There is no active unit of work associated with the specified token.
-9 ECI_ERR_SYSTEM_ERROR An internal system error has occurred.
If the problem persists, collect application and Gateway daemon trace and contact your IBM service representative.
-10 ECI_ERR_NULL_WIN_HANDLE
-12 ECI_ERR_NULL_MESSAGE_ID
-13 ECI_ERR_THREAD_CREATE_ERROR
-14 ECI_ERR_INVALID_CALL_TYPE The eci_call_type field is not valid.
This can occur for the following reasons:
The eci_call_type field is not set to a valid call type value.
The active CICS request exit rejected the request.
The request includes a channel and the destination CICS server is not a defined IPIC server.
-15 ECI_ERR_ALREADY_ACTIVE An attempt was made to continue an existing logical unit of work, but there was an outstanding asynchronous call for the same logical unit of work.
-16 ECI_ERR_RESOURCE_SHORTAGE There are insufficient resources to communicate with the target CICS server; details might be available in the CICS TG error log files.
-17 ECI_ERR_NO_SESSIONS There are insufficient communication resources to communicate with the target CICS server.
-18 ECI_ERR_NULL_SEM_HANDLE
-19 ECI_ERR_INVALID_DATA_AREA The combination of eci_commarea and eci_commarea_length values is not valid.
If eci_commarea is NULL, eci_commarea_length must be zero. If eci_commarea is not NULL, eci_commarea_length must not be zero.
-21 ECI_ERR_INVALID_VERSION The eci_version field was not set to ECI_VERSION_2 or ECI_VERSION_2A.
-22 ECI_ERR_UNKNOWN_SERVER The target CICS server is unknown to the Gateway daemon.
-23 ECI_ERR_CALL_FROM_CALLBACK
-25 ECI_ERR_MORE_SYSTEMS
-26 ECI_ERR_NO_SYSTEMS
-27 ECI_ERR_SECURITY_ERROR An invalid combination of user ID and password or password phrase was specified.
-28 ECI_ERR_MAX_SYSTEMS The CICS TG has reached its limit on the maximum number of CICS servers.
-29 ECI_ERR_MAX_SESSIONS There are insufficient communication resources to complete the request.
-30 ECI_ERR_ROLLEDBACK An attempt was made to commit a logical unit of work, but the CICS server was unable to commit the changes, and backed them out instead.
-32 ECI_ERR_NO_REPLY No reply.
This can occur for the following reasons:
The eci_call_type field is set to ECI_GET_REPLY and there are no replies outstanding.
The eci_call_type field is set to ECI_GET_SPECIFIC_REPLY and there is no reply for the specified message qualifier.
-33 ECI_ERR_INVALID_MSG_QUAL The message qualifier is not in use.

常见错误及解决方式

-3 ECI_ERR_NO_CICS 连接不可用
解决方式:重启客户端

-4 ECI_ERR_CICS_DIED 连接中断
解决方式:重启客户端

-6 ECI_ERR_RESPONSE_TIMEOUT 应答超时
解决方式:排查服务端超时原因

-7 ECI_ERR_TRANSACTION_ABEND 事务异常终止
解决方式:检查PD是否存在、检查程序(目录)权限、排查后台程序BUG

相关文章

  • CICS ECI常见错误码

    ECI返回码 常见错误及解决方式 -3 ECI_ERR_NO_CICS 连接不可用解决方式:重启客户端 -4 EC...

  • HarmonyOS安装调试

    1. HarmonyProfile.json 解析相关错误码问题描述:【常见解析相关错误码】[HARMONY_IN...

  • 05使用 Go 定义错误码

    简介 设计错误码 代码实现 常见的错误码 总结 当前部分的代码 简介 不管在什么系统中, 定义错误码都是必不可少的...

  • 错误码

    1.错误码范围及常见错误码 (1)错误码范围 100-199 用于指定客户端应相应的某些动作。 200-299 用...

  • CICS中的服务端、客户端、网关与应用

    名词解释 cics servercics服务端。负责接收并处理客户端请求 ctg (cics Transactio...

  • Socket 常见错误码及说明

    Socket 常见错误码及说明 Socket error 0 – Directly send error ...

  • OpenGL

    错误码[https://www.khronos.org/opengl/wiki/OpenGL_Error]说明常见...

  • 常见错误码

    1xx(临时响应)表示临时响应并需要请求者继续执行操作的状态代码。 代码 说明100 (继续) 请求者应当继续提出...

  • 常见的HTTP:401错误码:

    常见的HTTP:401错误码: 401.1-Logonfailed.-登陆失败 401.2-Logonfailed...

  • PHP curl请求错误汇总和解决方案

    这里列举了一下curl返回的常见错误码,方便下次排查问题:

网友评论

      本文标题:CICS ECI常见错误码

      本文链接:https://www.haomeiwen.com/subject/ihsipctx.html