zoukankan      html  css  js  c++  java
  • 如何通过阅读代码的方式查出SAP ERP和CRM里物料主数据描述信息的数据库存储表

    Recently I am working on a project whose prerequisite is that developer must figure out how a field for example Material description in ERP and Product description in CRM is stored.

    For example, user can maintain description for Material in ERP and Product in CRM:


    And my aim is to find out which two database tables store the content of the description field in ERP and CRM.

    How to find the database tables and fields where this description is stored in ERP and CRM separately?

    (1) Log on to a CRM system, tcode R3AC1, Position, type “Material”:

    Click tab “Mapping Modules:”

    Double click this subroutine:

    then double click again:


    MARC: Plant Data for Material in ERP

    MAKT: Material Descriptions table in ERP

    Double click this subroutine:

    Clear enough now?

    Note that com_product is not database table but just a structure. The structure is used as input to call product API to save the change triggered from ERP into CRM database table.

    However in this very case, it is fortunate enough since the database table COMM_PRODUCT has exactly the same name of fields:

    From line 23, keyword “shtext” and “short_text”, we can know the product descrption is modelled as set type in CRM product.

    Please read set type concept from sap help.
    Then find potential database table which stores product text in CRM using “*” in SE16:

    And this is just what I am looking for:


    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    深度学习训练模型时保存Log输出信息为文件
    Docker 测试场景领域应用剖析
    kafka性能测试
    [标点符] 初学机器学习算法之LightGBM (直方图+单边梯度采样优化+互斥特征绑定优化)
    【12月DW打卡】joyful-pandas
    【12月DW打卡】joyful-pandas
    【12月DW打卡】joyful-pandas
    【12月DW打卡】joyful-pandas
    【12月DW打卡】joyful-pandas
    Linux安装Redis
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13598667.html
Copyright © 2011-2022 走看看