Where's the header?

I've been customising a letter template. I've got the company name on the first page, and I've changed the styles to the way I want them.
The problem is on the follow pages, i.e. all the pages after the first one. I want the company name on the top of each page, as a header. The Help page tells me to simply click in the header area in Layout view and start typing, which is great and also what I would expect. However, here lies the problem: *there is no header area*.
And not only that but I can't figure out how to add one.
Can anyone help?
Cheers, Paul.

Paul
It helps if you tell us which template you are using or whether you created this one from a blank.
Start with:
+Menu > View > Show Layout+
You should be able to see the header spanning the top of the following page, even if it does not contain anything.
If you do not see a header:
+Inspector > Document > Document > Document Margins > Check the Headers box+
If you want it to be different to the 1st page:
+Inspector > Layout > Section > Configuration > check First page is different+
Peter

Similar Messages

  • Help Needed regarding the Header Information

    Hi,
    I am doing a File to IDOC Scenario for CREMDM. The problem I am Facing is that the Basic type is as CREMDM but it should be CREMAS. I am invoking the Function Module IDOC_INPUT_CREDITOR_MDM and I have made a 'Z' out of that. I have also Used a Custom Process Code to link with this Z Function Module, but it is giving me the Error that " Wrong Function Module Called up". In this Z Function Module I have also checked the Exception of "WRONG FUNCTION CALLED".
    <b>Can someone tell me the details of how I can know from where the Header Information is being populated and how i.e. the EDI_DC part.</b>
    I did the same thing (i.e. made a Z Function Module and a Z Process Code for DEBMDM) and it is working. In case of the CREMDM scenario, there is a check in the Function Module which checks the IDOCtype and it is giving an error there, whereas in the Header it is coming as CREMAS04 but the Function Module is Giving me an Error.
    <b>  Can someone Suggest me how I can go about a file to IDOC Scenario for CREMDM and which Function Module i need to Invoke.</b>
      Thanking in anticipation.
    Warm Regards
    Somnath

    Hi,
    Since this is file to idoc scenrio,the header inforamtion will be populated with the information provided in the mapping part i.e,it will be dependent on the fields mapped during the message mapping in XI .
        so the edc_dc control record parameters should be populated with the parameters mapped during the messsage mapping,depending on the file parameters or the constant defined during mapping.
    and in your case if the message type is CREMDM then the basic type has to be CREMDM04,which u hav to chk with the xi ppl who performed the mapping.since it is mapped to CREMAS04 u r getting a error in function module.so try changing basic type to CREMDM04.
    regards
    jithesh

  • Why is the head jumping around the body?

    I wrote the following code for Head which should follow the body like a spring. I added friction so the head will stop bouncing sometime but no success. The head keeps jumping near the beggining of the spring (which is the beggining of the body) and not stopping. What should I do to make the head stop at some time?
      final static int MASS = 10;
      final static int FRICTION = 100;
      private final double hardness = 3;
    public void followBody(Body body) {
    double[] coards = getCoardinatesBy(getRadius(), body.getXCoardStart(), body.getYCoardStart(), 180+body.getAngel()); // get the coordinates of the beginning of the spring (where should the head be in the end
            coards[0] -= getRadius();
            coards[1] -= getRadius();
            if (getYSpeed() < 0) {
                this.setYAcceleration((getYForce(coards[1]) + FRICTION)/MASS);
            } else if (getYSpeed() > 0) {
                this.setYAcceleration((getYForce(coards[1]) - FRICTION)/MASS);
            } else if (Math.abs(getYForce(coards[1])) < FRICTION ) { //static friction, equal to the power or less
                this.setYAcceleration(0);
            } else {
                this.setYAcceleration(getYForce(coards[1]) / MASS); // speed is zero. new the head is far away from the spring
            if (getXSpeed() < 0) {
                this.setXAcceleration((getXForce(coards[0]) + FRICTION)/MASS);
            } else if (getXSpeed() > 0) {
                this.setXAcceleration((getXForce(coards[0]) - FRICTION)/MASS);
            } else if (Math.abs(getXForce(coards[0])) < FRICTION) { // static friction, equal to the power or less
                this.setXAcceleration(0);
            } else {
                this.setXAcceleration(getXForce(coards[0]) / MASS); // speed is zero. new the head is far away from the spring
       double getYForce(double y){
            return hardness*(y-yCoardStart);
        double getXForce(double x){
            return hardness*(x-xCoardStart);
    static double[] getCoardinatesBy(double height, double startX, double startY, double angel) {
            double[] coardinates = new double[2];
            coardinates[1] = startY - (height * Math.sin((Math.toRadians(angel))));
            coardinates[0] = startX + (height * Math.cos(Math.toRadians(angel)));
            return coardinates;
      public void update() {
            xSpeed += xAcc;
            ySpeed += yAcc;
            xCoardStart += xSpeed;
            xCoardEnd += xSpeed;
            yCoardEnd += ySpeed;
            yCoardStart += ySpeed;
            angularVelocity+=angularAcc;
            this.angel += angularVelocity;
            autoSetEndXY();
    private void autoSetEndXY() {
            double[] coards = getCoardinatesBy(height, xCoardStart, yCoardStart, angel);
            yCoardEnd = coards[1];
            xCoardEnd = coards[0];
        }Edited by: Vitali.pom on May 20, 2012 6:01 AM
    Edited by: Vitali.pom on May 29, 2012 12:19 AM
    Edited by: Vitali.pom on Jun 26, 2012 12:05 PM

    Thanks for the try. That's what I tried:
    public void followBodyPart(BodyPart body) {
            double[] coards = getCoardinatesBy(getRadius(), body.getXCoardStart(), body.getYCoardStart(), 180+body.getAngel());
            coards[0] -= getRadius();
            coards[1] -= getRadius();
           if (getYSpeed() < 0) {
                this.setYAcceleration((getYForce(coards[1]) + FRICTION)/MASS);
            } else if (getYSpeed() > 0) {
                this.setYAcceleration((getYForce(coards[1]) - FRICTION)/MASS);
                System.out.println("Player moved.");
            } else if (Math.abs(getYForce(coards[1])) < FRICTION) {
                this.setYAcceleration(0);
                System.out.println("y force is 0.");
            } else {
                this.setYAcceleration((getYForce(coards[1]))/ MASS);
            if (getXSpeed() < 0) {
                this.setXAcceleration((getXForce(coards[0]) + FRICTION)/MASS);
            } else if (getXSpeed() > 0) {
                this.setXAcceleration((getXForce(coards[0]) - FRICTION)/MASS);
                System.out.println("Player moved.");
            } else if (Math.abs(getXForce(coards[0])) < FRICTION) {
                this.setXAcceleration(0);
                System.out.println("x force is 0.");
            } else {
                this.setXAcceleration((getXForce(coards[0]))/ MASS);
        }And that's what I got (repeating in the end):
    Player moved.
    y force is 0.
    y force is 0.
    Player moved.
    y force is 0.
    y force is 0.
    Player moved.
    y force is 0.
    Player moved.
    Player moved.
    Player moved.
    Player moved.
    Player moved.
    Edited by: Vitali.pom on Jun 16, 2012 3:54 AM

  • Blank space in the header part from the second page onwards.

    Hi,
    I am having a 16 pages report where there the header part comes in only first page and the data flows to 16 pages
    from second page onwards i am getting a empty space in the top portion (header part of the first page).
    the property of repeating frames are
    vertical elasticity=Yes
    page protect =no
    Base printing on =enclosing object.
    keep with ancoring object=no.
    please advice.

    I think that you may find that the stuff in the header is set to print on First Page rather than All Pages. Try looking at the items and change.
    Dave

  • Where Should the JavaScript Go if I'm Calling from the Page HTML Header?

    In the Application Express User's Guide under "Calling the JavaScript File from the HTML Header Attribute" point 4 says:In HTML Header, call the JavaScript file using the following syntax:
    <script src="/my_images/custom.js" type="text/javascript"></script>However, it doesn't say where my_images is located.
    Where should the .js file be stored?
    Thanks,
    Gregory

    naviagte to shared component in the application edit screen and upload your .js file to static files.
    now you can ref. this file as
    In HTML Header, call the JavaScript file using the following syntax:
    <script src="#WORKSPACE_IMAGES#custom.js" type="text/javascript"></script>
    {?code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Pixma MG6320 Where is the print head release?

    ‎09-06-2014 01:12 PM
    My Pixma MG6320 was replaced by Cannon by mail without a printer head while under warranty with problems with the print head and I am supposed to use the head from my old printer (the one with the print head problems). They can't send me a replacement with a new head? The access door is inadequate to perform this operation and there is no hint on the generic instructions, that apply to many different models, where the head release lever is. I see that there are two brass clips way at the back of the assembly that seem to be holding the head in place.
    How hard would it be for a huge corporation like this to provide instructions applicable to the exact product you purchased instead of these generic instructions that leave out so much you need to know; in able to do what they seem to expect of you. Give me a break! Don't they sell thousands of each different model. Shows how important my time and peace of mind is to the manufacturer. Online "how to" help also does not show the majic release lever. Also, it is the weekend and telephone help is not available.

    Hi bettytillery,
    On very rare occasions, like a print head error condition or poor print quality issues, it may be necessary to reseat or remove the print head from one printer to install it into another.  Follow these steps to remove the print head:
    Make sure that the power is turned on, then, holding both sides of the paper output tray, gently open it.
    Lift the operation panel open until it stops.  The print head holder will move to ink tank replacement position.
    Push the tab (A) on an ink tank and lift it out of the printer.
    Remove the rest of the ink tanks from the holder.
    After all the ink tanks have been removed from the holder, press and hold the Stop button for two seconds (or longer) until the print head carriage moves to the replacement position and then release the button.  The carriage will move to the right and then return almost centered with the front opening.
    Open the the inner cover (B) and push it down all the way to the bottom.
    Pull the Head Set Lever towards the front of the machine. You may find resistance when the bottom of the Head Set Lever hits the back of the front edge. The Head Set Lever will move forward as it slides above that front edge.
    Use your finger tips to grab the top of the center tab and pull out the print head. You will notice the front of the print head will drop face down as you pull it out of the machine.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Google tell me to insert their codes a site map in the head section before the first body section.. but where is it on my welcome page?

    Google tell me to insert their codes for a site map in the <head> section before the first <body> section.. but where in exact terms is the head & body section on my 09 iwebsite?

    It's been a while since I had to verify my sitemap with Google, but if I remember, there were two options for verification. The one I chose was an HTML file verification. That's a file that would be put in your Site Folder in GoDaddy. Google would then crawl your site to verify that way. I found that much easier than putting a file in the website itself.
    It would be a file that looks like this:  googlebe235d8cb7e91037.html
    And would live in your Site Folder on Godaddy like this:

  • Where is the printer head located on the MP600?

    Where is the printer head located on the Canon MP600 and how do I remove it?  I have had my printer for over 7 years with absolutely no problems!  Then, yesterday, after I replaced an ink cartridge, it would not print at all -- keep getting the message "Wrong Printer Head - Replace Printer Head" - I removed all the cartridges and re-inserted them, but that did no good.  One suggestion I found on-line said to remove the printer head and re-install it -- Where is it located???

    Hi mjomeara,
    To reseat the print head in the unit, please follow the steps located here.  Once the print head is reseated, please turn off the printer, unplug the power cord and leave it out for at least 10 minutes, then plug it back in and turn the printer back on.  If you still receive the print head error, the printer will require servicing.  Please call or email us using one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Where do I paste something into the head to enable mobile optimization?

    I have an iWeb website and I want to optimize it for mobile, the instructions I received are as follows:
    "Copy and paste the code below into the <head> section of your business website to instantly optimize your site for mobile device"
    It then gives me a code to paste, but I'm not sure where to insert it on iWeb.   I tried to insert it as an HTML snippet, but it didn't work so I backed it out.   Some things I've read say to insert it somewhere on the index.html, but I'm not sure what that this, where to find it, or if it is even correct. 
    Thanks for your suggestions!  
    I'm using:  iWeb 3.0.4

    Textedit (on your computer) in plaintext mode or Fraise.
    Download Fraise here :
    http://www.wyodor.net/Public/index.php?dir=Applications
    "The code essentially turns it from a full page, to one that is more condensed and easier to navigate on a mobile phone.  Not the full site..."
    Condensed perhaps, meaning removing white space from the file at the server side, but easier to navigate I doubt.

  • Where is the Call to the Remote Header Portlet

    I am running into some issues and will really appreciate if any one can provide some information about the issue.
    We have a portlet ready navigation in our portal (6.1 MP1) and we have a custom header portlet ( Remote portlet , sitting on our portlet server). Once in a while the header portlet will disappear ( possible reasong, invalid response from remote portlet server, the web service times out.) in these events , We want to display soem fake HTML with error message on it.
    I am trying to find the actual call to the header portlet in the UI customization code but not able to find. I can get to the calls for the other type of portelt (Narrow, Wide portelts) in the "PortalContent View" But that View doesn't have calls for the header portelt.
    I will really appreciate if someone can provide some pointers on how to look for that call and what code to customize.
    thanks
    Manoj

    public virtual HTMLElementCollection GetHeaderElement()
    if (!GetHeaderHasBeenSet())
    return null;
    return ((HTMLElementCollection) (((NavigationModelTempData) GetTempData()).m_headerCollection));
    This is the code available in the NaviationModel.GetHeaderElement, What do you recommend for this kind of customization, How can i get the get the content of the header portlet and at the semtime find out if the webservice has timed out.
    Thanks For responding to my post

  • Where are the home, refresh and X buttons in the header

    When I open my home page on the desktop, there are buttons that let me select home, refresh or X a download. I cannot find these buttons on the header or in the add-ons, etc.

    The '''''Home''''' button was relocated to the right of the Location/URL bar in a prior version. You can drag it to the position you want or get it from the Customize Toolbar window by looking at the following instructions.
    *Click this link --> https://support.mozilla.org/en-US/kb/how-do-i-customize-toolbars
    In Firefox 4 and newer versions, the '''''Go, Stop and Reload''''' buttons are combined in one button at the right end of the URL or Address bar. The button changes depending on the activity:
    *green Go arrow when typing in the address bar
    *red Stop ("X") button while page is loading
    *gray Reload (circular arrow) when page is finished loading.
    Separate buttons are possible:
    #Open Customize Toolbar window by clicking Firefox button > Option > Toolbar Layout '''''OR''''' clicking View > Toolbars > Customize if using the Menu Bar '''''OR''''' right-click in an empty space on a toolbar and choose Customize
    #<u>While the Customize window is open</u>, Stop and Reload buttons will show separated between the address bar and the search bar
    #<u>While the Customize window is open</u>, drag the buttons anywhere on the Navigation toolbar
    #*order Reload-Stop will combine into one button
    #*order Stop-Reload will remain separate buttons
    #*or drag a "Separator" from the Customize window between Reload-Stop and they will remain separate
    #click Done at bottom right of Customize window to finish
    #See: https://support.mozilla.org/en-US/kb/how-do-i-customize-toolbars
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *'''''Adobe Shockwave for Director Netscape plug-in''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Have lotus notes on my Ipad , but since a few days I can only see the headers of the mails on the left handside but on the right one where I should actually see the content of the mail , I can only see the header

    Have lotus notes (mail) on my Ipad but since a few days I see on the left handside the header of the mails , if I choose one , in only get the header
    on the right side but the mail does not open and also I cannot see any attachements? Did compare the settings with my collegues and they are
    excactly the same. Would somebody know what could be wrong??

    Try closing the Mail app completely and see if the email contents show when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then also try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How does Labview stores the binary data - The header, where the actual data starts etc.

    I have problem in reading the binary file which is written by labview. I wish to access the data (which is stored in binary format) in Matlab. I am not able to understand - how the data will be streamed in to binary file (the binary file format) when we save the data in to a binary format through Labview program. I am saving my data in binary format and I was not able to access the same data in Matlab.
    I found a couple of articles which discusses about converting Labview to Matlab but What I really wanna know is - How can I access the binary file in Matlab which is actually written in Labview?
    Once I know the format Labview uses to store its binary files, It may be easy for me to read the file in Matlab. I know that Labview stores the binary files in Big Endian format which is
    Base Address+0 Byte3
    Base Address+1 Byte2
    Base Address+2 Byte1
    Base Address+3 Byte0
    But I am really confused about the headers, where the actual data start. Hence I request someone to provide me data about - How Labview stores the Binary Data. Where does the original data start. Below attached is the VI that I am using for writing in to a binary file.
    Attachments:
    Acquire_Binary_LMV.vi ‏242 KB

    Hi Everybody!
    I have attached a VI (Write MAT file.vi - written in LabVIEW 7.1) that takes a waveform and directly converts it to a 2D array where the first column is the timestamps and the second column is the data points. You can then pass this 2D array of scalars directly to the Save Mat.vi. You can then read the .MAT file that is created directly from Matlab.
    For more information on this, you can reference the following document:
    Can I Import Data from MATLAB to LabVIEW or Vice Versa?
    http://digital.ni.com/public.nsf/websearch/2F8ED0F588E06BE1862565A90066E9BA?OpenDocument
    However, I would definitely recommend using the Matlab Script node (All Functions->Analyze->Mathematics->Formula->Matlab Script). In order to use the Matlab Script node, you must have Matlab installed on the same computer. Using the MatlabScript node, you can take data generated or acquired in LabVIEW and save it directly to a .mat (Matlab binary) file using the 'save' command (just like in Matlab). You can see this in example VI entitled MathScriptNode.vi - written in LabVIEW 7.1.
    I hope this helps!
    Travis H.
    LabVIEW R&D
    National Instruments
    Attachments:
    Write MAT file.zip ‏189 KB

  • Need to display a value before the header based on a user parameter.

    I have a select on the user parameter list of values.
    SELECT DISTINCT GROUP_ROWID, STR_GROUP_NAME
    FROM TBL_COMPANY_GROUP;
    I select the option hide the first column in order to show only a list of values and not the row_ids.
    I need to display the str_group_name within the header as a title. I insert a field in the header and in source select the name of the parameter p_groupid but the only thing that I get is the row_id value not the name. I use the row_id to pass it on my queries but I need the name value in the header. Any ideas? Please help.
    Thanks.

    create a parameter called p_header.
    in the after parameter form trigger
    select str_group_name into :p_header
    from tbl_company_group
    where group_id = :p_groupid;Have the header field source be p_header.

  • How to add 2 more field to the  Header of FBL5N ALV report output

    Hi All,
    I have copied and made some modification to the standard transaction FBL5N and added some fields to the ALV report line Items but how to add fields to the header part i.e if you execute the transaction FBL5n, you will get the ALV report, in the header part customer no, company code then I need to add the 2 more fields. can any one tell me that which structure or where I need to add these fields to be appear in ALV output screen.
    Thanks in advance.
    Swapna.

    Hi Mohamed,
    If you copied Z-FM successfully, then you have to go to subroutine TOP_OF_PAGE to add your field:
    *&      Form  TOP_OF_PAGE
    FORM top_of_page.
      DATA: b_suppress   LIKE boole-boole,
            opfi_text    LIKE eptext OCCURS 10 WITH HEADER LINE,
            n_color      TYPE i.
    *  IF     NOT it_items-bukrs IS INITIAL               "737295
    *     AND NOT it_items-konto IS INITIAL               "737295
    *     AND NOT it_items-koart IS INITIAL.              "737295
      gs_items = gt_alv.
    *  ENDIF.                                             "737295
    * skip first call at top of page:
      IF NOT gd_first_top IS INITIAL.
        CLEAR gd_first_top.
        EXIT.
      ENDIF.
      IF x_grid = c_x OR x_inet = c_x.                          "1012201
        PERFORM grid_top_of_page.
        EXIT.
      ENDIF.
    *... open FI: get header text.
    * first fill some RFXPO fields for general info:
      CLEAR: s_rfxpo, wa_kna1, wa_lfa1, wa_ska1.
      s_rfxpo-bukrs = gs_items-bukrs.
      s_rfxpo-kkber = gs_items-kkber.
      s_rfxpo-koart = gs_items-koart.
      s_rfxpo-konto = gs_items-konto.
      s_rfxpo-vrbez = gs_variant-variant.
      s_rfxpo-waers = gs_items-waers.
    * update master record:
      PERFORM fill_master_rec  USING gs_items-koart
                                     gs_items-konto
                                     gs_items-bukrs. " note 698396
      CALL FUNCTION 'OPEN_FI_PERFORM_00001640_E'
        EXPORTING
          i_rfxpo             = s_rfxpo
          i_kna1              = wa_kna1
          i_lfa1              = wa_lfa1
          i_ska1              = wa_ska1
        IMPORTING
          e_suppress_standard = b_suppress
        TABLES
          t_lines             = opfi_text.
    *... display open FI text:
      IF x_konto_sort = 'X'.
        LOOP AT opfi_text.
          CASE opfi_text-color.
            WHEN 1.
              FORMAT COLOR 1.
            WHEN 2.
              FORMAT COLOR 2.
            WHEN 3.
              FORMAT COLOR 3.
            WHEN 4.
              FORMAT COLOR 4.
            WHEN 5.
              FORMAT COLOR 5.
            WHEN 6.
              FORMAT COLOR 6.
            WHEN 7.
              FORMAT COLOR 7.
          ENDCASE.
          WRITE: / opfi_text-text.
        ENDLOOP.
        FORMAT RESET.
      ENDIF.
    *... display other header text:
      IF b_suppress NE 'X'.
        PERFORM display_custom_header.
        PERFORM display_ccard_lines.
      ENDIF.
    " Put your field somewhere...
    ENDFORM.                               " TOP_OF_PAGE
    Good luck,
    Thanks,

Maybe you are looking for

  • Is  there any another BI tools ( other than  Mltiprovider / Infoset )  for

    For connecting two different information .. of two cubes  with a single matching columb , Multiprovoider / Infoset Is there is any another tool  ? Thanks Regards Sanjeev Kumar

  • COGI layout difference in ECC 6 to R/3

    Hello, Since we went through the upgrade to ECC6.0 from R/3, the layout in the COGI transaction has changed (Goods Movement Overview).  We want it back the way it was so the users are not having to scroll over,  to view the necessary information. How

  • I refuse to buy nokia phone with less than 1500 mA...

    I realized this after latest addition of E52 with 1500 mAh battery So far, i have purchased about 30 or so Nokia handsets during past 14 years. The battery Life of E52 is just marvelous. simply amazing. Cant imaging how I survived 14 years exclusivel

  • Auto Updater Off?

    I am travelling to Vietnam this week, and I enrolled in the ATT "World Traveller" plan so I could use my phone while there. I was told to turn off the "auto updater" feature of my iPhone to prevent running up extra charges. I thought it would be an e

  • Horizontal Edge To Edge View?

    Hi, I am trying to create a site which has a band 900 by 190 running from the left to the right with no margin on either side. I can create this layout by using 100% on the width on the properties panel. The problem is that the other elements above a