cancel
Showing results for 
Search instead for 
Did you mean: 

WD Dynamic OVS

vinodkumar_thangavel
Participant
0 Kudos

Hi Friends,

I want to set a UI field in WD ABAP as OVS dynamically without setting any properties in the Context level and without any search help.Please suggest me any solution.

Regards,

Vinodkumar.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,


Have you tried this below code?..


data lo_nd_info type if_wd_context_node_info.

lo_nd_info = lo_nd->get_node_info( ).

CALL METHOD lo_nd_info->set_attribute_value_help
EXPORTING
name                    = '< Your attribute Name>'
value_help_mode = '131' " OVS value help mode
value_help            = '<Search help name>'.

The various possible values that you can pass to value_help_mode are as shown below.

De-activated  101

Automatic      111

DDIC             121

OVS              131

Hope this helps you.

Thanks

KH

vinodkumar_thangavel
Participant
0 Kudos

Hi ,

Thanks for your response , i tried the same above my OVS option is getting enabled but when ever i tried to execute that it is showing  the below message

'Input help not possible. Component usage OVS_SELECT does not exist'


but in this case i have the component OVS_SELECT.


Regards,

Viondkumar.

Former Member
0 Kudos

Hi,

Add the component usage to the view on which you are creating the OVS.

Thanks

KH

vinodkumar_thangavel
Participant
0 Kudos

Hi,

Even i have added the same at my view level,Kindly check the below screen.

Regards,

Vinodkumar.