使用代码读取SAP CRM product的所有属性
  TEZNKK3IfmPf 2024年08月02日 31 0
Created by Jerry Wang, last modified on Jun 02, 2016
  • content
  • content management
  • attribute
    You can use the following code to retrieve attachment attributes:
DATA: lt_ios                TYPE skwf_ios,
           ios_properties_result TYPE crm_kw_propst.
DATA(ls_ios) = VALUE skwf_io( objtype = 'P' class = 'BDS_POC22' objid = '0090FA0D8DC21EE398905A1611087AC8' ).
APPEND ls_ios TO lt_ios.
CALL FUNCTION 'CRM_KW_PROPERTIES_GET'
  EXPORTING
    ios                   = lt_ios
  IMPORTING
    ios_properties_result = ios_properties_result.

for objid just pass the guid of attachment physical instance, not logical instance.
The returned attributes could be classified as two types: the header attribute and the table attribute.
使用代码读取SAP CRM product的所有属性
使用代码读取SAP CRM product的所有属性

Those attributes could be found tcode DMWB:
使用代码读取SAP CRM product的所有属性
使用代码读取SAP CRM product的所有属性

The header attribute for product is stored in table BDSPHIO22
使用代码读取SAP CRM product的所有属性
the table attribute for product is stored in table BDSPHPR22.
使用代码读取SAP CRM product的所有属性

【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2024年08月02日 0

暂无评论

推荐阅读
  TEZNKK3IfmPf   9天前   16   0   0 编程开发
  TEZNKK3IfmPf   9天前   21   0   0 编程开发
TEZNKK3IfmPf