关于sap:SAP-WebClient-UI-One-Hit-Navigation的实现方法

4次阅读

共计 1547 个字符,预计需要花费 4 分钟才能阅读完成。

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 的原创文章,请关注公众号 ” 汪子熙 ”:

正文完
 0