zoukankan      html  css  js  c++  java
  • 【SD系列】SAP SD模块-创建供应商主数据BAPI

    公众号:matinal
    本文作者:matinal
     

    前言部分

    大家可以关注我的公众号,公众号里的排版更好,阅读更舒适。

    正文部分

    关于创建供应商主数据BAPI:SD_CUSTOMER_MAINTAIN_ALL的一点解释

    as it has the same parameters, I have checked the code and could
    see, what I have to fill in for changing, inserting and deleting.

    1:The table parameters starting with Y are for deleting data. 

          All lines which should be deleted, have to be filled in here. 

          The field KZ has to be space.

    2:The table parameters starting with X are for inserting and changing data. 

          All new lines and the others, which should be changed, have to be filled in here. 

          The field KZ has to contain an 'I' for new data and an 'U' for changing existing data.

    以下转自其他博客:

    Y表放的原数据,标记设置为SPACE

    X只放的新数据,标记设置为I(插入)或者U(更新)

    旧:如果上传文件中客户的银行信息不存在,则去创建;存在的话,则不去管它。
    新:如果客户有银行信息,则将银行信息删除掉,只维护本次上传文件中该客户的银行信息。
     
    维护客户主数据所用到的函数是:SD_CUSTOMER_MAINTAIN_ALL
    table参数中有很多表,其中X打头代表要插入的数据,Y打头代表要删除的数据。

    应该是一致的。
    ---------------------
    作者:SAPmatinal
    来源:CSDN
    原文:https://blog.csdn.net/SAPmatinal/article/details/42644977
    版权声明:本文为博主原创文章,转载请附上博文链接!

  • 相关阅读:
    观察者模式
    strchr
    行转列
    Ja.Net:融合 Java 1.5 和 .NET !
    主题:借JavaFX之风,Swing终于熬到了出头之日
    DOM和SAX概念的总结
    几个linux的命令技巧
    gcc编译的东东
    详细介绍DOM和SAX
    oracle的number类型默认长度是多少?
  • 原文地址:https://www.cnblogs.com/SAPmatinal/p/11180697.html
Copyright © 2011-2022 走看看