ABAP术语-Sales Order】的更多相关文章

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…
Purchase Order 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/07/1094717.html Request or instruction from a purchasing organization to a vendor (external supplier) or a plant to deliver a certain quantity of a product or to perform certain serv…
下图是使用ABAP代码创建的S/4HANA的Sales Order的截图: 其中红色区域的值是我代码里硬编码的,而蓝色是函数SD_SALESDOCUMENT_CREATE自己创建的. 来看下代码: DATA: ls_header TYPE bapisdhd1, ls_headerx TYPE bapisdhd1x, lt_bapiret2 LIKE bapiret2 OCCURS 0 WITH HEADER LINE, po_order_number TYPE bapivbeln-vbeln,…
catalogue . 漏洞描述 . 漏洞触发条件 . 漏洞影响范围 . 漏洞代码分析 . 防御方法 . 攻防思考 1. 漏洞描述 Relevant Link: http://www.freebuf.com/vuls/94277.html 2. 漏洞触发条件 0x1: POC ">alert(1);"@sucuri.net 3. 漏洞影响范围4. 漏洞代码分析 app/design/adminhtml/default/default/template/sales/order/vi…
本文介绍下内部销售订单Internal Sales Order(ISO)在Oracle EBS中的流程,内部销售订单和组织间转移(Inter-Organization Transfer,IOT)的作用是类似的,都是用于在库存组织间实现物料转移.只是使用的场景不尽相同, Inter-Organization Transfer(IOT),一般适用于,操作者同时具有来源组织和目标组织物料控制的权利,那么直接做IOT来实现物料的转移,就可以了: Internal Sales Order(ISO),一般适…
RMA Sales Order – Stuck with "Awaiting Return Disposition"                     Action : (Prod) ð  Login to Unix ð  su – appklgpi ð  cd /home/metalink ð  sqlplus apps/--   @ontd0015.sql          Metalink – Solution :- RMA Stuck With Awaiting Retu…
ABAP 术语发布结束 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/21/1116236.html 经历了大约三个月,终于把 BC417 教程附录中的 ABAP 术语全部摘录完了.本分类以后将不再更新,从下周起不定期更新 SAP 语法.表.函数模块等文章分类,从理论走回实践. 老外很喜欢搞术语表,一般的技术书籍后面都会附一个术语表,好处是可以在需要的时候随时查找相关术语,并快速找到书籍中对该术语的详细说明. SAP 在互联网上提供了一…
SAP Cloud for Customer的Sales工作中心里有Sales Quote和Sales Order两个视图,一个用于销售报价单,另一个用于销售订单. 流程上是先有报价单 ,报价单是一份OFFER,并不具备法律效力,只有在生成销售订单后,即买卖双方都对报价单上的内容进行一些协商后,达成一致生成的最终订单,才具有法律效力. 现在我需要搞清楚Sales Order这个视图的UI是基于哪个Business object创建的. SAP C4C的UI都是基于MVC pattern设计的,首…
我们在创建Sales order销售订单时,需要指定一个RequestedDate: 这个字段绑定到了BO字段:CustomerQuote.RequestedFulfillmentPeriod.TimePointPeriod.StartTimePoint.DateTime 这是一个0-1的BO内部的association: 为什么Requested Date总是比创建日期晚两天呢? 是在这里配置的:2 Days意思就是比创建日期晚2天 抬头的Requested Date的值会通过C4C BO后台…
PURPOSE: This post is to provide a sample script to Release a hold on sales order using an API OE_ORDER_PUB.PROCESS_ORDER. TEST INSTANCE:  R12.1.1 SCRIPT: DECLARE v_api_version_number           NUMBER  := 1; v_return_status                VARCHAR2 (2…
PURPOSE: This post is to provide a sample script to Apply hold on a sales order using an API OE_ORDER_PUB.PROCESS_ORDER. TEST INSTANCE:  R12.1.1 SCRIPT: DECLARE v_api_version_number           NUMBER  := 1; v_return_status                VARCHAR2 (200…
事务码MM03查看物料主数据,如下图所示的行项目数据,包含物料ID,描述信息,数量,单价等等: 使用如下代码进行行项目读取: DATA: ls_read TYPE order_view, lt_item TYPE TABLE OF bapisdit, lt_header TYPE table of sales_key. APPEND INITIAL LINE TO lt_header ASSIGNING FIELD-SYMBOL(<header>). " 代表读取行项目 ls_rea…
错误消息KI 180:You must enter a company code for transaction Create sales document 代码: REPORT zcreate_so. DATA: ls_header TYPE bapisdhd1, ls_headerx TYPE bapisdhd1x, lt_bapiret2 LIKE bapiret2 OCCURS 0 WITH HEADER LINE. ls_header-serv_date = '20200101'. l…
假设我想修改S/4HANA里Sales Order抬头的Service Date字段SERV_DATE: 首先从数据库表VBKD里查找到SERV_DATE修改之前的值为2020年1月1日 使用如下代码,将这个字段的值改成2020年1月2日. REPORT zchange_so1. DATA: lv_num TYPE bapivbeln-vbeln, ls_doc_header TYPE bapisdhd1, lt_vbap TYPE STANDARD TABLE OF vbap. lv_num…
RMA Sales Order – Stuck with “Awaiting Return Disposition” Action : (Prod) ð  Login to Unix ð  su – appklgpi ð  cd /home/metalink ð  sqlplus apps/……   @ontd0015.sql Metalink – Solution :- RMA Stuck With Awaiting Return Disposition; FRM-40212: Invalid…
OE_ORDER_LINES_ALL.flow_status_code column values execute the below query to see the values. SELECT * FROM fnd_lookup_values WHERE lookup_type = 'LINE_FLOW_STATUS' AND language = 'US' WSH_DELIVERY_DETAILS.Release_Status can have any of the below vali…
Update Task 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/20/1114184.html Part of an ABAP program that changes the database. ----------------------分隔线上面是 SAP 标准文档中提供的说明分隔线下面是我的翻译----------------------一个 ABAP 程序中修改数据库的部分.…
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…
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…
Object Type 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/06/1093159.html Description created at definition time in the Business Object Builder of data (objects) used in the system. Examples: Documents (invoices, purchase requisitions, job app…
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…
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…
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…
Event 原文:http://www.cnblogs.com/qiangsheng/archive/2008/01/31/1059588.html Occurrence of a change of state in an object, which is published throughout the system. An event is an object type component. The list of possible events is defined with the r…
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…
Business Object 原文:http://www.cnblogs.com/qiangsheng/archive/2008/01/07/1028364.html Represents a central business object in the real world, such as a purchase order. SAP business objects describe complete business processes. By invoking methods know…