博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LOAD_TYPE_VERSION_MISMATCH与TYPELOAD_NEW_VERSION错误分析
阅读量:2036 次
发布时间:2019-04-28

本文共 1014 字,大约阅读时间需要 3 分钟。

一、造成错误的操作

ECC端通过appended  structure修改数据源的抽取结构之后,将请求传到生产机。

二、错误造成的影响

ECC前段业务无法成功地将数据保存到后台表。

三、Runtime Errors

(一)   LOAD_TYPE_VERSION_MISMATCH

The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed at runtime.

The ABAP runtime system detected that the Dictionary-type "ZZ2LIS_02_ITM" changed during the flow of the transaction. As the type was already used in the old version and in the new type should be used in the same transaction in the new version, the transaction had to be cancelled to avoid inconsistencies.

(二)   TYPELOAD_NEW_VERSION

The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed at runtime.

The data type "ZZ2LIS_02_ITM" was loaded from the database during the program run. However, a type of a newer version than the one requried was found here.

四、错误原因

数据源抽取结构已激活,向 QRFC 队列中更新数据的更新程序正在执行时,字典的数据类型发生改变,造成字典类型与程序buffer中的类型不一致。

五、解决方法以及教训

(一)   解决方法:将抽取结构恢复为更改之前版本,并重新传输请求

(二)   教训:选取无业务操作的时段,传输请求

转载地址:http://fuqaf.baihongyu.com/

你可能感兴趣的文章
13.敏捷估计与规划——Release Planning Essentials笔记
查看>>
05精益敏捷项目管理——超越Scrum
查看>>
11.看板方法——建立服务水平协议笔记
查看>>
14.精益敏捷项目管理——认识精益笔记
查看>>
12.敏捷项目管理——治理敏捷项目笔记
查看>>
05.软件项目管理与敏捷方法——范围管理笔记
查看>>
00.敏捷回顾——引言笔记
查看>>
python学习手册笔记——20.迭代和解析
查看>>
python学习手册笔记——30.类的设计
查看>>
Big Analytice with Cassandra
查看>>
spring多个AOP执行先后顺序(面试问题:怎么控制多个aop的执行循序)
查看>>
leetcode 之 Single Number II
查看>>
关于AOP无法切入同类调用方法的问题
查看>>
Post with HttpClient4
查看>>
[LeetCode] 268. Missing Number ☆(丢失的数字)
查看>>
http1.0 1.1 2.0区别
查看>>
spring bean生命周期
查看>>
从线程模型的角度看Netty的高性能
查看>>
[LeetCode] 20. Valid Parentheses ☆(括号匹配问题)
查看>>
Mysql可重复读、避免幻读原理
查看>>