cancel
Showing results for 
Search instead for 
Did you mean: 

edit standard inputfield tooltip Wdynpro abap

former_member203139
Participant
0 Kudos

Hi,

I would like to know if its possible to edit and add a tooltip value on a standard field dynamically.

Thanks.

Jon

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

You need to create an exit in respective view and write the below code.

  DATA lr_inp TYPE REF TO cl_wd_input_field.

  lr_inp ?= view->get_element( 'INP' ).

  lr_inp->set_tooltip( value = 'REQUIRED_TOOLTIP' ).

Hope this helps you.

Thanks

KH

former_member203139
Participant
0 Kudos

HI Katrice,

It works, thanks a lot.

Regards

Answers (0)