Skip to Content
Author's profile photo John Kalaiyarasan

Through the button activate the Search help

Hi Every One,

Through this document we get to know the activation on search help through button instead of F4 help.

First create one webdynpro component in se80 like below,

11.PNG

Then create Node with the name Node under that node create your attributes what ever you want here for example i had created Matnr like below,

11.PNG

Then create one method and do the coding like below,

11.PNG

method SH_METHOD .

  “ONACTIONCALL_VALUE_HELP .

   data: wd_node type ref to if_wd_context_node,

         wd_element type ref to if_wD_context_element.

   wd_node = wd_context->get_child_node( name = ‘NODE’ ).“Your Node Name

   wd_element = wd_node->get_element( index = 1 ). “Index of element

   CALL METHOD CL_WDR_VALUE_HELP_HANDLER=>HANDLE_VALUE_HELP“Method to call the SH

     EXPORTING

       CONTEXT_ELEMENT   = wd_element

       CONTEXT_ATTRIBUTE = ‘MATNR’. “Attributes name

endmethod.

Then go to your view do the context binding and design the layout like below,

11.PNG

Inside that Possible Value button onaction method call that component controller method like below then create the application and test your application.

11.PNG

After click on button you will get the Search help,

11.PNG

Regards,

John.

Assigned Tags

      2 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Former Member
      Former Member

      Thanks.. Useful for me..

      Author's profile photo Saravanan Subramanian
      Saravanan Subramanian

      Thanks for the good work...but if you also provide how to get back the selected value from f4 help, then it will be really implmentable in real time....requirements