ABAP-VOFM FOR MM-PO PRICE

摘要:
(1) SE38执行RV80HGEN以激活所有公式;该程序的功能是根据TFRM表将INCLUDERV61A701等代码添加到RV61ANNN等程序中。(2) SE38打开RV61ANNN,Utilities菜单˃UpdateNavigationIndex。系统增强功能如果您已将字段目录扩展到包括您自己的

ABAP-VOFM FOR MM-PO PRICE第1张

     (1) SE38 执行RV80HGEN, 激活所有公式; 该程序的作用是根据表TFRM,TFRMT在RV61ANNN等程序中增加INCLUDE RV61A701这样的代码
     (2) SE38 打开RV61ANNN, Utilities Menu>Update Navigation Index. 

System Enhancements

If you have extended the field catalog to include your own fields, you must make the relevant fields accessible in the Purchasing transactions.
This section describes how to proceed.

Communication structures
The following communication structures are relevant to pricing:

  • KOMK  (Price determination communication header)
  • KOMP  (Price determination communication item)
  • KOMG  (Allowed fields for condition structures)

    For technical reasons, the communication structure KOMG is used. This represents the total of KOMK and KOMP and contains all fields that can basically be used for price determination purposes. The inclusion of new fields in KOMK or KOMP automatically means that they are also included in KOMG.

INCLUDES
Fields for price determination are contained in the following INCLUDES:

  • Header data in KOMKAZ (INCLUDE in KOMK/KOMG)
  • Item data in KOMPAZ (INCLUDE in KOMP/KOMG)

USER EXITS
The new fields in the processing of purchasing documents are filled with the following USER EXITS:

  • Extension of LMEKO001 with function module EXIT_SAPLMEKO_001
    (for the header fields of table KOMK)
  • Extension of LMEKO002 with function module EXIT_SAPLMEKO_002
    (for the item fields of table KOMP)

    You must activate the USER EXITS with transaction CMOD.

Example

The example describes how to proceed in order to use the document field EKGRP (purchasing group) for price determination (in the standard system it is not defined for this purpose).

    1. First check whether there is a corresponding document field in the standard system.
    The purchasing group (= field EKGRP) is found in purchasing documents at header level.
    2. Check whether a header or item field is involved.
    Field EKGRP is stored in table EKKO and is therefore a header field.
    3. Include the field name ZZEKGRP in the communication structure KOMK (via the INCLUDE KOMKAZ) and assign the data element EKGRP to it.
    Note that new data fields must begin with the letters "ZZ" or "YY", because SAP keeps these name slots free in the standard system to protect them from being overwritten at the time of Release changeovers.
    4. Activate the structure.
    This causes those structures in which this INCLUDE structure is integrated also to be generated.
      5. Populate the new field in program ZXM06U14, which is used in the
      function module EXIT_SAPLMEKO_001, as follows:



      MOVE I_KOMK TO E_KOMK.
        MOVE I_EKKO-EKGRP TO E_KOMK-EKGRP.

    免责声明:文章转载自《ABAP-VOFM FOR MM-PO PRICE》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

    上篇HTML5 getUserMedia/AudioContext 打造音谱图形化IDEA将工程转为maven工程下篇

    宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

    随便看看

    Json 的日期格式转化(时区标准化)

    在JavaScript中,这无疑可以通过初始化Data()对象//converttomsecsinceJan11970localTime=d轻松完成。获取时间();步骤2:接下来,通过Data()对象的getTimezoneOffset()方法//obtainlocalUTCoffsetandconverttomseclocalOffset=d找出本地时间偏...

    element 导航菜单 控制路由跳转

    处理中心<我的平台<templateslot=“title”>选项1<el menu itemindex=“2-4-3”>选项3<消息中心<el menu itemindex=“4”>//www.ele.me“rel=”externalnofall...

    EwoMail 开源邮件服务器安装教程

    本教程示例中使用的主要域名是ewomail.cn。设置主机名EwoMail将在安装后默认使用带有域名前缀mail的主机名。例如,mail.ewomail。cn将系统主机名更改为mail.ewomail.cn。查看当前主机名hostname-f修改主机名,修改文件/etc/sysconfig/network修改文件/etc/hosts,添加mail.ewoma...

    ios 苹果和百度地图的相关使用

    同时由于苹果使用的是高德,不会像谷歌地图一样在国内乌龟一样的访问速度,确实做一些地图相关的东西,非常有吸引力。只是实现了显示一个百度地图的view。百度地图使用的是Objective-C++,这意味这必须要有一个.mm文件。...

    如何设置Navicat的显示字体与字体大小?

    方法/步骤打开Navicat点击菜单,再选择在界面,点击下的设置网格字体和大小设置编辑器字体和大小设置命令列界面字体和大小设置ER图表字体和大小,最后点击END...

    uniapp之页面间传递和接收数组

    uni-app如何在页面之前发送和传递数组?如果阵列是直接发送和传递的,则收到的消息如下所示。无法获取更多的对象值。接收数组对象的参数。您可以首先将数组转换为JSON字符串,然后在将其传递到页面后将其解析为JavaScript对象。...