Hello Vij,
We will find these title in drop down...you can check get_v of the attribute of related context node which contains. You can check standard code like this in get_v..
IF lv_category IS NOT INITIAL.
* Get values for TITLE_KEY
CALL METHOD cl_crm_uiu_bp_cust_get=>get_val_for_title_key
EXPORTING
iv_category = lv_category
RECEIVING
rt_value = lt_ddlb
EXCEPTIONS
error_occurred = 1
OTHERS = 2.
ENDIF.
now, Title key is fetched by static method get_val_for_title_key of class cl_crm_uiu_bp_cust_get.
now, we can check method get_val_for_title_key, where title key is fetched from tsad3t based on system language...if you want to change...then you would have to write your custom logic to fetch title key from table tsad3t by hardcoding language as DE.
Hope it will work for you.
Thanks,
Amit