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的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    如何去掉修改Joomla、joomlart及其模版版权、标志、图标的方法
    如何joomla修改版权信息
    嫌我的键盘的backspace太小,就尝试了一下改键工具--keyTweak
    css3 -- 过渡与动画
    css3 -- 2D变换
    css3 -- 渐变
    css3 -- 颜色与不透明度
    css3 -- 背景图处理
    css3 -- 多列
    css3 -- 文本
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13447808.html
Copyright © 2011-2022 走看看