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

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…
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 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 标准文档中提供的说明分隔线下面是我…
Function Library 原文:http://www.cnblogs.com/qiangsheng/archive/2008/02/14/1068642.html Central repository for all function modules in the R/3 System. The function library is part of the Function Builder. ----------------------分隔线上面是 SAP 标准文档中提供的说明分隔线下…
Function Group 原文:http://www.cnblogs.com/qiangsheng/archive/2008/02/13/1067699.html Group of logically related function modules that share the same program context at runtime. A function group is the main program for the function modules it contains.…
Function Builder 原文:http://www.cnblogs.com/qiangsheng/archive/2008/02/03/1063196.html Tool for creating and managing function modules. You use the Function Builder to create, change, test and document function modules. You can assign function modules…
1: 定义一个有异常抛出的function module.  (zfm_moudle6),  该函数中有符合exceptions中的异常,将会自动将exceptions中的异常抛出. FUNCTION ZFM_MOUDLE6. *"---------------------------------------------------------------------- *"*"Local Interface: *" RAISING *" CX_SY_AR…
https://archive.sap.com/discussions/thread/1089149     First check above link where my problem is solved. General Solution (which might help): Go to T-code SE80 to navigate your own function group, and then activate it. The main reason of a failure o…
如果要获得一个function module的Where Used List,我们通常用的办法是使用ABAP workbench里提供的功能. where used list显示结果如下: 但我接到一个任务,在结果列表里还需要显示出使用了指定的function module的代码所属的Package, Application Component和Software Component. 如下图所示: 因此我只能自己开发一个工具ZCL_CRM_PROD_API_WHERE_USED.执行class的…
1:通过T-CODE  se11  创建一个structure   ZSTRU2. 2:   创建一个table type, 表名 ZTAB1. 3: 表的row type 选择 ZSTRU2 4: 创建一个 返回类型为 表类型ZTAB1 的function module  Z_RETURN_TABLE1 5: Z_RETURN_TABLE1 代码 FUNCTION Z_RETURN_TABLE1. *"----------------------------------------------…
1: 定义一个类,编辑里面的方法 method METHOD1. write EV_P2. ev_p1 = 'test'. endmethod. 2:在其它function module 中调用…
1: 在一个function group 中定义一个function module 2:在另外一个module中调用该module "调用其它function 要用 单引号 引着. 一个module中调用其它多个module zfm_moudle3 FUNCTION ZFM_MOUDLE3. *"---------------------------------------------------------------------- *"*"Local Inter…
http://www.sapjx.com/abap-function-module.html 1: 应该在function module 中向数据库插入数据…
ABAP 术语发布结束 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/21/1116236.html 经历了大约三个月,终于把 BC417 教程附录中的 ABAP 术语全部摘录完了.本分类以后将不再更新,从下周起不定期更新 SAP 语法.表.函数模块等文章分类,从理论走回实践. 老外很喜欢搞术语表,一般的技术书籍后面都会附一个术语表,好处是可以在需要的时候随时查找相关术语,并快速找到书籍中对该术语的详细说明. SAP 在互联网上提供了一…
Interface Parameter 原文:http://www.cnblogs.com/qiangsheng/archive/2008/02/26/1081800.html Parameter that determines how a function module is used. Function modules have five different interface parameters: Import parameters, Export parameters, Changin…
ABAP Editor 原文链接:http://www.cnblogs.com/qiangsheng/archive/2007/12/08/987498.html Program editor in the ABAP Workbench. You use the ABAP Editor to create and modify ABAP programs, function modules, screen flow logic and logical databases. You can ent…
E:\codeBase\top605\rescue-master\server\node_modules\_log4js@1.1.1@log4js\lib\log4js.js:321 throw new Error( ^ Error: Problem reading log4js config { appenders: [ { type: 'console', makers: [Object] }, { type: 'file', filename: 'logs/access.log', max…
RFC (Remote Function Call) 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/12/1101581.html RFC (Remote Function Call) is an SAP interface protocol. Based on CPI-C, it considerably simplifies the programming of communication processes between sys…
ABAP常用函数总结  alv .smartform. excel .text.邮件 .远程访问,FTP服务器...  **********常用功能function REUSE_ALV_GRID_DISPLAY  REUSE_ALV_GRID_DISPLAY_LVC  SSF_FUNCTION_MODULE_NAME'   ***************************功能function    VIEW_MAINTENANCE_CALL 维护表视图   SAPGUI_PROGRESS_…
Transaction 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/19/1112804.html Logical process in the R/3 System. From the user’s point of view, a transaction is a self-contained unit (for example, generate a list of customers, change the address o…
Lock Object 原文:http://www.cnblogs.com/qiangsheng/archive/2008/02/29/1085742.html Object type in the ABAP Dictionary. When you activate a lock object, you generate function modules that set and release locks. You can use these function modules in ABAP…
ABAP Workbench 原文:http://www.cnblogs.com/qiangsheng/archive/2007/12/10/989037.html Integrated graphical development environment of the R/3 System. The ABAP Workbench allows you to develop, modify, test and manage client/server applications written in…
此文章从网上抄摘,目的用于自己记录 DYNP_VALUES_READ – 读取SCREEN字段的值,也可以用来读取报表SELECTION SCREEN. DYNP_VALUES_UPDATE – 更新屏幕字段的值. GET_GLOBAL_SYMBOLS – 返回一个程序的tables, select options, texts, etc .甚至包含selection screen的文本定义. RPY_DYNPRO_READ – 读取屏幕 DY_GET_SET_FIELD_VALUE – 获得或…
Update Task 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/20/1114184.html Part of an ABAP program that changes the database. ----------------------分隔线上面是 SAP 标准文档中提供的说明分隔线下面是我的翻译----------------------一个 ABAP 程序中修改数据库的部分.…
Technical Object 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/18/1111205.html Generic term for: A component within a technical system, on which a maintenance task is to be performed (= functional location). An individual, physical object that…
R/3 Repository Information System 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/11/1100076.html Information tool that stores details about all development objects in the R/3 System and their relationships. The user interface of the R/3 Reposit…
qRFC-Monitor 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/10/1098543.html Central monitoring tool in R/3 for asynchronous data transfer when using the queued Remote Function Call (qRFC) between two R/3 Systems or between R/3 and external syst…
Method 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/05/1091077.html Component of classes in ABAP Objects. Methods are procedures for manipulating objects that use the attributes of the relevant class and contain its functionality. You define…
Interface 原文:http://www.cnblogs.com/qiangsheng/archive/2008/02/22/1077086.html Information tool that stores details about all development objects in the R/3 System and their relationships. The user interface of the R/3 Repository Information System r…