cancel
Showing results for 
Search instead for 
Did you mean: 

Adding values in DDLB :

Former Member
0 Kudos

Hi Experts,

I need to add an additional value in Drop down list box ( DDLB ), in standard field, in "Search Criteria".

Values which needs to be added are :

1) Industry Systems 1

2) Industry Systems 2

These are customized values already configured in SPRO.

CRM WebUI -> Account Management -> Search -> Accounts -> Search Criteria -> three dropdowns in all 4 rows.

Out of these dropdowns, i want to add my additional values in 1st dropdown of all the 4 rows. On the basis of which i will be

searching the Search crieteria.

Name of the Component : BP_HEAD_SEARCH

Name of the View : BP_HEAD_SEARCH/MainSearch

Thanks,

Chitrakant

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member189678
Active Contributor
0 Kudos

Chitrakant,

Under this View BP_HEAD_SEARCH/MainSearch, you have Impl class, and in that IMPL class there is a method called GET_DQUERY_DEFINITION(). Redefine this method and add your logic to add the values for the drop down here.

On how to insert the values, you can check standard Search Components.

Regards,

Harshit

Former Member
0 Kudos

Hi Arun / Harshit,

Thanks for your reply !!

Let me try doing that, I will get back to you.

Regards,

Chitrakant

arunprakash_karuppanan
Active Contributor
0 Kudos

Hi,

Look at the method 'GET_DQUERY_DEFINITIONS' of the search page controller class(_IMPL). This method will return DDLB options (CRMS_THTMLB_SEARCH_FIELD_INFO - DDLB_OPTIONS )for various search parameters. You can redefine this method and manipulate this ddlb table as required. Check and see if it helps.

Regards,

Arun Prakash

Former Member
0 Kudos

Please suggest. What is the procedure to do this, any method where i need to code. I am new in CRM WebUI.

Former Member
0 Kudos

Hi Chitrakanth,

Go to the GET_V Method of the particular attribute/field and add the key-value data. This would add the dropdown text and value, internally the search would consider the value field to search.

Regards,

Karthik

Former Member
0 Kudos

Hi Karthik,

Actually my Attribute name is "FIELD" and is a search attribute. I did exactly same as you are saying, but in debugging its is

not stopping there. Hence additional values are not getting added.

Thanks,

Chitrakant