zoukankan      html  css  js  c++  java
  • SAP WebClient UI One Hit Navigation的实现方法

    One hit navigation means if only one result found during search, the detail page of that search result entity will be opened automatically without user manual action.

    See example below: after search button is clicked, the detail page of 201300024454 will be opened automatically.


    You could follow the below steps to achieve:

    (1) You must enable one hit navigation behavior for your business role.

    double click “Parameter Assignment”:

    add a new parameter ONE_HIT_DIRECT_DISPLAY with value TRUE

    (2) Implement your search button event handler as below.

    Usenavigate_if_result_is_unique to trigger the potential navigation.

    method EH_ONSEARCH.
        DATA: lv_result            TYPE REF TO if_bol_entity_col,
              lr_comp              TYPE REF TO CL_ZONEHITN_BSPWDCOMPONEN_IMPL,
              lv_onehit_navigation TYPE abap_bool.
        lr_comp ?= me->comp_controller.
        lv_result = zcl_jerry_tool=>get_query_results( me->typed_context->search->collection_wrapper ).
        IF cl_crm_uiu_one_hit_direct_nav=>navigate_if_result_is_unique( iv_value_help_mode = abap_false
                                                                        ir_result_col      = lv_result ) = abap_false.
           lr_comp->typed_context->searchresult->collection_wrapper->set_collection( lv_result ).
        ENDIF.
      endmethod.
    

    You should put the detail page of search result into a separate UI component and include it into search component via component usage.
    Expose its main window as interface view and inbound plug, so that one search result is unique, the detail page of that component could be chose and navigated via UI framework.

    (3) Create an entry for the detail component in “Define Work Area Component Repository“:


    (4) Define Navigation Bar Profile:

    choose Navigation bar profile TPM-PRO, double click on “Define Generic Outbound Plug Mappings”:

    Configure the target ID defined in step3 here

    Now you could test in UI.

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

  • 相关阅读:
    总结:工作 + 学习 (2019年)
    JVM 理解性学习(一)
    渗透神器cobalt strike在数字杀软环境下的使用
    普通路由器刷开源固件DD-WRT的简单过程
    云烟渗透题总结
    对thinkphp5.0框架的实例学习
    内网渗透 关于GPO
    简单尝试利用维控LeviStudioU的一栈缓冲区溢出漏洞
    试写foxit reader的ConvertToPDF功能的wrapper
    第05章下 加载内核
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13576460.html
Copyright © 2011-2022 走看看