cancel
Showing results for 
Search instead for 
Did you mean: 

Change standard search help

RicardoRomero_1
Active Contributor
0 Kudos

Hi all,

I want to change the search help assigned to a field in the context in a standard WDA.

Is it possible?

I think it's possible by code in a post-exit, but i don't know how.

Thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Ricardo,

Can you please explain what you are trying to do ? Are you working with standard search help? For having your own input help, you can use the Webdynpro Freely programmed input help.

Regards,

Arpan

RicardoRomero_1
Active Contributor
0 Kudos

thanks for replying Arpan.

What i want to do is the following;

I have a standard webdynpro, this WDA has an attribute in the context with a standard search help assigned to it.

I want to replace this standard search help by a custom search help.

I've used pre, overwrite and post exits to change somethings in standard webdynpro, but i don't know if i can change the search help dinamically.

former_member199125
Active Contributor
0 Kudos

Try by giving the serach help dynamically with below method.

SET_ATTRIBUTE_VALUE_HELP ( iif_wd_context_nod class)

call method lo_nd_info->set_attribute_value_help

exporting name = 'attrname'

value_help_mode = '121'

value_help = 'zsearchhelp '.

111 automatic help

121 for dictionary search help

131 for ovs help

Regards

Srinivas

Thanks and Regard

Srinivas

RicardoRomero_1
Active Contributor
0 Kudos

Thanks ! it's working fine !

Answers (0)