cancel
Showing results for 
Search instead for 
Did you mean: 

How to create F4 help in GET_DQUERY_DEFINITIONS

Former Member
0 Kudos

Hi Frds,

I search a lot but no helpful link found.

I need to create f4 help in Product Search Page. This f4 entires will comes from genric ztable where i will fetch all entires of my field. now issue is how can i display these entires in f4 popup.

PN: Get_v method is not helpful. We only can create in GET_DQUERY_DEFINITIONS method.

Thanks,

Rajan

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Rajan,

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 search key. You need to create new entries in DDLB_OPTIONS field of rt_result for your search key field.

Serkan.