自己實現一個SAP WebClient UI Repository Information System

注销發表於2020-09-01

For traditional ABAP artifact we have a handy tool Repository Information System in SE80 which can help us to efficiently locate the objects according to various search criteria.


自己實現一個SAP WebClient UI Repository Information System


For example, see my blog  A small tip to find message id and number by repository information system.

However, for CRM WebUI Component, it is not supported by this information system. Several days ago I was asked by my colleague to provide him a list of all UI Component which have utilized the Genil model node “Product”. Requirement: find all UI components which have context node bound to Genil model node “Product”.


自己實現一個SAP WebClient UI Repository Information System


Since there is no existing tool, so I write one.

REPORT zui_context_node_scan.DATA: lt_context_node TYPE TABLE OF vseoextend-clsname,
      lo_cls          TYPE REF TO cl_bsp_wd_context_node,
      lv_total        TYPE int4,
      lt_result       TYPE TABLE OF zwebuicontextnam.DELETE FROM zwebuicontextnam.SELECT clsname INTO TABLE lt_context_node FROM vseoextend WHERE refclsname =
   'CL_BSP_WD_CONTEXT_NODE'.lv_total = lines( lt_context_node ).LOOP AT lt_context_node ASSIGNING FIELD-SYMBOL(<node>).
  TRY.
      CREATE OBJECT lo_cls TYPE (<node>).
      ASSIGN lo_cls->('BASE_ENTITY_NAME') TO FIELD-SYMBOL(<name>).
      APPEND INITIAL LINE TO lt_result ASSIGNING FIELD-SYMBOL(<result>).
      <result> = VALUE #( context_node_cls = <node> bol_node_name = <name> ).
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
        EXPORTING
          percentage = ( sy-tabix * 100 ) / lv_total
          text       = | index: { sy-tabix }: { <node> } |.
      "WRITE: / 'context node class: ', <node>, ' bol node:', <name>.    CATCH cx_root INTO DATA(cx_root).
      WRITE: / cx_root->get_text( ), ' class: ' , <node>.
      CONTINUE.
  ENDTRY.ENDLOOP.INSERT zwebuicontextnam FROM TABLE lt_result.

Use this report, first I get a list of all UI component context node class from table vseoextend based on the assumption that a class could be considered as context node class as long as it inherits from super class CL_BSP_WD_CONTEXT_NODE.

The name of bound Genil model name is stored in attribute BASE_ENTITY_NAME of context node class.


自己實現一個SAP WebClient UI Repository Information System


So I finally store context node class name and bound Genil model node name to an Z table:


自己實現一個SAP WebClient UI Repository Information System


Now I run report and can simply query the Z table via BOL_NODE_NAME = Product:


自己實現一個SAP WebClient UI Repository Information System


And get to know that in my system there are totally 673 context node which are bound to Product Genil model node.


自己實現一個SAP WebClient UI Repository Information System


Since my colleague needs the UI component name, so I wrote another report to extract the UI component name based on context node class name:

REPORT zui_get_app_name_by_context.DATA: lt_context_node TYPE TABLE OF zwebuicontextnam,
      lt_app          TYPE TABLE OF o2pagpar,
      lt_ui           TYPE TABLE OF o2pagpar-applname.SELECT * INTO TABLE lt_context_node FROM zwebuicontextnam WHERE bol_node_name = 'Product'.CHECK sy-subrc = 0.SELECT * INTO TABLE lt_app FROM o2pagpar FOR ALL ENTRIES IN lt_context_node WHERE type = lt_context_node-context_node_cls.SORT lt_app BY applname ASCENDING.SELECT applname INTO TABLE lt_ui FROM o2pagpar FOR ALL ENTRIES IN lt_context_node WHERE type = lt_context_node-context_node_cls.SORT lt_ui.DELETE ADJACENT DUPLICATES FROM lt_ui.

Now the internal table lt_app contains the concrete information of UI component name and view name which the context node is in.


自己實現一個SAP WebClient UI Repository Information System


要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":

自己實現一個SAP WebClient UI Repository Information System


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2716714/,如需轉載,請註明出處,否則將追究法律責任。

相關文章