Hi
We have succeed to implement a FPM application (FPM OVP Component) as a statement on CRM WebUI.
However, now, the problem is that Customers want us to use traditional WebUI Search Help (BSP Search Help).
Following is an example for BSP Search help used in UI Component WorkBench:
DATA:
lv_title TYPE string,
lv_attribute TYPE string,
lv_model TYPE string,
lv_event_string TYPE string.
cl_chtmlb_config_utility=>outbound_plug_event_info(
EXPORTING
iv_event_string = lv_event_string
IMPORTING
ev_model_name = lv_model
ev_index = gv_index
ev_attribute = lv_attribute ).
lv_title = 'Search Help'.
IF icmpvaluehelp_popup IS NOT BOUND.
icmpvaluehelp_popup = comp_controller->window_manager->create_popup(
iv_interface_view_name = 'SearchHelpWindow'
iv_usage_name = 'CUICMPValueHelp'
iv_title = lv_title ).
ENDIF.
icmpvaluehelp_popup->set_on_close_event( iv_view = me iv_event_name = 'SEL_ICMP' ).
icmpvaluehelp_popup->set_display_mode( if_bsp_wd_popup=>c_display_mode_surrounded ).
icmpvaluehelp_popup->open( ).
How can I use the WebUI Component as a Search Help Popup in FPM Application??
I understand the three ways to implement search help in FPM:
1. se11
2. OVS Search Help
3. Call WDA Search Help
Please Tell me if there is any possibility to get it.