cancel
Showing results for 
Search instead for 
Did you mean: 

SET_ATTRIBUTE_VALUE_HELP is not found

Former Member
0 Kudos

Hi...

I am trying to use SET_ATTRIBUTE_VALUE_HELP to retrieve data dynamically .my client using sap net weaver 7.0 version.Please help me to fetch data dynamically.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member199125
Active Contributor
0 Kudos

Please be more clear when you post the question.

I hope you want to assign search help dynamically.if yes , check below.

DATA: lo_tabnode TYPE REF TO IF_WD_CONTEXT_NODE.

DATA: lo_tabnode_info TYPE REF TO IF_WD_CONTEXT_NODE_INFO.

lo_tabnode = wd_context->GET_CHILD_NODE( name = 'THCUS' )

lo_tabnode_info = lo_tabnode->get_node_info( ).

CALL METHOD lo_tabnode_info->set_attribute_value_help

EXPORTING

name = '

value_help_mode =

value_help =

value for 'value_help_mode' parameter is 131 for ovs, 121 for dictionary search help

Regards

Srinivas

.

Edited by: sanasrinivas on Jan 28, 2012 4:03 PM