• SAP CRM附件模型和搜索相关的属性介绍


    For more detail about CRM content management, please go to my wiki page CRM Content Management.

    I tried to use them to perform the search and I expected only the attachment instances belonging to the given product I specified in INSTID are returned.

    To my surprise, the query result includes not only the attachments for the given product, but also returns lots of attachments belonging to other products created by me.

    Through debugging, I found the parameter CATID, TYPEID and INSTID is not passed into main search function module in line 61, which means they are not considered during search at all.

    Instead the search result are filtered by the three parameters in post processing, according to the attribute value “CRM_SEARCH_VISIBILITY” of each attachment instance:

    In Attachment Property UI, we can assign three kinds of value for “Visible in Search”:


    It is defined as instance attribute in Document model workbench:

    according to the filtering logic in code below, the attribute would work as below in CMAdvDocumentFinder implementation:
    No Restriction: the attachments with such attribute will not be filtered.

    1 – In Business Objects of the Same Object Type Only: the attachments whose host business object type not equal to search parameter TYPEID will be filtered out.
    2- Only in the Same Business Object: the attachments whose host business object instance not equal to the instance specified by search parameter TYPEID and INSTID will be filtered out.

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

  • 相关阅读:
    摄影基础知识(二)
    std::bind
    摄影网站汇总
    std::function
    常用路径说明
    摄影基础知识(一)
    JavaScript 箭头函数:适用与不适用场景
    软帝学院:Java实现的5大排序算法
    软帝学院:用Java编写计算器,代码展示!
    windows环境下运行java的脚本
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13613725.html
Copyright © 2020-2023  润新知