Quantcast
Channel: SCN: Message List - SAP CRM: Webclient UI - Framework
Viewing all articles
Browse latest Browse all 7775

Re: how to find the logic where the search help for field is written in web ui.

$
0
0

Hi Vishnu,

 

In IMPL class of your search view you can find GET_DQUERY_DEFINITIONS method.

 

You have to change the ddlb option for your field.

Check the below code

 

FIELD-SYMBOLS:<fwa_result> TYPE crms_thtmlb_search_field_info.
  CALL METHOD super->get_dquery_definitions
    RECEIVING
      rt_result = rt_result.
LOOP AT rt_result ASSIGNING <fwa_result> WHERE field = 'CUSTOMER'."your field name
    lwa_ddlb-key = ''.
    lwa_ddlb-value = ''.
    APPEND lwa_ddlb TO li_ddlb.
    APPEND LINES OF <fwa_result>-ddlb_options to li_ddlb.

<fwa_result>-ddlb_options = li_ddlb.

ENDLOOP.

 

Regards,

Deepika


Viewing all articles
Browse latest Browse all 7775

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>