Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1337897
  • 博文数量: 932
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 10208
  • 用 户 组: 普通用户
  • 注册时间: 2011-07-08 12:28
文章分类

全部博文(932)

文章存档

2021年(1)

2020年(134)

2019年(792)

2018年(5)

我的朋友

分类: 架构设计与优化

2019-12-19 10:40:00

For detail technical introduction about relationship, please refer to this wiki.
The relationship transaction data is maintained in assignment block below:

The data could be read from function module below:

Result stored in this component:

It contains interlinkage guid, source object guid and target guid.
Source guid: FA163EE56C3A1EE69C9B0D4E88D25F12
This guid points to the product:

Target guid: FA163EEF573D1EE4BB948D01BE952F51
This guid points to the customer maintained as relationship target in WebUI:

See the following code about how to read the data of relationship PRDCPN of a given product:

METHOD get_rel_data_by_type.
    DATA: lr_il_data     TYPE REF TO data,
          lt_link_idents TYPE comt_il_ident_tab,
          lt_message     TYPE comt_il_error_tab.

    FIELD-SYMBOLS:  TYPE ANY TABLE.
    DATA(lv_prod_guid) = get_guid_by_id( iv_prod_id ).

    DATA(ls_rel_meta) = get_rel_meta_data_by_type( iv_rel_type ).

    TRY.
        CREATE DATA lr_il_data
                       TYPE (ls_rel_meta-data_reltype_tab).
      CATCH cx_sy_create_data_error.
        RETURN.
    ENDTRY.
    ASSIGN lr_il_data->* TO .

    DATA(ls_il_ident) = VALUE comt_il_ident( sourceguid = lv_prod_guid ).
    APPEND ls_il_ident TO lt_link_idents.
    CALL FUNCTION 'COM_IL_API_READ'
      EXPORTING
        iv_reltype          = iv_rel_type
        it_link_idents      = lt_link_idents
      IMPORTING
        et_interlinkage_all = 
        et_messages         = lt_message
      EXCEPTIONS
        lock_failed         = 1
        OTHERS              = 2.

    et_data = .
  ENDMETHOD.

In put:

Output:

From the code we can know the fact: unlike product settype design, for each product relationship, there is no dedicated read function module designed, but still each relationship has each own persistence table. The relationship data is generically read out via function module COM_IL_API_READ.

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

阅读(493) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~