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

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 标准文档中提供的说明分隔线下面是我…
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…
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 标准文档中提供的说明分隔线下面是我的翻译---…
ABAP 术语发布结束 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/21/1116236.html 经历了大约三个月,终于把 BC417 教程附录中的 ABAP 术语全部摘录完了.本分类以后将不再更新,从下周起不定期更新 SAP 语法.表.函数模块等文章分类,从理论走回实践. 老外很喜欢搞术语表,一般的技术书籍后面都会附一个术语表,好处是可以在需要的时候随时查找相关术语,并快速找到书籍中对该术语的详细说明. SAP 在互联网上提供了一…
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…
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…
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…
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…
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…
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…
Field 原文:http://www.cnblogs.com/qiangsheng/archive/2008/02/01/1061244.html Name in an ABAP program for an area in working memory that has an address and length. Fields are normally occupied by a data object (sometimes by a field symbol or a formal pa…
Database Rollback 原文:http://www.cnblogs.com/qiangsheng/archive/2008/01/24/1051238.html Operation that cancels any database changes made since the beginning of an LUW (Logical Unit of Work) - that is, since the last database commit - when an error occ…
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…
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…
ABAP Dictionary 原文链接:http://www.cnblogs.com/qiangsheng/archive/2007/12/07/986204.html Central redundancy-free information repository for all application and system data in the R/3 System. The ABAP Dictionary describes the logical structure of applica…
Authorization Profile 原文:http://www.cnblogs.com/qiangsheng/archive/2007/12/21/1008992.html Element of the authorization concept. An authorization profile gives users access to the system. A profile contains individual authorizations, which are identi…
XML 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/21/1115743.html The "eXtensible Markup Language" is a data format for structured document interchange on the Web. XML itself is not a markup language, such as HTML, but rather a metalangua…
World Wide Web 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/21/1115728.html Internet service. The World Wide Web generates documents and presents them to Internet users in a standard format known as HTML. These documents can be linked togethe…
URL 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/20/1114193.html Uniform Resource Locator (URL): Address of a resource on the Web - typically a hypertext but, in the future, also SAP business functionality. The URL includes a domain name iden…
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 标准文档中提供的说明分隔线下面是我的翻译------------------…
SAPNET 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/17/1109823.html SAPNet is the intranet portal of SAP that provides a role-based and personal interface, and uses a Web browser as GUI . SAPNet is also available to SAP partners and customers…
Supertype 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/17/1109837.html Object type from which another object type (subtype) has inherited all object type components. Changes to the object type components of the supertype only affect the objec…
SAP GUI for HTML 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/14/1104996.html An ITS implementation model for SAP Internet Applications that emulates R/3 transaction screen dynamically in a Web browser. ----------------------分隔线上面是 SAP 标准文档中提…
Sales Order 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/14/1104979.html A customer request to the company for the delivery of goods or services at a certain time. The request is received by a sales area, which is then responsible for fulfill…
Sales Document 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/13/1103294.html Data base document that represents a business transaction in the sales department. The following sales document types exist: inquiry, quotation, sales order, outline…
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…