zoukankan      html  css  js  c++  java
  • SAP CRM附件创建的internal模式是什么含义

    When I am creating attachment for my business object via code provided in solution:

      ls_prop-name = 'DESCRIPTION'.
      ls_prop-value = 'created by Tool'.
      APPEND ls_prop TO lt_prop.
    
      ls_prop-name = 'CREATED_BY'.
      ls_prop-value = XXX - some one else other than sy-uname
      APPEND ls_prop TO lt_prop.
    
      CALL METHOD cl_crm_documents=>create_with_table
          EXPORTING
            business_object     = ls_bo
            properties          = lt_pro
            properties_attr     = lt_properties_attr
            file_access_info    = lt_file_info
            file_content_binary = lt_file_content
            raw_mode            = 'X'
          IMPORTING
            loio                = ls_loio
            phio                = ls_phio
            error               = ls_error.
    

    I meet with the error below: Characteristic of class CRM_L_DOC is not valid

    I debugged a little and found it is caused because the content management code regards “CREATED_BY” field as read only ( protected field ) if internal mode is inactive.


    I use where use list on the field internal_mode and found the FM below could activate internal mode with 02 passed into.


    After I call that FM in my program, the error is gone and attachment could be created. Unfortunately, I still could not specify the created_by field, I find it is always filled as sy-uname in line 298.

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

  • 相关阅读:
    (01)Docker简介
    Gym-101242B:Branch Assignment(最短路,四边形不等式优化DP)
    2019牛客暑期多校训练营(第三场)G: Removing Stones(启发式分治)
    POJ
    高维前缀和
    HDU
    BZOJ
    HDU
    POJ
    Gym-100648B: Hie with the Pie(状态DP)
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13447808.html
Copyright © 2011-2022 走看看