zoukankan      html  css  js  c++  java
  • 如何用代码动态生成ABAP类型

    In one of my project the data type of the variable to hold service consumption result is not known in design time so I have to generate the data type dynamically via code, using ABAP RTTC( runtime type creation ). For detail of RTTC and dynamic programming, please refer to sap help.

    This blog will introduce a handy RTTC tool to generate any kind of complex data type in the runtime and demonstrate how to access the variable with that data type dynamically using field symbol.
    one example: I need to define a variable with the following data type. The structure of the data type is only known in the runtime:

       Figure1: an example of data type definition 
    

    which needs to be generate in the runtime

    The variable could have the component named “PRODUCTS” which is a table type, the table line type is a structure with five fields: PROD_ID, PROD_TXT, VALID_FROM, VALID_TO and COMPONENTS. The last field COMPONENTS is again a table type, with the table line type consisting of four fields COMP_ID, COMP_TXT, OPERATOR and again a table type for last field NOTES.

    The row in the picture above marked with green seems a little strange and not necessary at a first glance, but it really makes sense. Consider the setting for table type in ABAP Dictionary.

    How to use the RTTC tool

    I write a simple report to create the data type and define a variable with that type using the RTTC tool zcl_rttc_tool( source code in attachment ).
    To use the tool, you just need to put into the definition of the data type to be generated, and the exporting parameter er_ref contains the reference pointing to the variable with the very data type.

    To facilitate the filling of importing it_des_tab, I create three simple macro in report:

    DEFINE define_table_type.
    APPEND INITIAL LINE TO lt_definition ASSIGNING <type>.
      <type> = VALUE #( level = &1 field = &2 kind = ZCL_RTTC_TOOL=>c_table parent = &3 ).
    END-OF-DEFINITION.
    DEFINE define_tab_line_type.
      APPEND INITIAL LINE TO lt_definition ASSIGNING <type>.
     <type> = VALUE #( level = &1 kind = ZCL_RTTC_TOOL=>c_structure parent = &2 ).
    END-OF-DEFINITION.
    DEFINE define_element.
    APPEND INITIAL LINE TO lt_definition ASSIGNING <type>.
      <type> = VALUE #( level = &1 field = &2 kind = ZCL_RTTC_TOOL=>c_element type = &3 parent = &4 ).
    END-OF-DEFINITION.
    

    How to access the variable created by RTTC tool

    We get the variable from tool which is a reference points to a structure which has a transient technical type. The type is only valid withing current session.

    Although you can find the component PRODUCTS in debugger, you cannot use lr_data->products to access it in your code, since the structure is not known by compiler in design time.

    Instead, you have to access it via so called dynamic programming via field symbol:

    FIELD-SYMBOLS: <data>     TYPE any,
                   <prod_tab> TYPE STANDARD TABLE,
                   <comp_tab> TYPE STANDARD TABLE,
                   <note_tab> TYPE STANDARD TABLE.
    ASSIGN lr_data->* TO <data>.
    CHECK sy-subrc = 0.
    ASSIGN COMPONENT 'PRODUCTS' OF STRUCTURE <data> TO <prod_tab>.
    CHECK sy-subrc = 0.
    " create a new empty line to component PRODUCTS
    APPEND INITIAL LINE TO <prod_tab> ASSIGNING FIELD-SYMBOL(<prod_line>).
    CHECK sy-subrc = 0.
    "fill the field PROD_ID for the first table line
    ASSIGN COMPONENT 'PROD_ID' OF STRUCTURE <prod_line> TO FIELD-SYMBOL(<prod_id>).
    CHECK sy-subrc = 0.
    <prod_id> = 'MCF-0001'.
    ASSIGN COMPONENT 'COMPONENTS' OF STRUCTURE <prod_line> TO <comp_tab>.
    CHECK sy-subrc = 0.
    " create a new empty line to component COMPONENTS
    APPEND INITIAL LINE TO <comp_tab> ASSIGNING FIELD-SYMBOL(<comp_line>).
    CHECK sy-subrc = 0.
    " fill COMP_ID for the first table line
    ASSIGN COMPONENT 'COMP_ID' OF STRUCTURE <comp_line> TO FIELD-SYMBOL(<comp_id>).
    CHECK sy-subrc = 0.
    <comp_id> = 'COMP_0001'.
    ASSIGN COMPONENT 'NOTES' OF STRUCTURE <comp_line> TO <note_tab>.
    CHECK sy-subrc = 0.
    " create a new empty line to component NOTES
    APPEND INITIAL LINE TO <note_tab> ASSIGNING FIELD-SYMBOL(<note_line>).
    CHECK sy-subrc = 0.
    " fill NOTE_ID for the first table line
    ASSIGN COMPONENT 'NOTE_ID' OF STRUCTURE <note_line> TO FIELD-SYMBOL(<note_id>).
    CHECK sy-subrc = 0.
    <note_id> = 'NOTE_0001'.
    

    the filled data is displayed in the debugger as below, let’s compare it with figure 1:


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

  • 相关阅读:
    弄懂JDK、JRE和JVM到底是什么
    精选Java面试题(二)
    精选Java面试题
    HttpPost请求将json作为请求体传入的简单处理方法
    Python在for循环中更改list值的方法
    vue 图片加载失败时,加载默认图片
    移动端,进入页面前空白,添加加载状态
    img 失效时 显示默认图片
    vue 全局组件的引用
    页面到达底部,加载更多
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13619642.html
Copyright © 2011-2022 走看看