ABAP术语-Update Module

原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/20/1114178.html

Part of an update request. An update module corresponds to a function module CALL FUNCTION ... IN UPDATE TASK. There are V1 and V2 modules in an update request: V1 modules are time-critical database changes and V2 modules are not time-critical and should only be updated when the V1 update has successfully completed.

----------------------
分隔线上面是 SAP 标准文档中提供的说明
分隔线下面是我的翻译
----------------------
一个更新请求的部分。更新模块对应于函数模块 CALL FUNCTION ... IN UPDATE TASK.。在一个更新请求中有 V1 和 V2 模块。V1 模块是时间紧急的修改,而 V2 模块是时间不紧急的并且只能在 V1 更新成功完成后才更新。
原文地址:https://www.cnblogs.com/rena/p/9110440.html