zoukankan      html  css  js  c++  java
  • SAP CRM Product Sales status在中间件中的处理逻辑

    Example: I have a material in ERP maintained with status: 10

    According to SAP help:

    If a material has technical defects or is to be discontinued, you can block the material.
    If you set a block, orders, deliveries and invoices containing this material cannot be created at all, or only with a warning message. The system reactions to a blocked material depends on the type of block set.”
    When I download this material into CRM, it is displayed as “Blocked (Error)” in Sales Status field.

    How is this behavior implemented?

    Sales Status mapping between ERP and CRM

    This mapping relationship is downloaded via customizing download by object DNL_CUST_PROD3. Once done, the table CRMC_TVMS in CRM stores the relationship.
    Take the marked row below ( VMSTA = 10 ) for example, it means if the column SPVBC = B, the corresponding hard coded status in CRM will be marked as “active”.

    See related middleware inbound source code for example.

    CRM middleware inbound processing will only set the following three kinds of sales status for a downloaded product.

    The description for them are listed below:

    For a downloaded product, if it has sales organization specific data maintained in ERP, a default status value I1001 – Created will ALWAYS be set by line 24, regardless of the existence of sales status value. And If there is indeed sales status set in ERP, the configuration table CRMC_TVMS will be used to find logic how this sales status maintained in ERP will be handled in CRM.


    Please note that even though in the configuration entry, there are lots of column SPVBA, B, C, D…

    However in CRM middleware, only SPVBC is used.

    Last but not least, table COMM_PR_FRG_ROD has a field STATUS_OBJECT which stores a guid acting as a handle for product sales status. By using this guid, you can query table CRM_JEST to get product’s status.

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

  • 相关阅读:
    实验5 数独游戏界面设计
    实验4 颜色、字符串资源的使用 实验报告
    实验五 操作系统之存储管理
    实验四 主存空间的分配和回收
    实验三 进程调度模拟程序
    实验二作业调度模拟程序(先来先服务(FCFS)调度算法)
    实验八 SQLite数据库操作
    实验七 BindService模拟通信
    实验六 在应用程序中播放音频和视频
    实验五 数独游戏界面设计
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13581964.html
Copyright © 2011-2022 走看看