博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LOAD_TYPE_VERSION_MISMATCH与TYPELOAD_NEW_VERSION错误分析
阅读量:2034 次
发布时间: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://eamaf.baihongyu.com/

你可能感兴趣的文章
AI时代,智慧图书馆该如何重构?| AI TIME
查看>>
隐私保护与生成模型: 差分隐私GAN的梯度脱敏方法
查看>>
基于强化学习的中间商赚差价指导手册
查看>>
基于深度特征分解的红外和可见光图像融合
查看>>
直播预告:AAAI 2021专场一| AI TIME PhD
查看>>
一种基于Transformer解码端的高效子层压缩方法
查看>>
同一种方法,同一句话,翻译成英语和泰语,差别为什么这么大?
查看>>
弱监督、具有可解释性的应用题解答
查看>>
前序、中序、后序递归、非递归方式打印二叉树
查看>>
八大排序之插入排序(直接插入排序 & 希尔排序)
查看>>
LeetCode第五题:最长回文子串(C语言)
查看>>
深入理解Linux的权限
查看>>
C++之erase、remove 、remove_if的区别
查看>>
C++ Huffman树实现文件的压缩与解压
查看>>
C++ 异常
查看>>
02.基础设施即代码实践笔记
查看>>
02.HTML中使用JavaScript--JavaScript高级程序设计(笔记)
查看>>
05.看板方法——持续改进的文化
查看>>
欢迎使用CSDN-markdown编辑器
查看>>
bash shell简述
查看>>