zoukankan      html  css  js  c++  java
  • BAPI_PO_CREATE1 创建采购订单时价格的处理函数

    When you create a purchase order, values I, U and D refer to the conditionsthat were derived automatically, that is, you can also use U and D already during the creation. When you change a purchase order, they also refer to existing conditions.

     

     

    Prerequisite

     

    You must implement Note 494759 in your system to use these functions.

     

     

    Example A: CHANGE_ID = 'I'

     

    You create a purchase order with BAPI_PO_CREATE1. The system shoulddetermine the conditions for item 10 automatically. In addition, however, you want to calculate 3 % freight costs. You use condition type FRA1 for the freight costs. Then tables POCOND and POCONDX must be filled with the following values:

     

     

               POCOND-ITM_NUMBER = 10 (item number)

     

               POCOND-COND_TYPE = FRA1 (condition type)

     

               POCOND-COND_VALUE = 3.0 (condition value)

     

               POCOND-CURRENCY = %

     

               POCOND-CHANGE_ID = I

     

     

               POCONDX-ITM_NUMBER = 10

     

               POCONDX-ITM_NUMBERX = X

     

               POCONDX-COND_TYPE = X

     

               POCONDX-COND_VALUE = X

     

               POCONDX-CURRENCY = X

     

               POCONDX-CHANGE_ID = X

     

     

    Example B: CHANGE_ID = 'U'

     

    You create a purchase order with BAPI_PO_CREATE1. The system determines a price (condition type PB00) of 90 EUR for item 10. You want to change the 90 EUR to 100 EUR. To do this, fill tables POCOND and POCONDX with the following values:

     

     

               POCOND-ITM_NUMBER = 10

     

               POCOND-COND_TYPE = PB00

     

               POCOND-COND_VALUE = 100

     

               POCOND-CURRENCY = EUR

     

               POCOND-CHANGE_ID = U

     

     

               POCONDX-ITM_NUMBER = 10

     

               POCONDX-ITM_NUMBERX = X

     

               POCONDX-COND_TYPE = X

     

               POCONDX-COND_VALUE = X

     

               POCONDX-CURRENCY = X

     

               POCONDX-CHANGE_ID = X

     

     

    Example C: CHANGE_ID = 'D'

     

    Now you want to use BAPI_PO_CHANGE to delete the freight costs added in example A again. To do this, fill tables POCOND and POCONDX with the following values:

     

     

               POCOND-ITM_NUMBER = 10

     

               POCOND-COND_TYPE = FRA1

     

               POCOND-CHANGE_ID = D

     

     

               POCONDX-ITM_NUMBER = 10

     

               POCONDX-ITM_NUMBERX = X

     

               POCONDX-COND_TYPE = X

     

               POCONDX-CHANGE_ID = X

     

     

    It is not necessary to transfer additional item data. Theonlyinformation that must be transferred in addition to the condition tables is the purchase order number (PURCHASEORDER field).

     

     

    1. POCONDHEADER-CHANGE_ID

    The header conditionsaretransferred using the POCONDHEADER table. Here, the CHANGE_ID field has the same function as in the POCOND table (see above).

     

     

    Prerequisite

     

    You must implement Note 494759 in your system to use these functions.

     

     

    Example

     

    You create a purchase order with several items and want to distributethe amount 100 EUR to the items on a percentage basis. You defined condition type HB00 for this purpose. Then the POCONDHEADER and POCONDHEADERX tables must be filled as follows:

     

     

               POCONDHEADER-COND_TYPE = HB00

     

               POCONDHEADER-COND_VALUE = 100

     

               POCONDHEADER-CURRENCY = EUR

     

               POCONDHEADER-CHANGE_ID = I

     

     

               POCONDHEADERX-COND_TYPE = X

     

               POCONDHEADERX-COND_VALUE = X

     

               POCONDHEADERX-CURRENCY = X

     

               POCONDHEADERX-CHANGE_ID = X

  • 相关阅读:
    java中的Iterator和Iterable 区别
    Ubuntu 12.04 部署 PostGIS 2.1
    postgres模板数据库
    在ubuntu 10.04 上QGIS的安装步骤
    js----解决异步之Generator && async
    js----promise.all() promise.race()
    js----异步之Promise,Generator,Async
    js----CSRF-跨站请求伪造攻击
    js----js实现继承的方式及其优缺点
    vue----nextTick获取最新dom结构
  • 原文地址:https://www.cnblogs.com/elegantok/p/2548130.html
Copyright © 2011-2022 走看看