Possible to insert a HYPERLINK in document HEADER?

Subject: Possible to insert a HYPERLINK in document HEADER?
I have a 300 page document, where the first page is a "Table of Contents".
I would like to provide the readers with a QUICK way ("no-brainer/easy" way) for the reader to JUMP back to that "Table of Contents" page from any place in the document.
Can I, perhaps, insert a hyperlink to the "Table of Contents" in the document HEADER? Or is there a different way to go about this?
Thanks for anybody's creative answer (the simpler the better . . . .)

Hi.
Thanks for your reply.
It was originally a Microsoft Word document. I just clicked "convert to pdf" from the toolbar. Then, in Acrobat 8, I have inserted a page-number header.
Can I perhaps insert a hyperlink within that HEADER . . . pointing back to the first (Table of Contents) page?

Similar Messages

  • Insert Picture/Hyperlink as Document Property

    Hi All,
    I have been able to insert most of the metadata into Word template as document properties but the Picture and Hyperlink column is not available. I also tried using INCLUDEPICTURE field like this:
    {INCLUDEPICTURE "http://<Site>/SiteCollectionImages/{DOCPROERPTY CustomerFirstName}.jpg" \d}
    where CustomerFirstName is the Sharepoint Doc library column.
    Does anyone know how to do this? If this is Office question I can post it in that forum as well. Thanks for any pointers.
    Regards, Kapil ***Please mark answer as Helpful or Answered after consideration***

    Hi
    This may help you
    http://stackoverflow.com/questions/9613963/how-to-insert-sharepoint-metadatapicture-into-your-word-document
    http://techtrainingnotes.blogspot.in/2007/08/sharepoint-adding-hyperlinks-to-doc.html
    Please Mark Answered if my reply solves or helps in solving your problem. Thanks! 
    Amit Kotha

  • Can't insert widget as document head read only

    When I try to insert my LIghtbox Gallery widget into my web page in CS5.5 I get the message
    "This widget requires code that must be inserted into the head of the doucment. Insertion cannot happen as the head of this document is read only"
    How do i turn read only off? Or is there any other way to insert it?
    Many Thanks

    Hello Jenny,
    if I understand you correctly, you should only call the widget you need and click "code wiew"
    From there you have to copy the entire source code into an empty DW file. So you can see how that works.
    You can add only the needed code into your file or you can do it all in reverse, by adding your website contents into the widget source code.
    Hans-Günter

  • How to insert a HYPERLINK in a template Editable Field?

    Question:  How to insert a HYPERLINK in a template Editable Field?
    Hi
    Does anyone know how to insert a HYPERLINK in a template Editable Field?
    I want the link to always display the word "Cities".
    But the URL will change with each child page.
    Here's what I've got so far . . .
    <!-- TemplateBeginEditable name="Cities" -->Cities<!-- TemplateEndEditable -->
    Thanks so much!

    NOTE: This is to go into the TEMPLATE
    Your best bet is to keep the hyperlink OUT of the editable Field and to make the HREF attribute of the link editable.
    This would go in the head of your document:
    <!-- TemplateParam name="href" type="URL" value="" -->
    This would go where you want the link to appear:
    <a href="@@(href)@@">cities</a>
    THE BETTER WAY: You can either paste these quotes into the appropriate places in your template or you can insert:
    <a href="#">cities</a>
    and click inside the opening <a> tag.
    Then go to Modify > Templates > Make Attribute Editable
    In the dialog box "Editable Tag Attributes" you should now see "Choose which attributes of this A tag should be editable."
    If HREF is not showing in the drop-down, do Add and put it there.
    Check the box to Make this attribute editable.
    Give a name for this editable attribute (if you have more than one on a page, you will want it to be understandable, like "cities" for your cities links).
    Make sure it is of Type URL
    If you want a default URL in place, put one in the Default field.
    Then push OK.
    To use it, on each page, do Modify > Template Properties... choose the property to edit, and put the new URL in the entry field.
    Press OK.
    Beth

  • Inserting filename in a document

    How do I insert a filename into a document header?  Or replace a filename with an updated, changed filename? Using new Pages on iMac.

    I found this in Help in the Pages toolbar.  It is annoying that one has to type in the filename, but at least one can get the filename in the footer
    Add headers and footers
    Move the pointer over the top or bottom of the page until you see the header or footer area, then click inside it.You can use just one or any combination of the three fields for your header or footer.If you’re having difficulty seeing the header and footer area, choose View > Show Layout (from the View menu at the top of your computer screen). If you still don’t see the header or footer area, click Document in the toolbar, click Document, then make sure the Header and Footer checkboxes are selected.
    Enter your text and page numbers (optional).Depending on the existing header and footer content, and whether you have more than one section in your document, you may see an option to start a new header or footer.

  • It possible to insert lines between 2 other lines in Grid

    Hi
    Is it possible to insert lines between 2 other lines in the Grid. Example, I need to enter a new item between line 1 and 2 in the grid. Similar to inserting lines on the sales documents.
    Can any having any idea please share with me.
    Regards
    Senthil

    Hi,
    have a look at the DataColumns Collection
    A collection of DataColumn objects. Use this collection to add columns to the collection or remove columns from the collection.
    You can access the collection via the DataTable.Columns property.
    you'll find it in the UI API Dokumentation.
    i hope it helps you.
    regards
    David

  • Transfer document header text from billing document to FI document

    Dear all,
    Where do I specify that the document header text out of the billing document should be transferred to the corresponding FI document?
    Currently, the FI document header text (BKPF-BKTXT) remeans blank after transfer from billing document. We need this field to be filled in, but I haven't found how to have this filled in.
    In copy control from sales doc to billing doc, there is the possibility to transfer the Reference number & Assignment, but nothing about document header texts.
    Some say that it would only be possible via coding, but anybody has any idea if it might be possible via standard SAP?
    Many thanks!
    Best regards

    Hi,
    We also had a bit same requirement, which is to copy the billing header text to FI item text (BSEG-SGTXT). The solution we took is to use FI Substitution (t-code GGB1), so that every time a FI document created from SD... the substitution reads the billing header text and put it in the FI item text. I think the same method could be used for FI header text (BKPF-BKTXT). Below is the solution for your reference.
    Prerequisite:
    Document Type = 'RV' AND Reference <> '' AND
    ( Transaction code = 'VF01' OR Transaction code = 'VF02' OR
    Transaction code = 'VF03' )
    Substitution:
    Using exit which coding is as below.
    *&      Form  u900
          Copy Billing Header Text to SGTXT
         -->P_SGTXT    FI Item Text
    FORM u900 USING p_sgtxt TYPE bseg-sgtxt.
      DATA: lv_name TYPE thead-tdname,
            lt_line TYPE STANDARD TABLE OF tline,
            lw_line TYPE tline.
      lv_name = bkpf-xblnr.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          id                      = 'Z001'
          language                = sy-langu
          name                    = lv_name
          object                  = 'VBBK'
        TABLES
          lines                   = lt_line[]
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
      IF sy-subrc EQ 0.
        READ TABLE lt_line
          INTO lw_line
          INDEX 1.
      In Billing Header Text, the sign '&' (ampersand) is automatically
      added some characters so it becomes '<(>&<)>'.
      The logic below is to fix that issue.
        REPLACE ALL OCCURRENCES OF '<(>' IN lw_line-tdline WITH space.
        REPLACE ALL OCCURRENCES OF '<)>' IN lw_line-tdline WITH space.
        p_sgtxt = lw_line-tdline.
      ENDIF.
    ENDFORM.
    Regards,
    Teddy Kurniawan

  • How can I insert a table in the header?

    The question is easy: How can I insert a table of one row in the header.
    Thanks in advance.
    Jesús.

    There are multiple versions of Pages in circulation on Mavericks and Yosemite. Telling us which one helps with a more accurate answer.
    If you are referring to Pages v5, then you cannot insert a table into the header or footer, because implicitly, these are table cells too. The discontinued Pages ’09 v4.3 would allow table insertion in the document header/footer fields.

  • Inserting a logo into the header and footer

    Hey Team
     I have a workbook with 5 worksheets. On sheet1 I have a button programed to open a new Word document; pull information from fields on 3 other sheets and creates a letter from that data. I have two company logos pasted into sheet5,
    Pic1 and Pic2.
    I want to copy Pic1 and paste it into the header  and copy Pic2 and paste it into the footer of the newly created word document and have them both centered and on all pages.
    As of now I can copy the Pics and paste them into the document body but have had no luck with the header or footer.  Any help is greatly appreciated.   
    Thanks!

    First, when you create a Word doc you should always create it based on a predefined template.  The template has all your corporate styles set etc...VBA code should only be used to insert text.  I almost never use it manipulate anything that can't
    be set in templates.  The templates should already have the logos inserted.
    Set rptDoc = Documents.Add("C:\templates\example.dotx")
    rptDoc.SaveAs fileName:="C:\....................docx", _
    FileFormat:=wdFormatDocumentDefault, AddToRecentFiles:=True
    If you add a picture I recommend adding at it a predefined bookmark in the template.  I do this when adding signatures.  The bookmarks can be in the header.
    Sub SetBkMarkPic(xDoc As Document, xBkName As String, xFile As String)
    ' Set bookmark in document. Add file to bookmark
    If xDoc.Bookmarks.Exists(xBkName) Then
    xDoc.Bookmarks(xBkName).Select
    xDoc.Bookmarks(xBkName).Range.Text = ""
    Selection.InlineShapes.AddPicture fileName:=xFile
    End If
    End Sub

  • Is it possible to insert images in Adobe 9 Standard?

    It appears that it is not possible to insert images in Adobe 9 Standard.  There is no TouchUp Object Tool in the Advanced Editing Toolbar in the standard version.  Only a TouchUp Text Tool.  Is this not a basic function being able to add or change an image in a document?  The tutorials all show this as a capability but they are also demonstrating in the Pro version of Acrobat.  Is there a work around or have I been suckered into buying a product that doesn't quite meet my needs? 

    The Touch-Up Object tool is not available in Standard.
    Adobe Acrobat is not meant to be a word processing program; it is meant to be a cross-platform method for document exchange. Changes are best made in the source program. While the answer to your question would not have been obvious from this list, it is a good reference for the difference between Acrobat products: http://www.adobe.com/products/acrobat/matrix.html .
    If for some reason it is not possible to edit the source file and create the pdf again, you can insert your image as a form button and then flatten it. A lot more work, but post if you want help with this.
    --For other folks reading this thread, Adobe offers trials of its programs. Consider testing before buying.

  • Is it possible to create a hyperlink in a context menu entry?

    We use Altium Designer, which export schematics to PDF.
    For the parameters it uses the context menu of the pdf specs.
    One entry in the menu is a path to a document.
    Is it possible to get an hyperlink to this Path/URL, to open it directly out of the Adobe Reader XI?
    In the current output it is not possible.
    What must be done in the PDF definition to realize the hyperlink?
    best regards
    Silvio Kilz

    Are you using JavaScript to create this menu? If so then you can expand your code to open a file (or a web-link) based on the user's selection.

  • Picking up PDF URL for insertion as hyperlink in Word

    I just upgraded from Acrobat Pro 8 to 9, and I'm having trouble copying URLs from PDFs. I create a document in Word, then want to insert a hyperlink inside the doc to a PDF at a website.  I used to be able to select text, right-click to bring up the Insert Hyperlink dialog in Word, then open PDF and its URL would automatically insert into the dialog box or I could cut-and-paste the URL from the browser window. Now, all PDFs within a website open not in a browser but in a PDF window with a truncated URL and "[1]" inserted into the filename.  I then have to find the full URL and manually type it into the Word dialog box...and those URLs can get long.  Sorry if this question may be stupid and the answer obvious...I'm happy to wear egg just to get this functionality back.  I'll even downgrade to 8 if I have to...sigh...

    We may not be able to tell you much without seeing the Word document.

  • Document Header Text in BKPF

    Hello
       In BKPF the document header text is case-sentive.If we search for eg. test* then it would return all the texts starting with test(in small) and if we search for TEST* it would return the texts starting with TEST and not test also.I have a select option(Document Header Text) on the selection screen and irrespective of the case it should select all the texts which i give the search for.For e.g if I give test* then it should return texts starting with (test as well as TEST).How can this be achieved?
    Thanks.

    Hi,
    There is no simple solution to this. Either you build up a select-option yourself with all possible combinations of "test", "Test", "TEST" etc., or you would select all BKPF records in an internal table (usually not a good idea since this is normally a DB-table with many entries) and translate the BKTXT field to upper case and then select your records.
    Regards,
    John.

  • Document header text in Tcode FBl3n

    hello
    Plz help me regarding this issue.
    Our fico consultants demanded to display the document header text in the tcode FBL1n,FBL3n and FBL5n
    So through SPRO by using this path Financial Accounting (new)->General ledger Accounting->Master Data->G/L Acounts -> line items ->Define Special fields for line item Display.
    In this i made the new entry BKPF BKTXT ,
    Now after this field start coming in the above tcodes by setting the layout but the problem is that data inside is not coming and when i go to details the data is there.
    I am not gettting problem to get the data also.
    Now it is showing extra column with header Document header text but it is not showing the data inside it.
    and similar if i doing for someother field both things are coming data and field also.
    WHy this problem for document header text only.
    Plz let me know and give the solutions as soon as possible.
    Thanks a lot.

    Hi,
    You can use READ_TEXT to retreive header text.
    READ_TEXT provides a text for the application program in the specified work areas.
    The function module reads the desired text from the text file, the text memory, or the archive. You must fully specify the text using OBJECT, NAME, ID, and LANGUAGE. An internal work area can hold only one text; therefore, generic specifications are not allowed with these options.
    After successful reading, the system places header information and text lines into the work areas specified with HEADER and LINES.
    You have to used the READ_TEXT functions to read the SAP long text. e.g. Sales Order, Purchase Order Item text etc.
    To check your long text header, go into the long text. Click Goto -> Header
    This will give you OBJECT, NAME, ID, and LANGUAGE.
    Pass them in the FM, you will get the header text that you want.
    Also go through the below link:
    http://help.sap.com/saphelp_40b/helpdata/en/d6/0db8c8494511d182b70000e829fbfe/content.htm
    Hope this will help.
    Thanks&Regards,
    Naresh kumar.

  • XML Document Header

    I have created an XML document from scratch using the XmlBeans libraries and sent
    it to a file. This Xml file has the root node and all of its containing elements.
    But what is missing is the XML document header and my namespace definitions.
    Since I don't have the namespace definitions in the document header, the name
    spaces are redefined with the xmlns:xxx attrbute for each element in the XML file.
    This provides a lot of extra text in the document that is not required.
    What do I use in order to create the XML document header? Also how can I add
    the namespace definitions to the root element instead of them being defined for
    each element in the file? Looking at the documentation, it looked like I might
    need to sue the XmlDocumentProperties class but I'm not sure if this is it or
    if I need to use other classes too?
    Jerald

    This worked great. Thanks!
    One thing I found through trial and error is that I had to wait until my document
    was created, then I created a XmlCursor from my root node. After that I had to
    advance my XmlCursor to the first child element (rootCursor.toFirstChildElement())
    before actually adding my namespace definitions. Otherwise the namespace definitions
    were being added as an additional tag before my root element. But this was documented
    in the insertNamespace() member function (inserts into element before cursor).
    Thanks again.
    Jerald
    "Eric Vasilik" <[email protected]> wrote:
    >
    If you get an InputStream from am XMlBean, it will include the xml decl.
    Obtaining
    any character based stream will not. Basically, the xml declaration
    is generated
    when the XmlBean converts to bytes, but not when converted to chars.
    You can control the use of namespaces by inserting namespaces on the
    root element.
    I'm not sure what the current bits are on the website, but there should/will
    be a method on the XmlCursor called insertNamespace which you can use
    to insert
    a prefix/namespace (xmlns:prefix="namespace") as an attribute. The saver
    will
    use these attributes when persisting the store.
    "Jerald Pratt" <[email protected]> wrote:
    I have created an XML document from scratch using the XmlBeans libraries
    and sent
    it to a file. This Xml file has the root node and all of its containing
    elements.
    But what is missing is the XML document header and my namespace definitions.
    Since I don't have the namespace definitions in the document header,
    the name
    spaces are redefined with the xmlns:xxx attrbute for each element in
    the XML file.
    This provides a lot of extra text in the document that is not required.
    What do I use in order to create the XML document header? Also howcan
    I add
    the namespace definitions to the root element instead of them beingdefined
    for
    each element in the file? Looking at the documentation, it looked like
    I might
    need to sue the XmlDocumentProperties class but I'm not sure if this
    is it or
    if I need to use other classes too?
    Jerald

Maybe you are looking for

  • Since installing 8.0.1 I cannot send an attachment in AOL mail when I could with previous versions.

    When I try to send an attachment in AOL mail I get an error message "We encountered a technical issue, please try again." This happens every time over the past few days.

  • F110 - execute/clearing in future date

    Hi friends, How can I schedule that F110 just run in a future date, I mean, which is the field that I need to set up to determine that F110 will just run in one week, for exemple?! Thanks

  • Time Machine, External Hard Drive question

    Hello, I am formatting my OWC External at the moment and it asks me if I want to back up all my data with time machine on my external hard drive, do I need to do this? I plan on only using this external for recording my music directly to the external

  • Volume problems with Adobe Flash Player 11.5 r502

    Hello, Whenever I used to watch Youtube or other video through Firefox, my volume would remain at whatever volume I had set for Firefox in my Volume Mixer.  The last few iterations of Firefix (currently 17.0.1), however, have seen a new item, "Adobe

  • Unloading Point

    Hi Experts, I did a ground work and came to know that Unloading point is there with KNVA, LIKP and VBPA.  Now my requirement is using Sales Order i should get the unloading point info.  But Sales Order DS does'nt hold unloading point field.  What sho