Hi Dharmakasi,
I found event name 'SEL_EMPLRESP' inthe following outbound method, but using 'EH_ONEMPL_RESP' under event handler, I set breakpoint there, system can jump to there. Why are there event name different? If I create a new outbound plug for field 'Responsible', web page will be empty when pressing F4 in this field. Do I need to create a new NavigationalLink for it?
/////////////////////////////////////////////////////////////////////////////////////////////
METHOD OP_FINDEMPLRESP.
DATA:
lv_title TYPE string.
IF gt_emplresp_popup IS NOT BOUND.
lv_title = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_UIU_BT/EMPLOYEE_SEARCH' ).
gt_emplresp_popup = comp_controller->window_manager->create_popup(
iv_interface_view_name = 'SearchHelpWindow'
iv_usage_name = 'CUEmplRespValueHelp'
iv_title = lv_title ).
ENDIF.
gt_emplresp_popup->set_on_close_event( iv_view = me iv_event_name = 'SEL_EMPLRESP' ).
gt_emplresp_popup->set_display_mode( if_bsp_wd_popup=>c_display_mode_surrounded ).
gt_emplresp_popup->open( 'CLEAR_ALL' ).
ENDMETHOD.
/////////////////////////////////////////////////////////////////////////////////////////////
Kind Regards
Andie