cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding F4 help in CRM web ui

Former Member
0 Kudos

Hi all,

How to provide F4 help for the custom field in CRM WEB UI?

Regards,

Nithu

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Nitu,

have you added these fields using EEWB?

Regards,

Lijo Joseph

Former Member
0 Kudos

Hi,

Take help from bellow thread.It will give u sol'n.

Regards

Gaurav

Former Member
0 Kudos

Hi...

Enhance the component and in the GET_V method of the field write code that would provide F4 help...

If it is a value help , try this code:

DATA: ls_map TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,

lt_inmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,

lt_outmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab.

CREATE OBJECT rv_valuehelp_descriptor

TYPE

cl_bsp_wd_valuehelp_f4descr

EXPORTING

iv_help_id = 'class_name'

iv_help_id_kind = if_bsp_wd_valuehelp_f4descr=>help_id_kind_callback

iv_input_mapping = lt_inmap

iv_output_mapping = lt_outmap

iv_trigger_submit = abap_true.

class_name is the class that you need to create which would implement the interface method retrieve_custom_values of interface IF_BSP_WD_CUSTOM_F4_CALLBACK wher you write the code for retrieving the F4 help values.

Hope this may help you...

Thanks...