Rename the title of an tabstrip of an overview page

Hi all together,
I have an overviepage (shown as a view with tabstrips) and I need to rename one of these tabstrips at runtime.
I tried to redefine IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION of this view but this method is never called.
Do you have any other suggestions???
Thanks,
TW

You cannot rename the PDF files in the iBooks app on the iPad. In theory, this should work (copied from another discussion)
If the PDFs appear in iTunes (they would be in the Books section of the iTunes Library) then you can change the title by selecting each PDF, File->Get Info from the main menu and change the Name in the Info tab.  Then sync the newly titled PDFs back to the iPad.
If that does not work, you could copy the PDF files to your hard drive, rename them on the computer - but not within iTunes, drag them back into your iTunes library, and then sync again.
I really don't know of a shorter or more direct way of renaming the files. You may be able to rename PDF files in apps that let you edit or annotate PDF files, but I don't have any of those apps, so I can't speak with any certainty about it.

Similar Messages

  • Hello, I need some help on renaming the title on mi web pages!

    Hello, I need some help on renaming the title on mi web pages! appear to be locked by the template and I would like to know if is posible rename each page with diferent title? Thanks,

    @ Gary: No, there is no need to specify an editable region in the page title.
    If you make a template from a page, by saving it as a template (using "save as template"), the page title is automatically made editable.
    @ Jesus: if you look into the code of your template or of any childpage, it should read like this:
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Mi PageTitle</title>
    <!-- TemplateEndEditable -->
    meaning that the page title is indeed editable.
    If it does not look like this, something went wrong.
    Maybe do a little test, save your page as a template and see if the code reads as above.
    It is important that you keep your templates in the Templates folder in your root folder
    Do not move the folder or change its name, otherwise it will not work.

  • I want the title can connect to an iview or page

    Hello:
        In web page composer ,I am now create an teaser site content
        I want the title can connect to an iview or page under content administration
        In the Teaser Editor ,there is a Item Link ,but I can't connect a iview by this function.
    someone can  help me
    thank you very much
    lexian

    I have the same problem too.

  • How can I rename the title of an ibook?

    Ibook is a nice app. unfortunately i cannot rename the titels of pdf files, which are listed in my ibook. How does that work ?
    Thank for the help.

    You cannot rename the PDF files in the iBooks app on the iPad. In theory, this should work (copied from another discussion)
    If the PDFs appear in iTunes (they would be in the Books section of the iTunes Library) then you can change the title by selecting each PDF, File->Get Info from the main menu and change the Name in the Info tab.  Then sync the newly titled PDFs back to the iPad.
    If that does not work, you could copy the PDF files to your hard drive, rename them on the computer - but not within iTunes, drag them back into your iTunes library, and then sync again.
    I really don't know of a shorter or more direct way of renaming the files. You may be able to rename PDF files in apps that let you edit or annotate PDF files, but I don't have any of those apps, so I can't speak with any certainty about it.

  • Renaming the title of a frame from a panel

    Hi,
    I've searched the forum but I could not find anything that help me...
    I want to change the title of Main(a class that extends JFrame) from MainPanel(a class that extends JPanel)
    somewhere in my MainPanel I use:
    ((Main)getParent()).setTitle("A new Title...");Idont have any compiling error, but I get an exception
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: javax.swing.JPanel
            at mw_recipebook.MainPanel.actionPerformed(MainPanel.java:173)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
            ...I've used succesfully the method:((aClass)getParent()).aMethode();before, when using from a childPanel to call a methode in it's parentPanel, but from panel to frame it does not work.... help! How do I do that?
    Thank's

    ... or else you can try this:
    ( (JFrame)getRootPane().getParent()
    ).setTitle("Title");
    thank's allot
    I tought of getRootPane(), but not getRootPane().getParent()

  • Renaming the tabs on a tabstrip control for ME21N

    Hello SDNers,
    I am working on a screen enhancement for ME21N using user exit MM06E00.
    On ME21N a addiional tab called "Customer Data " has been added along with the standard tabstrip control.
    I wanted to rename this has "CFORM" now how do I do this.
    Please help me regarding this.
    Regards,
    Ranjith N

    Hi Nambiar,
    Go to the text symbols of Function Pool SAPLXM06 (function pool that contains the modules and includes and screens creatted using Enhancement MM06E005 ).
    Say you want to name the custom header tab (screen number 101) in PO as 'PO Header additonal data'.
    Then in the text symbols of Function Pool SAPLXM06 add '101' to "Sym" coulmn and 'PO Header additonal data' to "Text" column.
    Now after activating the text elements and the enhamcement project, if you run ME21N/ME22N/ME23N the name of the custom addtional header tab would be displaed as 'PO Header additonal data'.
    Hope this helps.
    Regards,
    Abhisek.

  • Renaming the Button " Group" in Web UI

    Hi Friends,
    I want to Rename the Button "Group" to "XXXX XXXXX" in Accounts page.
    Component-BP_HEAD_SEARCH
    View-MainSearchResult
    I have created the Enhancement set and have assigned also to the client.
    Then I enhanced the Component  BP_HEAD_SEARCH
    Then I redefined the method DO_PREPARE_OUTPUT in Class ZL_BP_HEAD_MAINSEARCHRES_IMPL with following Code:-
    method DO_PREPARE_OUTPUT.
    DATA:
      ls_button TYPE crmt_thtmlb_button,
      lv_lines TYPE  i.
    FIELD-SYMBOLS:
      <button> TYPE crmt_thtmlb_button.
    CALL METHOD super->do_prepare_output
      EXPORTING
        iv_first_time = iv_first_time.
    DESCRIBE TABLE gt_button LINES lv_lines.
    IF lv_lines < 5.
    change button-label from "Group" to "xxxx xxxxx"
    ls_button-text is the button-label
        READ TABLE gt_button INDEX 3
         ASSIGNING <button>.
        IF sy-subrc = 0.
          <button>-text = 'xxxx xxxxx' .     "#EC NOTEXT
        ENDIF.
        ls_button-enabled = abap_true.
        append ls_button to gt_button.
        endif.
    and Saved and Activated.
    But when I check the same thing in Web GUI i did not notice any difference. It is still appearing as " Group" .
    Is there anything I have missed out?? Also please let me know though it says no syntax error, is there any mistake in my Coding as I am a non Technical guy???  I have a strong feeling there are errors in the Coding...Please guide
    Regards
    Arup

    Try changing this:
    READ TABLE gt_button INDEX 3
    ASSIGNING <button>.
    IF sy-subrc = 0.
    <button>-text = 'xxxx xxxxx' . "#EC NOTEXT
    ENDIF.
    ls_button-enabled = abap_true.
    append ls_button to gt_button.
    To this:
    READ TABLE gt_button INTO ls_button INDEX 3.
    IF sy-subrc = 0.
    ls_button-text = 'xxxx xxxxx' . "#EC NOTEXT
    ENDIF.
    ls_button-enabled = abap_true.
    modify gt_button from ls_button INDEX 3.
    Edited by: urjose on Nov 26, 2008 10:39 AM

  • Is there a way to batch rename PDFs in a folder with content from the file? i.e. the title field

    Hi, I have a load of documents in a folder. Most have names like 2334.pdf, 3645.pdf etc. Does anyone know of a way to automatically get the title from withing each file and rename the file with that title i.e. doc title.pdf
    I found a product from a-odf.com that claims to do this, but I was hoping to use adobe's product.
    Thanks in advance
    Nelson

    There is no "out of box" tool per se that does this type of task, but you could probably script it with an Action that uses JavaScript.  If you are not familiar with Acrobat JavaScript then you will need to find someone who is familiar with it to assist you in building it.

  • TextEdit won't let me rename duplicated .html files as a .html file (manually typing it) either in the Finder or the Title Bar by selecting Rename or Save.

    TextEdit won't let me rename duplicated .html files as a .html file (manually typing it) either in the Finder or the Title Bar by selecting Rename or Save.
    I am only able to rename a duplicated .html file right after I create it, because the file name gets highlighted in the Title Bar, but after that there is no recourse. I I can Rename or Save the file if I want to just save it as a .txt, but I need it to be .html. I guess I can manually change the file later, but it's really annoying.

    I remember long ago a similar issue with TextEdit, but I can't remember if there was a solution or not.
    Do you have it set to Display HTML files as HTML code and also deselect "When Saving a File: Add ".txt" extension to plain text files"

  • I rename a song title, click it & doesnt save the title PLEASE HELP!!!

    So I rename a song title since it is not labeled correctly, and then it changed the title, and moves to the alphabetically correct spot, but then if i double click it after it is changed, it automatically changes the song title back to the original one, and then moves the file automatically to the old spot that it was before i changed the title. Does that make sense? Please help! I am finding it very hard when i rename a song, and it doesnt work!
    I am working with about 5000 mp3s and its a headache...
    thanks!

    View my earlier thread on id3 tag changes not sticking. I think I found the solution:
    ...These files would not allow the tag version to be changed from v2.4. However, if you ctrl-click->convert id3 tags and select id3 tags version as "none", it will default to v1.1. From there the tag info can be edited and the changes will stick. If you need to you can re-convert the tag version (eg.v2.3) and the edits will still be maintained.
    PowerBook G4 1.67GHz   Mac OS X (10.4.7)   iTunes 6.0.5

  • Renaming the song title by right click -- Get Info. But no longer able to do so.

    I used to rename the songs in my iTunes from my PC while it was connecting to my iPhone by right click and Get Info. But I am no longer able to do that. When I right click, the Get Info part seems to be disabled for editing? Why is it so?

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    *''Once you get the pop-up, just select "'Start in Safe Mode"''
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How do I change the title FAQ to Knowledgebase?

    We've widened the use of the FAQ (module) to be a knowledgebase.  But, we have not been able to change the title on the detail page from FAQ.
    Is there a way to change the title?

    Batch renaming is not yet implemented in Photos. As a work-around for now you can search for Automator scripts that will do it.
    Sort order of Album list, Album contents and Folder contents can be changed by checking or unchecking the Keep Sorted By... option under the View menu. I know, very limited options...
    You can request features, point out bugs, etc, at Apple Feedback pages: 
      http://www.apple.com/feedback/
    Or directly for Photos:
    https://www.apple.com/feedback/photos.html

  • Is there a way to modify the name displayed in the Title Bar at the top of the Audition Window?

    It's not uncommon for me to have a copy of Audition versions 1.5, 2.0 and 3.0 all open at the same time if I'm doing some editing for a complex project. 
    It would be handy for me to quickly see which window I have open without having to recognise the icons of the different versions.  At the moment, each Title Bar just displays the Audition icon and the words "Adobe Audition".  I'd like to add the version number to the name, if it's possible.  I'm happy to edit the Windows Registry, if that is what is needed.
    Does anybody know where the Title Bar information is stored?

    I have an answer you might like Howard.
    You could simply export one title to a PRTL file, then duplicate it using an Excel VB macro to change the name of the file based on a list in an excel file. You could type in a couple of dates, then just drag down to the 365th row and all of the dates would be there waiting for the macro to rename the file. Then, if you are really talented, you could find the appropriate text in the XML file and change it to match the name of the title, but without the PRTL extension.
    That way the font and position and style would all be right and the effort would be in a file you could share with the world.
    Hmmm. I might have to try that myself one of these days. Could come in handy. If you are more comfortable with Word than Excel, create the dates in Excel and paste them into a table in Word. Just be careful not to mess up the
    Edit: Oh, and of course, you import the titles back into Premiere Pro.

  • In Pages I used to be able to edit a template and "save a version" to update the template. Now i have to rename the template to save the changes. Why is this happening? what happen to "save a version"? its no longer an option under "file".

    In Pages, In the past, I was able to edit a template and "save a version" to update the template. Now i have to rename the template to save the changes. Why is this happening? what happen to "save a version"? its no longer an option under "file". And I can no longer open the actual template, when template is clicked, it automaticaly opens an "untitled" version???

    In your description you say the first document opens as the Title you gave it.
    Templates always open as Untitled so it sounds like you have saved a regular document, perhaps into your templates folder which is possible.
    Since you have already worked on it and it has been previously saved, Lion will now Save for you and Save a Version is available
    The other document does open as Untitled so sounds like a real template and as Peggy has pointed out will not have either Revert nor Save a Version until you Save it and have changed something in it.
    This is a classic example of just how Apple's supposedly "simplification" of the process, is leading to confusion of what has happened. That the conditions and resulting actions from those conditions is so convoluted says it all.
    It all reminds me of the Monty Python Life of Brian sketch with the "simplified" John Cleese instructions to the class, as to if you have a brother in an older dorm whether to hang your hat and bag on the hooks provided. The trouble is Apple does not get the joke, that it is transforming itself into a frequently self contradictory bumbling bureacracy. The price of unchallenged self appointed geniushood.
    The incoherent half baked stumbling juggernaut has reached new triumphs with its edict on enforced Sandboxing on developers when it is unable to follow even its own instructions.
    Peter

  • Having the title default to the document name

    I have tried getting this to work a couple of ways but they have been unsucessful so far.
    In my rule to have the title default to the name on checking I tried to use dOriginalName but that only works on check in revision and docRootFilename only works on urls since windows filepaths use oposite slashes.
    Would there be a better way to go about this or is there something I could add to my rule that could switch the slashes before putting the path into docRootFilename?

    Many thanks, Willam.
    I have another question, which may be a bit of a stretch!
    Is it possible to insert a variable (for example 'Our Software Name - ') that is added as a prefix to the title of every html page generated (i.e. the title bar as displayed in a web browser), but not reflected in the Topic Title within the Topic List in Robohelp?
    For example, say I have 2 topics, one titled 'About', and one titled 'Configuration'.
    It would be ideal if the html page title as displayed in a web browser reflected 'Our software name - About' and 'Our software name - Configuration', etc.
    I can see that I can add a variable within the General Tab of the Properties section of each topic, but that just seems to override the actual topic name.
    Alternatively I realise I could do a Search and Replace and add 'Our software name - ' after the  <title> tag for each html page within Robohelp, but that also renames the Topic Title in the Topic List to include the prefix.
    I hope that makes sense.
    Many thanks
    Dan

Maybe you are looking for

  • Data source not in active state in admin workbench in BIW

    Dear all, We had created a ZHR datasource  i our source,but when we replicate the same data source in our BW system it is coming in inactive state,can you pls tell what is the issue thanks

  • My ipod 5 won't connect to my home network

    I have an updated iPod 5th generation and for the last three days I've had limited internet access at my home network. It works everywhere else but not at home. It says it's connected but nothing that requires internet will load. I'm the only in the

  • How do you make a duplicate copy of a photo in iPhoto library

    I have been trying to make and additional photo in iphoto, ie give it a new name and edit it but still keep the original untouched.

  • Essbase data backup - 9.3.1

    Hi All, I have a question around Essbase data backups. We are on 9.3.1 and the Essbase data files (.ind and .pag) are under the default location (Hyperion\Essbase\App etc). One of our apps is 70gb and gets backed up nightly. Now is it necessary to ta

  • How can I share documents, with pictures, in icloud

    Hello, I have a question about Pages and iCloud: I created a document with 2 pictures in it on my mac. I imported them from Iphoto, worked fine. Then I uploaded the document to icloud.com, to share it with my iphone/ipad. The document appears in the