Output to Word displays htt file header/footer

We recently had to update our headers and footers in both .html and .doc output. After making the change in Project Manager and applying it to all topics, we then generated Word, and in the output it applied the htt/html changes to Word. In other words, it put the htt footers from some topics in the body of our compiled Word document. I even went back and replaced the old footers/htt file and generated and it's still doing it. Any help how to fix this? Jim

Hi there
Can you please post a screen capture showing what you see when you edit the Master Page where the Header and Footer are defined?
Cheers... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7, 8 or 9 within the day!
Adobe Certified RoboHelp HTML Training
SorcerStone Blog
RoboHelp eBooks

Similar Messages

  • Download files & header/footer problem

    Hello
    I'm having two problems on my application.
    I've created a table to save the files from a file browser following the tutorial.
    Everything is working fine except the download option. When I try to download the file I always get this message: "Forbidden
    The requested operation is not allowed".
    I've created the download_my_file procedure, executed the grant and changed the download link to use the new procedure.
    My other problem is with reports, I'm trying to make a template to my print reports, but header and footer aren't saved. DO I need to make something different for I can use header and footer?
    Edited by: Ownr on 21/Nov/2008 13:14

    Hi,
    Regarding your first question: Are you using OracleXE oder 11g with the PL/SQL Embedded Gateway (no Apache)?
    Then here might be a solution:
    http://daust.blogspot.com/2006/04/xe-calling-stored-procedures.html
    Best regards
    -Carsten

  • Why is my header/footer missing when I mail merge in Word 2013?

    I have just converted from Word 2007 to 2013 and now I am having an issue with my mail merge document. My mail merge document has our company letterhead set up in the header/footer. When I finish the mail merge by selecting 'Edit Individual Documents' using
    an Outlook contacts list - the first page is missing the header/footer but all the others are correct. 
    I use this document and mail merge every few days so this is going to cause me much grief if it can not be resolved.
    I have never experienced this issue before and I consider myself an advanced Word user.
    Has anyone else had this issue and knows how to fix it?

    Hi,
    According to your description, my understanding is that the first page of the Word document lost
    the header/footer, but the other page display well.
    If it is, please try the methods and check if it is helpful:
    Click on File>Options>Display and make sure that there is a tick mark in the box for "Show white space between pages in Print Layout view."
    Then, do you use DOC file (Create in Word 2007) or DOCX file?If
    you use Doc file, I recommend you convert it to DOCX file to test.
    If I misunderstand something, please let me know.
    Regards,
    George Zhao
    TechNet Community Support

  • Header/Footer Appearing on Title Page

    Hello,
    In RoboHelp 11, every time I generate Printed Documentation (Word), my master page header/footer appears on the Title Page. It doesn't appear on RoboHelp's default title page, but it appears when I use a topic as a Title Page or when I navigate to a Word doc Title Page in Print Document Section Layout.
    In the Print Document General - Content section, Multiple Header/Footer, <Default Title Page>, I select <None> for First Page (Apply to all pages in the section).
    In the Print Document Section Layout, I thought RoboHelp automatically rendered anything placed above the TOC as the Title Page, but for some reason, it's seeing my Topic Title Page and/or Word doc Title Page as just another page in the document and adding the header/footer to it.
    I think the last version of RoboHelp I used awhile back was 8 or 9, but I don't recall ever having this trouble adding a Title Page to a Printed document.
    Please help me troubleshoot this.
    Thank you!

    You may also find looking at the Employee Care 2 sample project useful as that describes how to use the new print layout.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Patch for displaying header/footer in the PDF output

    Hi all,
    I have issue in the xml report, I am not able to view the header/footer details while viewing the output in pdf format.
    I found the solution in the blogs, they mentioned apply patch(5352734) in the below URL(http://blogs.oracle.com/xmlpublisher/discuss/msgReader$103). I downloaded the patch but i dont knw how to apply this patch to generate the output with header/footer details.Even i read the readme.txt they said simply apply u5352734.drv file but i dont knw how to apply and where to apply this file.
    please guide me if any one know how to do this?..
    with regards
    Ram

    For seeing the header footer on the xml publisher desktop you need to Patch 5579683
    and follow these instructions
    1. From Template Builder, select Help -> About Template Builder.
    2. Go to the Workspace directory and change to the subdirectory jlib.
    3. Rename existing xdocore.jar and copy xdocore.jar from this patch.
    You can find the patch on metalink.
    Hope this helps.
    Thanks,
    Nanda

  • Need to output data to TXT with static header and footer but multiple rows

    Using APEX 4.0 and 11g - The only way I could find to get data out of APEX in TXT format was to use htp.prn. I load a cursor with the data and this works fine, the problem is that I need to have the file start with a string (*:P9_HEADER_STRING*) but it can only appear once in the output.
    Is there a way to add the *:P9_HEADER_STRING* to the output in a single TXT file? or is there another way I should be doing this?
    This is what I have now: The *:P9_HEADER_STRING* is in the loop which I know it can't be, but I can't figure out how to concatenate this string to the output from the loop. The rank() is being used because I can only send the selected number of records, ranked from highest. (I will have to do the same thing with a footer too, but that variable isn't in here yet)
    begin
    -- Set the MIME type
    owa_util.mime_header( 'application/octet', FALSE );
    -- Set the name of the file
    htp.p('Content-Disposition: attachment; filename="cra_outgoing.txt"');
    -- Close the HTTP Header
    owa_util.http_header_close;
    -- Loop through all rows in CLIENT_TABLE
    for x in (select * from (select XREF_NBR
    , TOT_AMT
    , '' SPOUSE_INFO
    , '' PHONES
    , NAME
    , SURNAME
    , '' MARITAL_STATUS
    , '' EMPLOYER_INFO
    , GENDER
    , '' CO_ADDRESS
    , '' PREV_ADDRESS
    , POSTAL_CODE
    , ADDRESS1
    , '' FILLER
    , rank() over (order by tot_amt desc, rownum asc) rn
    from client_table c where c.File_Seq_Nbr is NULL and c.xref_nbr in (select xref_nbr from ticket_table where to_char(ticket_issue_date, 'YYYY-MM-DD') between :P7_START_DATE and :P7_END_DATE))
    where rn <= :P7_NUMBER_RECORDS)
    loop
    -- Print out a portion of a row,
    -- separated by commas and ended by a CR
    htp.prn( *:P9_HEADER_STRING* || '03' || lpad(X.XREF_NBR, 12) || lpad(x.TOT_FINE_AMT, 11, '0') || '0201'|| lpad(x.NAME, 30) || lpad(x.SPOUSE_INFO, 60) || '00000000000000000000'|| x.DATE_OF_BIRTH || '0000000000000000' || x.GENDER || x.MARITAL_STATUS || lpad(x.EMPLOYER_INFO, 60) || lpad(x.CO_ADDRESS, 102) || lpad(x.ADDRESS1, 30) || lpad(x.POSTAL_CODE, 9) || lpad(x.FILLER, 21) );
    end loop;
    -- Send an error code so that the
    -- rest of the HTML does not render
    htmldb_application.g_unrecoverable_error := true;
    end;

    Yes, I've already done that, hence this part of the code I pasted above:
    begin
    -- Set the MIME type
    owa_util.mime_header( 'application/octet', FALSE );
    -- Set the name of the file
    htp.p('Content-Disposition: attachment; filename="cra_outgoing.txt"');
    -- Close the HTTP Header
    owa_util.http_header_close;
    -- Loop through all rows in CLIENT_TABLE
    -- Send an error code so that the
    -- rest of the HTML does not render
    htmldb_application.g_unrecoverable_error := true;
    end;
    I've solved my problem by loading the cursor data into a variable (inside the loop) and concatenating the header info to it (outside the loop). This works when there are only a few records but as soon as I get to 32767 bytes it's throwing an error because of the size. So that's a different issue altogether.

  • Need to modify header & footer of all Word documents in a SharePoint library

    We have lots of Word documents in a library where we need to adjust all of the documents' header region's distance from top of page. (A standard setting under the Header & Footer tab in Word). Since we wouldn't want to do this manually for all these
    docs, I am looking for a solution to update these by running a script or something. Any way of doing this by Powershell, or other suggestions?
    Henning

    I am having trouble getting the script to do it's thing. I seem to have gotten it to run through the right document library, but it fails right at the start. Seems to me that it can't get to load the template file to get the header of the template. Can you
    see what the problem is from the log? I included the initial errors from start to opening the first file in the library.
    PS C:\SharePoint Tools> .\SDSUpdateHeadersFromWordTemplate.ps1
    New-Object : Cannot load COM type Word.Application.
    At C:\SharePoint Tools\SDSUpdateHeadersFromWordTemplate.ps1:16 char:19
    + $word = New-Object <<<< -ComObject Word.Application
    + CategoryInfo : InvalidType: (:) [New-Object], PSArgumentException
    + FullyQualifiedErrorId : CannotLoadComObjectType,Microsoft.PowerShell.Commands.NewObjectCommand
    Property 'Visible' cannot be found on this object; make sure it exists and is settable.
    At C:\SharePoint Tools\SDSUpdateHeadersFromWordTemplate.ps1:19 char:7
    + $word. <<<< Visible = $false
    + CategoryInfo : InvalidOperation: (Visible:String) [], RuntimeException
    + FullyQualifiedErrorId : PropertyNotFound
    You cannot call a method on a null-valued expression.
    At C:\SharePoint Tools\SDSUpdateHeadersFromWordTemplate.ps1:24 char:36
    + $srcDocument = $word.documents.open <<<< ($templatePath)
    + CategoryInfo : InvalidOperation: (open:String) [], RuntimeException
    + FullyQualifiedErrorId : InvokeMethodOnNull
    Property 'SeekView' cannot be found on this object; make sure it exists and is settable.
    At C:\SharePoint Tools\SDSUpdateHeadersFromWordTemplate.ps1:27 char:43
    + $srcDocument.ActiveWindow.ActivePane.View. <<<< SeekView=$wdSeekPrimaryHeader
    + CategoryInfo : InvalidOperation: (SeekView:String) [], RuntimeException
    + FullyQualifiedErrorId : PropertyNotFound
    You cannot call a method on a null-valued expression.
    At C:\SharePoint Tools\SDSUpdateHeadersFromWordTemplate.ps1:28 char:27
    + $srcDocument.Sections.Item <<<< (1).Headers.Item(1).Range.Copy()
    + CategoryInfo : InvalidOperation: (Item:String) [], RuntimeException
    + FullyQualifiedErrorId : InvokeMethodOnNull
    Updating header for http://oslshp13/sites/qdoc/millsqdoc/Mills Fredrikstad Q docs/Frstadprosedyre1.docx

  • Report header/footer not getting displayed ondashboard

    We added deault header/footer to OBI reports as per the steps given in OBI Presentation services
    administrator guide (section 3: Administering Oracle BI Answers):
    By adding xml code as below under 'OracleBIData\web\msgdb\customMessages' folder
    <WebMessage name="kuiCriteriaDefaultViewElements" translate="no"><HTML>
    <view signature="compoundView" >
    <pageProps pageSize="a4">
    <pageFooter showOnDashboard="true" show="true">
    <zone type="top"><caption>Footer Text</caption>
    <displayFormat fontColor="#FF0000"/></zone>
    </pageFooter>
    </pageProps>
    </view>
    </HTML>
    </WebMessage>
    The 'Footer text' is coming in all new requests created, but when we add that request to a
    dashboard as embedded section, the footer is not displayed. Can anybody please provide some
    information that how we can get any customized text/link added in report footer to get displayed
    on the dashboard page.
    Thanks!

    Hi..
    yes, whatever the headers/footers you have mentioned in report will not be shown in dashboard..
    But if you mention the report link - download (don't specify headers/footers for dashboard at this time), when you download that report you can see the headers/footers in that report..
    But when you use download option for whole dashboard, you can't see those h/f s unless you mention the h/f s for the dashboard...
    This is expected, because when user download the dashboard he shouldn't see the 2 h/f s.
    So, you need to mention the print pdf s in edit dashboard.
    Hope it's clear..
    Thanks & Regards
    kishore Guggilla

  • How to asssign output value in the CSV file for the specific header

    Hi,
    I am using OpenScript 9.10. The problem I am facing is that, to Write the Output value captured from the application, When i am trying to use the methods "Appen String to File" i am unable to write / assign the out put value below the specific header. Can any one please look into this and post the methods related to Write the output vaues in to the CSV files under specific headers.
    Thanks in Advance.
    Thanks.,
    Siva

    Hi Alex,
    Thanks for your reply.I need to write the output value under specified parameter name.
    for example after creating the sales order,the order number have to write in the CSV file under
    OrderNumber column.I tried with appendStringtofille() method,by using this able to write the value under
    first column.But i need to write output value under specified columnname(means Header name in the cSV
    file).can u please give a reply for the above problem.
    Note: In that Csv file i am taking the input vales and also need to write the output values under
    specified column(header)
    Thanks,
    Siva Thota.

  • What to do if Add Header/Footer tool and Bates Numbering tool both get error message? File too big?

    Hello,
    I'm working with a 700 page / 103 Mo PDF that I need to put page numbers on. Both the Header/Footer tool and the Bates numbering tool result in error messages.
    'An error occurred while retrieving the contents of the page.'
    I suspect this is because the PDF was made by assembling 30 smaller PDFs via Preview and never down-sized during the process. I would imagine that would create a kind of clunky file. Or maybe it's simply the size that is overloading the software.
    Does anyone have any advice on a fix or a workaround for this? I need to put page numbers on. I really want to put them on the composite PDF (going back to the 30 original PDFs would be a real headache for a lot of reasons.)
    Thanks!

    Hi Eliza,
    Your suspicion is right. It might be possible that assembling different pdf's together created from different applications might be the issue.
    Try printing the pdf to Adobe pdf printer and then try adding the page numbers and check.
    Regards,
    Rave

  • When attempting to open a hyperlink to a PDF file on the web from a Microsoft WORD for Mac 2011 (14.3.9) document, Safari 7.0 instead displays the file as text?

    When attempting to open a hyperlink to a PDF file on the web from a Microsoft WORD for Mac 2011 (14.3.9) document, Safari 7.0 instead displays the file as text?

    As seen in http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/has-the-word- 2011-for-mac-invisible-toolbars/018a3ab6-0570-4ad5-abf8-5b6427fdde3e?msgId=e111b f0a-0e32-4fa3-9536-f349dad8439d
    and it worked for me:
    1. Quit Word
    2. In the Finder's menu bar, select Go > Go to folder and type or paste: ~/Library/Preferences/
    3. Click on Go
    4. Locate the preference file com.microsoft.Word.plist, then Option-drag it to the desktop to create a backup copy
    5. Go to Applications/Utilities and open Terminal
    6. Paste the following bold command at the $ prompt (it's a single line):
         defaults write com.microsoft.Word 14\\Toolbars\\Show_HIToolbar -boolean TRUE
    7. Press Return and then quit with Command Q
    8. Start Word and test. If the fix works, trash the backup file in the Desktop file. Otherwise, restore it.
    In the original source the author also mentions the change in Word 2008

  • Display a file with in the ADF screen in the edit mode.(RTF or Word format)

    Hi ,
    As per my business need i need to display a file (.doc or .pdf) in the ADF screen in the edit mode. Later user can be able to save the document . As of now i am using a separate editor for edit the document. but that editor is supporting only for html format only. so that some images which are there in those files are not displaying in the screen.so this is not the consistent solution for my requirement.
    So please help on this if any body had done this kind of object.
    Thanks,
    Rajesh
    Edited by: 927500 on Apr 18, 2012 7:31 AM

    Hi,
    ADF doesn't provide a component for PDF and Word editing.
    Frank

  • How can display word 2007 document file as a read only on web browser

    hi,
    i want to display word 2007 document file as a read only that means non editable file. At present i am displaying word file by using response object. please help me.
    Thanks,
    Raj

    Hi dear,
    Try with the sample code which has given in below link....
    http://forums.devshed.com/java-help-9/need-help-reading-word-document-with-jsp-20316.html
    ---Vidya
    Message was edited by:
    ragas

  • Display Header/Footer Information while Printing WAD BI7.0

    Hello all,
    My customer requirement is not to display Header/Footer on the Portal Screen via WAD, but while Printing, they want to display the Header/Footer. Is there any properties within Web Application Designer that this is done?
    Thanks,
    Af

    Hi
    1.Use a Table inside a Container Item.
    2.In the table use Text Box( available in Miscelleaneous tab in the left) in the header and the footer
    3 Drag button group Item and in the properties internal display press the combo button
    4.Press Combo Command-> all commands->Commands for Web Templates-> export web application. Come again to Favourite comands tab -> Place the cursor over Export Web Application -> Press Next Button in the footer
    5. Here in the Item Binding tab, give item which needs to be printed
    In your Portal, you can give the query for display without this settings
    Regards
    N Ganesh

  • Problem displaying Word 2002 RTF files in JEditorPane

    Hi all,
    I am having a problem displaying RTF files created in Word 2002/Office XP in a JEditorPane.
    Our code, which does the usual stuff:
    JEditorPane uiViewNarrativeEda = new JEditorPane();
    uiViewNarrativeEda.setContentType(new RTFEditorKit().getContentType());
    FileInputStream inDocument = new FileInputStream("c:/temp/testing.rtf"); uiViewNarrativeEda.read(inDocument, "");
    inDocument.close();
    works just FINE with RTF files created in Word 97, WordPad etc, but it seems that Word 2002 adds some tags to the RTF file that the RTFReader cannot handle.
    For example, I believe the following exception is due to the new \stylesheet section that Word 2002 adds to the RTF file:
    java.lang.NullPointerException:
         at javax.swing.text.rtf.RTFReader$StylesheetDestination$StyleDefiningDestination.close(RTFReader.java:924)
         at javax.swing.text.rtf.RTFReader.setRTFDestination(RTFReader.java:254)
         at javax.swing.text.rtf.RTFReader.handleKeyword(RTFReader.java:484)
         at javax.swing.text.rtf.RTFParser.write(RTFParser.java, Compiled Code)
         at javax.swing.text.rtf.AbstractFilter.readFromReader(AbstractFilter.java:111)
         at javax.swing.text.rtf.RTFEditorKit.read(RTFEditorKit.java:129)
         at javax.swing.text.JTextComponent.read(JTextComponent.java:1326)
         at javax.swing.JEditorPane.read(JEditorPane.java:387)
    Does anyone have similar problems or knows how I could get around this?
    I thought about writing a parser that replaces the \stylesheet section with one that works but that seems a lot of work and it does not always work (I tried that by copying and pasting...).
    Maybe I could replace the RTF converter that Word 2002 is using with another one - but how?

    Hello again,
    I found out that the 2002 version of MS Word writes a lot more of data into the file than e.g. Wordpad does.
    There is one section that causes the problem, its called "\stylesheet".
    My workaround (working in my case) is to wrap the input stream of the RTF document and remove this section (only in memory).
    See example implementation:
    <<<<<<<<<<<<<<<<<<<<<<< SOURCE CODE<<<<<<<<<<<<<
    * Copyright 2004 DaimlerChrysler TSS.
    * All Rights Reserved.
    * Last Change $Author: wiedenmann $
    * At $Date: 2004/03/31 11:08:54CEST $.
    package com.dcx.tss.swing;
    import java.io.*;
    * This class provides a workaround for parse errors in the
    * {@link javax.swing.text.rtf.RTFEditorKit}. These errors are caused
    * by new format specification for RichTextFormat (RTF V1.7).<br>
    * <br>
    * The workaround is to filter out a section of the RFT document
    * which causes an exception during parsing it. This section has no
    * impact on the display of the document, it just contains some
    * meta information used by MS Word 2002.<br>
    * The whole document will be loaded into memory and then the section
    * will be deleted in memory, there is no affect to the document
    * directly (on file system).<br>
    * <br>
    * <i>This workaround is provided without any warranty of completely solving
    * the problem.</i>
    * @version $Revision: 1.1 $
    * @author Wiedenmann
    public class RtfInputStream extends FilterReader {
    /** Search string for start of the section. */
    private static final String SEC_START = "{\\stylesheet";
    /** Search string for end of the section. */
    private static final String SEC_END = "}}";
    /** Locale store for the document data. */
    private final StringBuffer strBuf = new StringBuffer();
    * Wrapper for the input stream used by the RTF parser.<br>
    * Here the complete document will be loaded into a string buffer
    * and the section causes the problems will be deleted.<br>
    * <br>
    * @param in Stream reader for the document (e.g. {@link FileReader}).
    * @throws IOException in case of I/O errors during document loading.
    public RtfInputStream( final Reader in ) throws IOException {
    super( in );
    int numchars;
    final char[] tmpbuf = new char[2048];
    // read the whole document into StringBuffer
    do {
    numchars = in.read( tmpbuf, 0, tmpbuf.length );
    if ( numchars != -1 ) {
    strBuf.append( tmpbuf, 0, numchars );
    } while ( numchars != -1 );
    // finally delete the problem making section
    deleteStylesheet();
    * Deletion of the prblematic section.
    private void deleteStylesheet() {
    // find start of the section
    final int start = strBuf.indexOf( SEC_START );
    if ( start == -1 ) {
    // section not contained, so just return ...
    return;
    // find end of section
    final int end = strBuf.indexOf( SEC_END, start );
    // delete section
    strBuf.delete( start, end + 2 );
    * Read characters into a portion of an array.<br>
    * The data given back will be provided from local StringBuffer
    * which contains the whole document.
    * @param buf Destination buffer.
    * @param off Offset at which to start storing characters -
    * <srong>NOT RECOGNIZED HERE.</strong>.
    * @param len Maximum number of characters to read.
    * @return The number of characters read, or -1 if the end of the
    * stream has been reached
    * @exception IOException If an I/O error occurs
    public int read( final char[] buf, final int off, final int len ) throws IOException {
    if ( strBuf.length() == 0 ) {
    // if buffer is empty end of document is reached
    return -1;
    // fill destination array
    int byteCount = 0;
    for (; byteCount < len; byteCount++) {
    if ( byteCount == strBuf.length() ) {
    // end reached, stop filling
    break;
    // copy data to destination array
    buf[byteCount] = strBuf.charAt( byteCount );
    // delete to copied data from local store
    strBuf.delete( 0, byteCount + 1 );
    return byteCount;
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Integration of the warpper looks like:
    RtfInputStream inDocument = new RtfInputStream( new FileReader("test.rtf"));
    Document doc = rtf.createDefaultDocument();
    rtf.read(inDocument, doc, 0 );
    Hope this helps - for me it did :-)
    Timo Wiedenmann
    DaimlerChrysler TSS, Germany

Maybe you are looking for

  • Force Mac Mail File/Save As to use Raw Message Source

    Mac Mail version 6.3.  When using File/Save As, is there a way to force the save as format to be "Raw Message Source" always?  I change it to that, but over time it seems to switch back to Rich Text and I know I didn't change it.

  • FRM-9201 A failure has occured on server - Oracle forms error Oracle 9IAS

    Hi, We have a custom based Oracle Forms application running in Oracle9IAS in AIX5.1 Box. Last week There was A patch applied to AIX box [Security Patch LIBC] and after that, we are experiencing numerous issues like 1. process full, 2. too many open c

  • Can access secondary User Accounts but when in one no windows show up?

    Hi there, We are running an iMac Intel Core Duo 2 with 10.5.8 and are having issues with a second account. We set it up so that my girlfriend and I have an account each for our own iPhones. However we can't get her one to work. We can access it and i

  • Bapi to change "assignment" field on acct doc

    Hi, After the check run creates accounting docs, we want to update the "assignment" field on the accounting document (BSEG-ZUONR) with the check number.  Is there a BAPI I can use?  Or is this a job for a call transaction program? Thanks, Dennis

  • How to set the default page size ?

    Hi there, I just bought a 15.4" Macbook Pro. When I use Safari to surf, I found that the image/fonts are to small for my liking. So I did VIEW > ZOOM IN two times & the image/fonts & it become satisfactory. But after I shutdown & restart the laptop a