Changing label for "Show" link in WebHelp Output

We had a request from one of our users to change the label of the "Show" link in our context-sensitive WebHelp output.  Even though we have a topic discussing how to use the Help, and we include a description of the "Show" link there.
Can anyone tell me if this is even possible, to change the text of that label? Perhaps to "Show Contents" or "Show Navigation", etc.  Any ideas??
Thanks!
Susan

Yes, edit the LNG file – Project Settings > General tab > Language - Advanced

Similar Messages

  • Can't Change Labels for Properties

    I Can't Change Labels for predefine Properties
    or Custom Properties.
    I had done it with this:
    http://help.sap.com/saphelp_erp2004/helpdata/en/65/6fc63ed4027f6be10000000a114084/frameset.htm
    I just followed what the help said.
    but i can't see any change for my label of Properties.
    I had done it as follow steps.Please help me to
    Check if i miss some steps!
    1,I creat .properties files
      mylabels.properties
       in this properties file  i creat a key
           modified=date
      mylabels_zh_CN.properties
        in this properties file  i creat a key
           modified=u66F4u65B0u65E5u671F
    2,I made a jar file use the two .properties files
      named mybunding.jar
    3,I copy this jar file to
    .../j2ee/cluster/server<n>/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal/portalapps/com.sap.km.common.resourcebundle/lib
    4, Create a new metadata extension under Content Management -> Global Services -> Property Metadata -> Metadata Extensions.
      named it  my_metadatae_extension
       set  Bundle File=com.sap.km.common.resourcebundle.mybunding.mylabels
    5,restart the servlet engine,
    6 in the key for label of the properties
        i set modified the key i creat in step 1.
    when i display the properties it still didn,t display
    my created lable.
    How should i do? any step i miss? or any better solution
    for the lable?
    Please help me ,
    BestRegards
    Han

    Hi Han,
    here my corrections:
    1.
    I would use the filename "mylabels_cn.properties" and not "mylabels_zh_CN.properties"
    2.&3.
    This is the SP2 way for using the bundle files for properties. For NetWeaver you need to create a new PAR-file with the bundle file including the labels and translations as described <a href="http://help.sap.com/saphelp_nw04/helpdata/en/65/6fc63ed4027f6be10000000a114084/frameset.htm">here</a>.
    It's very easy if you use the example PAR file provided by SAP in SAP Note 817876, as mentioned in the referenced link (Prerequisites section).
    Read carefully the process in the link and try again. If you still experience problems, come back with the new detailed description.
    Hope this helps,
    Robert

  • Dynamically Changing Labels for Multi Row Block Buttons

    Forms [32 Bit] Version 9.0.4.1.0 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    On my local: Windows 7 OS
    I am having a difficult time in doing the following in forms, and not sure if it can be done?
    I have a multi row block,based on DB table, which displays filename and another column from the table.
    It also has a push button on each row, which opens and displays the physical file from its source, when clicked. The filename thus can have 3 diff statuses depending on its sources and accordingly corresponding button should display appropriate label:
    a) View Image (its is in content server and successfully imaged. In this case I display the file in the browser, from the content server, when the button is clicked)
    b) View File (Display the file from file system)
    c) View Error (Display imaging error message from the table, as file failed to make it to the imaging server)
    I have this logic currently coded in the post query trigger, at the block level, and tried using set_item_property(button_id, label, <button_lable>), where I programmatically set the button lable, based on the file status (imaged, not imaged or has error) in that row. This wroks well, only if all the files in the multi row block have the same status. If each of them have diff statuses, then only last processed files's status gets reflected into the button label. For eg: The file in the first row of the block is imaged, and one in the second row has an imaging error. The button label for the first row should say 'View Image' and button for the second row should say 'View Error'. But now buttons for both the rows display 'View Error', as thats what got processed last!
    I __can not use set_item_instance property for 'label'__ (which lets us dynamically change the label on the push buttons).
    Is there any way to do this for ORacle forms? I am now playing with having 3 diff button items in that block, laying them on top of each other and showing only those that are appropriate and hiding the others... But I am not sure it is going to give me what I need? I think I am going to end up facing the same issues as in above case!!
    Any expert advice is highly appreciated.
    Thanks in advance for your time:
    Libran_Girl
    Edited by: libran on Aug 30, 2011 8:04 AM
    Edited by: libran on Aug 30, 2011 8:05 AM

    <p>I have just updated this existing PJC, that was originally constructed to handle Text Fields. You can, now, also handle buttons with it.
    Set the Button's Implementation Class property to : oracle.forms.fd.MultiButton.
    </p>
    This is the code you have to put one triggers of your based block:
    When-New-Record-Instance trigger: (based on the EMP table)
    declare
         LN$Pos  pls_integer ;
         LN$Rec  pls_integer := Get_Block_Property('EMP', CURRENT_RECORD) ;
         LN$Max  pls_integer := Get_Block_Property('EMP', RECORDS_DISPLAYED) ;
         LC$C    Varchar2(15) ;
    Begin     
         LN$Pos :=  LN$Rec - (trunc(LN$Rec/LN$Max) * LN$Max) ;
         If LN$Pos = 0 Then LN$Pos := LN$Max ; End if ;
         If LN$Pos > 0 Then
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_LOG', 'true' );
              -- Add the new item --
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_NEW_REC', to_char(LN$Rec) );
              -- Set some properties --
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_LABEL', to_char(LN$Rec) || ',' || :EMP.ENAME );
              If :EMP.JOB = 'MANAGER' Then
                Set_Custom_Property('EMP.BT', LN$Pos, 'SET_FONT', to_char(LN$Rec) || ',Arial,bold,14' );
                Set_Custom_Property('EMP.BT', LN$Pos, 'SET_FGCOLOR', to_char(LN$Rec) || ',0,0,255' );
              End if ;
              If :GLOBAL.I > 250 Then :GLOBAL.I := 5 ;
              Else  :GLOBAL.I := :GLOBAL.I + 5 ;
              End if ;     
              LC$C := To_Char(LN$Rec) || ','
                   || To_Char(255) || ','
                   || To_Char(255-:GLOBAL.I) || ','
                   || To_Char(255-:GLOBAL.I) ;    
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_BGCOLOR', LC$C );
              Synchronize;
         End if ;
    end;When-Create-Record trigger:
    declare
         LN$N    pls_integer ;
         LN$Rec  pls_integer := :system.cursor_record ;
         LC$C    Varchar2(15) ;
    Begin     
         if get_block_property('EMP',TOP_RECORD) > 1 Then
              LN$n := :system.cursor_record - get_block_property('EMP',TOP_RECORD) + 1 ;
         else
              LN$N := :system.cursor_record ;
         end if;
         If LN$N > 0 Then
              Set_Custom_Property('EMP.BT', LN$n, 'SET_LOG', 'true' );
              -- Add the new item --
              Set_Custom_Property('EMP.BT', LN$n, 'SET_NEW_REC', to_char(LN$Rec) );
         End if ;
    end;Post-Query trigger:
    declare
         LN$Pos  pls_integer ;
         LN$Rec  pls_integer := Get_Block_Property('EMP', CURRENT_RECORD) ;
         LN$Max  pls_integer := Get_Block_Property('EMP', RECORDS_DISPLAYED) ;
         LC$C    Varchar2(15) ;
    Begin     
         LN$Pos :=  LN$Rec - (trunc(LN$Rec/LN$Max) * LN$Max) ;
         If LN$Pos = 0 Then LN$Pos := LN$Max ; End if ;
         If LN$Pos > 0 Then
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_LOG', 'true' );
              -- Add the new item --
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_NEW_REC', to_char(LN$Rec) );
              -- Set some properties --
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_LABEL', to_char(LN$Rec) || ',' || :EMP.ENAME );
              If :EMP.JOB = 'MANAGER' Then
                Set_Custom_Property('EMP.BT', LN$Pos, 'SET_FONT', to_char(LN$Rec) || ',Arial,bold,14' );
                Set_Custom_Property('EMP.BT', LN$Pos, 'SET_FGCOLOR', to_char(LN$Rec) || ',0,0,255' );
              End if ;
              If :GLOBAL.I > 250 Then :GLOBAL.I := 5 ;
              Else  :GLOBAL.I := :GLOBAL.I + 5 ;
              End if ;     
              LC$C := To_Char(LN$Rec) || ','
                   || To_Char(255) || ','
                   || To_Char(255-:GLOBAL.I) || ','
                   || To_Char(255-:GLOBAL.I) ;    
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_BGCOLOR', LC$C );
              Synchronize;
         End if ;
    end;Don't forget to copy the multirecord.jar file in your /forms/java folder, then add it to the archive and archive_jini tags of your /forms/server/formsweb.cfg file.
    Enjoy it,
    Francois

  • How can I change icons for saved links

    I have a number of links on my Bookmarks Toolbar for quick access. Each of them used to have an icon associated with it, but now one icon is missing. The link still works OK, so it's just a matter of not being able to spot it quickly with the icon.
    How can I tell FF what icon to use for a link?
    I can't do it on the toolbar or in the properties function for any link. I thought I used to be able to change it at will.

    You can do that with the Bookmark Favicon Changer add-on - https://addons.mozilla.org/firefox/addon/bookmark-favicon-changer

  • Change label for "Internal Goods/Services"

    Hi all,
    In SRM550, Internet Service BBPSC01, template SAPLBBP_SC_UI_ITS 110, I would like to change the description of the text "Internal goods/services".
    I guess this is corresponding to the BTN_INTERNAL_PRODUCTS.label in the code.
    However, I am not sure how to change it and where to find the corresponding translation.
    Thanks and regards
    Achim

    yes I have assignned the plant i mean BE_plant in the specified badi.
    But still its getting overwritten. So im guessing is that possible for internal goods/services.

  • Changing labels for commands - white paper guidelines don't work!

    Hi guys
    We are having a hard time translating the UICommand "html_version", and because we have tried so much, we are now considering workarounds. But perhaps some of you could help us?
    We have followed the guidelines from http://help.sap.com/saphelp_nw04/helpdata/en/e7/cb7339fb23644fa9e406c6bc431c9b/frameset.htm, but for some reason it is not working. It seems as if the par-file is not deployed correctly since we are not able to use it to translate our command.
    On the other hand: If we try to use a standard bundlefile (that therefore already ís deployed in the portal), the translation is working fine.
    We could really need some help on this issue. Any helpful soul who needs ten points?
    Best regards,
    Martin

    Hi Detlev
    No, we hadn't looked into the tracefiles, but I just did, and here's is the not-so-surprising info:
    << item 0 : >>#1.5#0011856B0F97001C00000061000013340004076781AF30F3#1134041045506#com.sapportals.wcm.rendering.uicommand.AbstractUICommand#sap.com/irj#com.sapportals.wcm.rendering.uicommand.AbstractUICommand#kmd05#1041##BLR12T_KDP_8573350#Guest#2393e7e067dd11da9b5c0011856b0f97#SAPEngine_Application_Thread[impl:3]_27##0#0#Error##Plain###Missing or wrong ResourceBundle information for command with alias <test_html_version> - java.util.MissingResourceException: Can't find resource for bundle java.util.PropertyResourceBundle, key search
    What I don't understand is why that file can't be found, when we have done exactly as the help.sap-documentation says. And our custom bundlefile is visible on the server, so something was created there, but perhaps not deployed correctly.
    Maybe the service does not start and work as it is supposed to do? (I have renamed it as described in the documentation).
    I really hope you can help, because we have been struggling with this issue for quite some time now.
    Best regards,
    Martin

  • How to Change the "Show" link appearance in all WebHelp Topics

    Hi there,
    I was wondering how to update the "Show" link in all of my help system topics.
    I selected the "Show Navigation Pane Link in topics" option when publishing my WebHelp project in Robohelp 9, and a "Show" link appears above my breadcrumbs that allows the user to get back to the TOC pane when they launch a Context Sensitive Help link from the application.
    This option is great - however, I would like to update the "Show" link to appear as a button, rather than a hyperlink. Is there a way to do this? I searched this forum but didn't come across anything, so I was hoping that someone out there could help me out with this.
    I have attached a screen shot of my help system with the "Show" link circled....this is what I would like to update to something else.
    Any advise on this would be greatly appreciated!!
    Thanks,
    Andrea

    Hi, Andrea
    You can change the text of the link fairly simply. But, I'm not aware of an out of the box solution to replacing that with a button. Perhaps Rick Stone has uncovered a hack in his Skinny on Skins that can offer a solution?
    He's at http://www.robowizard.com
    Meanwhile, if you want to change the Show text, here is the solution to that:
    1. File > Project Settings > Click the Advanced button
    2. Select the LNG tab
    3. Under the [Common] category scroll to Show=Show
    4. Edit the text after Show= to any text you like.
    John Daigle
    Adobe Certified RoboHelp and Captivate Instructor
    Evergreen, Colorado
    www.showmethedemo.com

  • Changing Text for Add to Favorites Link

    Does anyone know how we can change the label for the Add to Favorites link that is displayed on the page details icon?
    We've searched all over assuming it is in a properties file somewhere but we have not been able to find it.
    Thanks.
    EP6 SP2

    Hi Robert,
    Thanx for this. I was also looking for the same. I will check this out and see if it is working for me.
    I have few queries:
    1) Changing this will update all the iView/page toolbars of portal..right?
    2) Can we include some more property in the Options of the iView toolbar such as a "mailto" link or something as "Feedback" which wil open up the Mail Client.
    Or something else, basically any new link with some functionality associated?
    3)I did the same kind of modification of changing the properties files on the appintegrator PAR file where it shows the message of "No Usermapping done.." if you havent done the UserMapping for a System and then trying to access the iView based on appintegrator...uptill here.its OK..i can modify the text to display my custom Text. But my req. is that can i display formatted Text here?
    Such as a messge in 2 lines or some bold word etc. If i press enter in the message,it still appears in a single line and with \n\t...\n\t also gets displayed
    Regards
    Gaurav Gandhi

  • Server/browser requirements for WebHelp output files

    What are the UNIX server and browser requirements in order to
    display a WebHelp project output file correctly?
    When I generate the primary layout, I am not selecting 508
    format, and I select Java Applet as the preferred method for the
    Navigation Pane (checking the radio button for DHTML > Java
    Applet > Pure HTML as the order of preference.
    When viewing the help project on the UNIX server through
    Mozilla, the page appears to load and reload, load and reload.
    Sometims pressing Esc. stops it and you can view the TOC and
    content pane. The way around this is to generate Pure HTML only,
    but then the index and the glossary become very difficult to use.
    Robohelp Webhelp descriptions claim to work on all platforms
    and in all browser types. What requirement are we missing on our
    UNIX server so the project can display correctly?
    Thanks in advance for your time and trouble. :-)

    Hi GEWB,
    Here are some more details--
    Generate Webhelp output setup:
    Use lowercase filenames (recomm. for UNIX)
    Toolbar buttons: Content, Index, Search
    Navigation: Add breadcrumbs links
    Additional options: Enable Highlight Search results, Synchronize TOC automatically
    Navigation Pane preferred format: DHTML > Java Applet > Pure HTML
    Optimize speed for: Web site
    Q: how are you setting up your Linux to open the default project page?
    A: I use Linux only to launch the webehelp output.
    Q: Are you opening the GENERATED project default page or trying to open the project source files?
    A: I am trying to open the generated project default page. I copy the Webhelp folder to a Linux machine and launch the index.html page to see the output.
    Q: Why are you replacing the foreward-backward slash?
    A: In Linux '\' is not supported for hyperlinks/filepaths. Therefore I changed the backward slashes to forward slashes.
    The scenario:
    When the project files have filepath such as ../../doc/xyz/,
    when I view in Windows (IE)- I can access the link
    when I view in Linux (FF)- I see broken link with error message somewhat like "cannot find ..\..\doc\xyz\". (Note the changed usage of slash)
    This indicates that the generated files changes the forward slash to backward.

  • Change "Show" Link Name

    Hello. I am trying to change the "Show" link to "Display All
    Help" when viewing my compiled help project. I have gone into the
    project settings, advanced options and opened the LNG File tab.
    Under [Common], I have changed "Show=Show" to "Show=Display All
    Help," but it still says "Show" when the project is uploaded to my
    server and visitors launch the online help. I'm using RoboHelp 6
    with FlashHelp set as the primary layout. I'd appreciate any help
    or ideas anyone might have. Thanks,
    Ben

    Interesting. I got an email from RoboWizard with some
    information on this. This is what he said,
    I don't believe the .LNG file is among the mix of output
    files. Seems there is an issue with the LNG file not working to
    influence a change in the output.
    However, the fix seems easy enough. Inside the topic, where
    the code for the show link appears, a function named
    addShowButton() is called. A brief look at the .JS files seems to
    indicate the file named whtopic.js holds the function. Soooo, to
    set things the way the user wants to see, they will need to amend
    the whtopic.js file, locate the addShowButton
    function and configure the text they wish to see. Once they
    do this, the topic should display as intended.
    It's interesting because I did find the LNG file in my
    output! I didn't however test changing anything.
    Hope that helps.

  • How do I change the text on a label for a SAP delivered WD view

    Hi,
    I need to change the text that is being displayed for a label in a SAP delivered WD ABAP View. When I look at the properties for this label, the Text property is currently empty, so I assume that the text that is being displayed in the view is coming from the dictionary. I was hoping to change the text of the label via the Enhancement Framework. I created an OTR entry, then went into SE80 for the WD Component, I navigated to the view in question, I pressed the Enhance button and entered $OTR:<package>/<alias name> in the text property for the label. Finally I saved and activated and was prompted to create an Enhancement Implementation, which I did and I selected it. Everything seems to be fine (no errors or warnings). I then ran the WD application. My change was not there. I then went back into SE80 for the WD Component that I created the enhancement. I navigated to the View and looked in the text property of the label and saw that my change was not there. I repeated this process several times and each time when I added the OTR entry to the text property of the label, it saves and activates without issue (in enhancement mode), but when I run the WD App the change does not show up and when I go back to the WD View, my change to the text property is gone. I know that if I really wanted to I could register the object and add the OTR entry to the text attribute of the label, but I am trying to perform this change using a modification free enhancement. Can this be done via an Enhancement, or do I have to register the object and make my change using a modification?

    Hi Gregg,
    excellent question. I had the same problem as well before.
    What I have learned is that you cannot change a UI Element via Enhancements.
    You can add new UI Elements (e.g. new label) or remove existing elements, but you cannot change them (except the layout properties (e.g. colspan) maybe).
    The only possibilities I see is
    1. Remove the existing label, and add a new label with your desired text
    2. Do it as a modification
    3. Do it as a configuration (This means you go to the webdynpro application in SE80, right click and select "Create/Change Configuration)
    4. Do it as customizing (This means you add the URL parameter sap-config-mode=X to the URL, navigate to the label, right click on it, and select "Change Settings for Current Configuration").
    The disadvatages of 3) and 4) are
    - texts in configurations and customizing are not translatable (as far as I know)
    - if you have multiple configurations, you have to change the label multiple times
    Hope this helps a bit,
    Daniel

  • I've already changed email for my apple id more than 6 months. But 2-3 months ago until now I've recieved and email to ask apple id confirmation from me. I never confirm anything because I don't know,the link's attached, it's legal or illegal.

    Dear Apple support team,
    I've already changed email for my apple id more than 6 months. But 2-3 months ago until now I've recieved and email to ask my apple id confirmation from me about 6-8 emails. I never confirm anything because I don't know,the link's attached, it's legal or illegal.
    The latest link (just be sent to my email 1 hr. ago) : http://www.smartpixeladv.com/proma/Login/index.html 
    Text is:
    Dear Customer,
    We recently noticed an unusual activity in your iTunes account. Please complete the process to confirm your
    informations.
    Confirm Now>
    This link will expire three days after this email was sent.
    If you don’t make this request, your account will be blocked for security reasons.
    Apple Support​
    In my opinion, i think      "http://"   should be   "https://"  right?  Or Apple should show the link on your website  that we can find, re- check and click by ourselve. Or  Apple should do "How to confirm apple id" on your main page. ( in fact  i'm not sure you already done "How to" on your website yes or not, because I cannot find it)
    The apple id is sensitive security, it's concerned personal security and any credit card payment so please understand me that's why i must to interrupt your team to help me to solve this problem. I'm scared my account will be blocked. Please advice me.
    Wassa. (BKK)

    It is a phishing attempt to get your Apple ID and Password.
    You should forward it to Apple : [email protected]

  • How to change the label of a link based on a condition in a report.

    Hi all,
    I have a report, in which i created a link.
    i want the the label of the link to change based on a column value.
    for eg. i created report based on emp table which has a link on empno .
    if the deptno of the employee is 10 i want the link to be displayed as "employee of deptno 10".
    if the deptno of employee is 20 or 30 i want the link to be displayed as "others"
    Thanks in advance.

    One way I've found to do this is to put the condition part into the select statement. Use a decode to determine which link text you want to display, e.g.,
    select '&lt;a href="yourlinkhere?employee=' || empno || '"&gt;' || decode(deptno,10,'employee of deptno 10','others') || '&lt;/a&gt;' emplink from emp;

  • Is it OK for Spanish characters not to be entities in RH8 webhelp output?

    We are using RoboHelp 8. We have some Spanish words in our English-language help; these Spanish words use some of the accented characters that aren't present in English. My coworker tried using HTML entity codes to enter these characters in the code view, but she noticed that RoboHelp changed these to the actual Spanish character as soon as she switched back to Design view, and this is how they are in the generated webhelp HTML files as well.
    I think this is not a problem. The UTF8 declaration appears in the webhelp output, and the characters seem to appear correctly in the browsers I've tested. Am I correct? Should the output work in older browsers as well?
    Thanks,
    Tammy

    RoboHelp supports 35 languages so the fact that the Design Editor supports those entities does not surprise me.
    The following is from the RoboHelp Tour that can be accessed from my site.
    RoboHelp 7 introduced the ability to work with 35 languages. In RoboHelp 8, you can now define a language for the project, a language for a topic and a language for a paragraph.
    The search works with all the supported languages you use in the project.
    There is a lot more information in the help topic "Authoring content in multiple languages".
    It sounds like you are just including the odd word so the above may not be relevant, I just wanted to make sure you are aware of this.
    I can't help you on how older browsers will handle this but my thinking is they should, they are just HTML entities after all.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Trying to change the labels for some UI elements

    hi,
    Problem:  I am trying to change the labels for some UI elements and transport the views from one server to another server.
    the lables show changed in the source server but the changes dont reflect in the destination server
    Kidly help me to slove this problem

    Hi Sharad
    The process is as explained:
    1.     Firstly, go to the respective view, and to the Label and then delete the Label Text as   
                    mentioned in the attribute u2018TEXTu2019 of the Label in the view.
    2.     Next, Activate the View, if it asks for a change request, please assign it to a new TR.
    3.     Finally give the Label text again and then Save it and activate it.
    4.     Further transport the request to ECP and find the difference.
    This especially happens when we frequently change the WD Component and embedd it entirely in the Transport.
    I hope this information would be of a great help to all of us.
    Ponts if helpful.
    Regards
    Roshan

Maybe you are looking for