cancel
Showing results for 
Search instead for 
Did you mean: 

Application Help Link

Former Member
0 Kudos

We try to overwrite the application help link as described in <a href="http://help.sap.com/saphelp_nw2004s/helpdata/de/44/336208da18060be10000000a155369/frameset.htm">help_sap_com</a> (see code below).

However, the line <b>application_info->set_help_link</b> does not work since the class does not have the method. Has anybody already used this?

Code from help.sap.com

-


method onactionchange_appl_helplink .

  data api_main2        type ref to if_wd_view_controller.
  data component        type ref to if_wd_component.
  data application      type ref to if_wd_application.
  data application_info type ref to if_wd_rr_application.

  api_main2 = wd_this->wd_get_api( ).
  component = api_main2->get_component( ).
  application = component->get_application( ).
  application_info = application->get_application_info( ).

  application_info->set_help_link( 'HELPTYPE=SAPHELP&_LOIO=452C8201E9EF48D882BD10244D085661&_CLASS=BIC_OOO' ).

endmethod.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

With Stack 12 the problem is gone. Maybe the above solves it also, I could not test it because we could not meet the prerequisites.

Former Member
0 Kudos

Thanks for the hint, I'll be back once I have tested it

Former Member
0 Kudos

Hi,

which SP do you have? SET_HELP_LINK should be there in the newer support packages.

Regards, Heidi

PS: Check SAP Note 1002520, that should do the trick...

Message was edited by:

Heidi von Geisau