cancel
Showing results for 
Search instead for 
Did you mean: 

How create a dropdown list in search criteria in crm webui

Former Member
0 Kudos

Hi experts,

I was  wondering how can i create a search help for a field in a search criteria, the field appear in the following ordenr:

Field1                     Field2                            Field3

Field_to_filter       is/correspondign/etc...      Here_I_want_the_dropdown_list

I don't know how implement the search help dropdown list (to appear seach help values in field3)

I will be thankful if you could help me

John

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi John,

You can redefine GET_DQUERY_DEFINITIONS method in your search view's implementation class (the class that ends with _IMPL).

After redefinining the method, first of all you need to call superclass method as:

call method super->get_dquery_definitions
     receiving
       rt_result = rt_result.

In internal table rt_result, you will see your "Field1" (Field_to_filter) key. You need to modify or create new entries in DDLB_OPTIONS field of rt_result.

Serkan.

Former Member
0 Kudos