cancel
Showing results for 
Search instead for 
Did you mean: 

Change F4 Result in WEB UI?

Former Member
0 Kudos

Hi,

I have a requirement of changing the F4 Results of the F4 help for maintainence project in the RfC process type change request scenario.

I know what to do, I only not sure how the best way looks like and need advice for it.

This is UI I need to enhance

UI Component is AIC_PROJECT_VH

Regards

Abosi

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Abosi,

Go to Get_v method of the attribute for which you have attached F4 help.

In that you must be creating Valuehelp_f4descriptor object, here you must be exporting search help name.

Just take that name and go to se11 transaction,there you can change your f4 help result.

Thanks & Best Regards,

Nikhil

Former Member
0 Kudos

Implement  the method GET_V_XYZ of the field and add the following codes


method GET_V_NAMCOUNTRYISO.

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.

ls_map
-context_attr = 'struct.namcountryiso'.
ls_map
-f4_attr = 'LAND1'.
append ls_map to: lt_inmap, lt_outmap.
create object rv_valuehelp_descriptor type
CL_BSP_WD_VALUEHELP_F4DESCR
exporting
iv_help_id
= 'H_T005_LAND'
iv_help_id_kind
=
IF_BSP_WD_VALUEHELP_F4DESCR
=>HELP_ID_KIND_NAME
iv_input_mapping
= lt_inmap
iv_output_mapping
= lt_outmap.
endmethod.

note


ls_map-context_attr = Name of the attribute(ContectNode)

ls_map-f4_attr = Name of field in se11

iv_help_id  = Name of HelpValue in se11