ABAP术语-Update Module】的更多相关文章

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 mod…
V2 Module 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/21/1115720.html Analogously to V1 there are also update modules (function modules) for V2 updates which are called after the V1 modules. ----------------------分隔线上面是 SAP 标准文档中提供的说明分隔线下面是我…
V1 Module 原文;http://www.cnblogs.com/qiangsheng/archive/2008/03/21/1115707.html Function module created with CALL FUNCTION ’..’ IN UPDATE TASK. An update request contains at least one V1 module. ----------------------分隔线上面是 SAP 标准文档中提供的说明分隔线下面是我的翻译---…
Update Task 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/20/1114184.html Part of an ABAP program that changes the database. ----------------------分隔线上面是 SAP 标准文档中提供的说明分隔线下面是我的翻译----------------------一个 ABAP 程序中修改数据库的部分.…
Function Module 原文:http://www.cnblogs.com/qiangsheng/archive/2008/02/18/1071827.html General-purpose function. Function modules are external subroutines written in ABAP. Developed in the Function Builder, they are managed in a central function librar…
Update Data 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/20/1114169.html The data which is to be updated in the database. It is in the update table VBDATA before it is written to the application tables. ----------------------分隔线上面是 SAP 标准文档中提…
Update Key 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/20/1114171.html Unique character string which identifies an update record. The update key is in the update header. ----------------------分隔线上面是 SAP 标准文档中提供的说明分隔线下面是我的翻译------------------…
1:异常 https://www.cnblogs.com/rainysblog/p/6665455.html 2:update module https://www.cnblogs.com/cindyLu/p/3645423.html https://wenku.baidu.com/view/81ce505d0508763230121209.html 3:程序: REPORT demo_catch_exception. DATA(in) = cl_demo_input=>new( ). DATA…
一.update module 的创建和使用 最近遇到这样一个需求,需要先删除(delete)表中的数据,再将传递过来的新数据添加(modify)到表中. 但是如果下面modify的时候出现错误,使用rollback只能将最近一次操作数据库的操作回滚,即modify的操作回滚,delete的操作则不能回滚,这样就会出现错误.因此,为了确保数据插入数据库之后再删除之前的数据,在这里就需要使用update module,将操作数据库的操作放到该function中 . 在创建function modu…
ABAP 术语发布结束 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/21/1116236.html 经历了大约三个月,终于把 BC417 教程附录中的 ABAP 术语全部摘录完了.本分类以后将不再更新,从下周起不定期更新 SAP 语法.表.函数模块等文章分类,从理论走回实践. 老外很喜欢搞术语表,一般的技术书籍后面都会附一个术语表,好处是可以在需要的时候随时查找相关术语,并快速找到书籍中对该术语的详细说明. SAP 在互联网上提供了一…