cancel
Showing results for 
Search instead for 
Did you mean: 

F1 Help for a field in Webdynpro Abap

Former Member
0 Kudos

Hi Experts,

After the webdynpro application is run ,I need to display a help document text for the TextEdit  UI element ,once i press F1 button on it

I can see a popup window >> Help Center: Application for '<Component name>', once i press F1 button , there i am able to add

the help document text manually and save and also i am able to see the same text once i press F1.

Please let me know where this help text is going to be saved, it didn't asked any request. will the same help be displayed once it is moved from development to quality to production.


Is there any alternate way to display F1 help.


Plzz suggest.

Thanks in advance


Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

check this comp WDHC_COMPONENT that gets called for help center

Thanks

Bala Duvvuri

Former Member
0 Kudos

Hi Krishna & Bala 

Thanks for your replies.

i am using the following logic for displaying the Help center.

  DATA: L_API_COMPONENTCONTROLLER TYPE REF TO IF_WD_COMPONENT,

           L_APPL  TYPE REF TO IF_WD_APPLICATION.

     L_API_COMPONENTCONTROLLER = WD_COMP_CONTROLLER->WD_GET_API( ).

     L_APPL = L_API_COMPONENTCONTROLLER->GET_APPLICATION( ).

     L_APPL->OPEN_HELP_CENTER( ).

It is working Fine.

In my requirement there are 10 Textedit ui elements , for each Textedit i want to place 10 Iconbuttons adjacent to them , and write the above same logic in their actions.

The issue i am facing is , the Help Text i maintained in Note for one Help center is appearing for all others.

But i want to see every helpcenter has it's own Help text in the Note.

Thanks in advance

RK v

Former Member
0 Kudos

Hi RK,

Are you using stnandard data element or custom one. If it is standard one you will get help in all systems. If it is custom field go to data element in change mode, there you will find DOCUMENTATION button, click on that and maintain some text for F1 help.

Please also check this..

https://help.sap.com/saphelp_ppm400/helpdata/en/44/336208da18060be10000000a155369/content.htm

http://help.sap.com/saphelp_nw70ehp1/helpdata/en/45/11e345459d7201e10000000a155369/content.htm

Cheers,

Kris.

ronaldo_aparecido
Contributor
0 Kudos