Varying the line count in every page

Hi All..
I want to vary the line count in a page in my report.
I have mentioned the line size n line count at the starting of the report, n it prints the same no of lines in every page but in the subsequent pages , I want to increase the line count .
How can I do that ? 
Thanks.

Hi Naimesh..
thanks for the reply .
well,the code u suggested does not work..NEW-PAGE is jus a standalone command with which the line count cannot be associated.
I actually have some header details that shud only appear on 1st page , n basing on the line count all works fine on 1st page ..but on the 2nd page the header details ned not appear , so only the itab details are getting printed , so the sy-tabix value remains the same but the line count is less than the 1st page leaving some space at the bottom of the page .
And in the subsequent pages the printing takes place but from the begining of the page n also leaving more space at the bottom of the page.
I want that equal no of lines get printed each page , also leaving equal no of lines at the bottom of each page.
Hope I'm  sounding clear.
Any answers ?
Thanks.
Sangeet.

Similar Messages

  • Report:Setting the line-count in the output automatically

    i want to set the line-count in the report automatically irrespective of screen resolution.could you please explain.

    hi,
    try this,
    report zrich_0001  line-count 25(4).
    reward points if useful,
    regards,
    Raj,

  • In Safari, the top of of the screen is no longer white; it's a dark gray, and everything is in shades of gray. The line that shows a page is loading is now  white instead of blue. Any ideas why it's so dark and in black/white?

    All of a sudden, in Safari, the top of the page is no longer white; instead it's a dark gray, and the bar where you type in a web address is a slightly lighter shade of gray. The rest of the page is in color like always. Also, the line that shows a page is loading is white against the gray background, isntead of the usual blue. Any thoughts?

    Tap "Private" on Safari Screen to disable Private Browsing. When top of screen is white, Private Browsing is off.

  • BDC for FF67 not displaying the line itmes of second page

    Hi all,
    I am using the Z BDC report Manual Bank Statement Upload (FF67). The BDC is as mentioned below :
    We are using start variant in the BDC.
    The report is working fine but the issue is that suppose if their are 45 line items and on one page we can have only 30 line items . Then only 30 line items are been displayed . It is not taking the line items which have come on the second page. Please advsie . Below is the code of the BDC.
    REPORT  zfi_bank_recon.
    TABLES : febko.
    DATA: bdcdata LIKE bdcdata    OCCURS 0 WITH HEADER LINE.
    DATA : i_messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF itab OCCURS 0,
           vgman TYPE febmka-vgman,
           valut TYPE char10, "febep-valut,
           kwbtr TYPE char17, "febmka-kwbtr,
           chect_kf TYPE febmkk-chect_kf,
           sgtxt_kf TYPE febmkk-sgtxt_kf,
           count(6) TYPE n,
           END OF itab.
    DATA : BEGIN OF error OCCURS 0,
           msg TYPE string,
          END OF error.
    DATA :flag,
          update VALUE 'A',
          mode VALUE 'N'.
    DATA : aznum1 TYPE aznum,
    lv_esbtr TYPE febko-esbtr,
    lv_esvoz TYPE febko-esvoz,
    lv_opening TYPE char17, "febmka-kwbtr,
    lv_closing TYPE char17. "febmka-kwbtr.
    *& Selection screen
    SELECTION-SCREEN : BEGIN OF BLOCK blk WITH FRAME TITLE text.
    PARAMETERS :  bukrs LIKE febmka-bukrs OBLIGATORY,
                  hbkid LIKE febmka-hbkid OBLIGATORY,
                  hktid LIKE febmka-hktid OBLIGATORY,
                  azdat LIKE febmka-azdat OBLIGATORY,
                  aznum LIKE febmka-aznum OBLIGATORY,
                  budtm LIKE febmka-budtm OBLIGATORY  DEFAULT sy-datum.
    SELECTION-SCREEN :  END OF BLOCK blk.
    SELECTION-SCREEN : BEGIN OF BLOCK blk1 WITH FRAME TITLE text1.
    PARAMETERS: p_file LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN : END OF BLOCK blk1.
    AT SELECTION-SCREEN.
      SELECT SINGLE * FROM febko INTO febko
      WHERE bukrs = bukrs AND hbkid = hbkid AND
      hktid = hktid  AND aznum = aznum
           AND budtm = budtm
            AND azdat = azdat.
      IF sy-subrc EQ 0.
        MESSAGE e038(000) WITH 'Statement' aznum  'already uploaded; No further processing done'.
      ENDIF.
    At Selection Screen Event
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = p_file.
    *& Start of Selection
    START-OF-SELECTION.
      CLEAR : flag.
      PERFORM data_upload.
      PERFORM check_data.
      IF itab[] IS NOT INITIAL AND flag IS INITIAL..
        PERFORM open_group.
        REFRESH bdcdata.
        PERFORM bdcdata. " USING LV_OPENING LV_CLOSING.
      PERFORM bdc_insert.
        PERFORM close_group.
      ENDIF.
    *&      Form  check_data
    FORM check_data.
      LOOP AT itab.
        DATA : int(6) TYPE n.
        CLEAR : int.
        int = sy-tabix.
        IF itab-vgman  IS  INITIAL.
          CONCATENATE 'Transaction type should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
        IF itab-valut IS INITIAL.
          CONCATENATE 'Value Date should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
        IF itab-kwbtr IS INITIAL.
          CONCATENATE 'Amount should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
        IF itab-chect_kf IS INITIAL.
          CONCATENATE 'Bank Reference should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
         IF  itab-vgman  NE 'DLF1'
           AND itab-vgman  NE 'DLF2'.
          CONCATENATE 'A Transaction type is not used : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
         IF itab-vgman  EQ 'DLF1'
        AND itab-kwbtr LE 0.
          CONCATENATE 'As per Transaction type, the Amount should be Positive : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
         IF   itab-vgman  EQ 'DLF2'
        AND itab-kwbtr GE 0.
          CONCATENATE 'As per Transaction type, the Amount should be Negative : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
      ENDLOOP.
      IF error[] IS NOT INITIAL.
        WRITE : / 'Error found in upload file'.
        SKIP 2 .
        LOOP AT error.
          WRITE : / error-msg.
        ENDLOOP.
        flag = 'X'.
      ENDIF.
      CLEAR : lv_esbtr, lv_esvoz, aznum1, lv_opening, lv_closing.
      IF flag IS INITIAL.
        SELECT MAX(  DISTINCT  aznum )  FROM febko INTO aznum1
        WHERE bukrs = bukrs AND hbkid = hbkid  AND hktid = hktid.
        IF sy-subrc = 0.
          SELECT SINGLE esbtr esvoz  FROM febko INTO (lv_esbtr,lv_esvoz)
          WHERE bukrs = bukrs AND hbkid = hbkid  AND hktid = hktid AND aznum = aznum1 .
          IF lv_esvoz = 'S'.
            lv_opening = lv_esbtr * -1.
          ELSE.
            lv_opening = lv_esbtr.
          ENDIF.
          lv_closing = lv_opening.
        ENDIF.
        LOOP AT itab.
          lv_closing = lv_closing + itab-kwbtr.
          DATA : lv_count(6) TYPE n.
          lv_count = lv_count + 1.
          MOVE lv_count TO itab-count .
          MODIFY itab FROM itab.
          CLEAR : itab.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    "check_data
    *&      Form  data_upload
    FORM data_upload.
      DATA: loc_filename TYPE string.
      loc_filename = p_file.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = loc_filename
          filetype                = 'ASC'
          has_field_separator     = 'X'
        TABLES
          data_tab                = itab
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    "data_upload
    *&      Form  bdcdata
    FORM bdcdata. " USING lv_opening TYPE febko-ssbtr
      "    lv_closing TYPE febko-esbtr.
      DATA : day(2),
             month(2),
             year(4),
             date(10).
      year = azdat+0(4).
      month = azdat+4(2).
      day = azdat+6(2).
      CONCATENATE day month year INTO date.
      CONDENSE : date.
    Comment
      PERFORM bdc_dynpro      USING 'SAPMF40K' '0101'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '/EVORG'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKA-AZDAT'.
      PERFORM bdc_dynpro      USING 'SAPMF40K' '0110'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKA-VARI_START'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=ENTE'.
      PERFORM bdc_field       USING 'FEBMKA-KONT_INT'
                                    'X'.
      PERFORM bdc_field       USING 'FEBMKA-FDIS_SEL'
                                    'X'.
      PERFORM bdc_field       USING 'FEBMKA-VARI_START'
                                    'Z0001'.
      PERFORM bdc_field       USING 'FEBMKA-DEBI_MID'
                                    'D'.
      PERFORM bdc_field       USING 'FEBMKA-KRED_MID'
                                    'K'.
      PERFORM bdc_field       USING 'FEBMKA-WVAR_ART'
                                    '4'.
      PERFORM bdc_field       USING 'FEBMKA-BUCH_VAL'
                                    'X'.
      PERFORM bdc_dynpro      USING 'SAPMF40K' '0101'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKA-ESALD'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '/00'.
      PERFORM bdc_field       USING 'FEBMKA-BUKRS'
                                    bukrs.
      PERFORM bdc_field       USING 'FEBMKA-HBKID'
                                    hbkid.
      PERFORM bdc_field       USING 'FEBMKA-HKTID'
                                    hktid.
      PERFORM bdc_field       USING 'FEBMKA-AZNUM'
                                    aznum.
      PERFORM bdc_field       USING 'FEBMKA-AZDAT'
                                    date.
      PERFORM bdc_field       USING 'FEBMKA-SSALD'
                                    lv_opening.
      PERFORM bdc_field       USING 'FEBMKA-ESALD'
                                    lv_closing.
      PERFORM bdc_dynpro      USING 'SAPMF40K' '8000'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKK-SGTXT_KF(01)'.
      SORT itab DESCENDING BY count.
      LOOP AT itab.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=SICH'.
        PERFORM bdc_field       USING 'FEBMKA-VGMAN(01)'
                                      itab-vgman.
        PERFORM bdc_field       USING 'FEBEP-VALUT(01)'
                                      itab-valut.
        PERFORM bdc_field       USING 'FEBMKA-KWBTR(01)'
                                              itab-kwbtr.
        PERFORM bdc_field       USING 'FEBMKK-CHECT_KF(01)'
                                      itab-chect_kf.
        PERFORM bdc_field       USING 'FEBMKK-SGTXT_KF(01)'
                                      itab-sgtxt_kf.
        PERFORM bdc_dynpro      USING 'SAPMF40K' '8000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'FEBMKK-SGTXT_KF(01)'.
      ENDLOOP.
      PERFORM bdc_dynpro      USING 'SAPMF40K' '8000'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKA-KWBTR(01)'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=SICH'.
      PERFORM bdc_dynpro      USING 'SAPMF40K' '0101'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKA-BUKRS'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=BACK'.
      PERFORM bdc_dynpro      USING 'SAPLSPO1' '0100'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=NO'.
    ENDFORM.                    "bdcdata
    *&      Form  OPEN_GROUP
    FORM open_group .
      CALL FUNCTION 'BDC_OPEN_GROUP'
        EXPORTING
          client = sy-mandt
          group  = 'BANK_STAT'
          user   = sy-uname.
         keep   = 'X'.
    ENDFORM.                    " OPEN_GROUP
    *&      Form  CLOSE_GROUP
    FORM close_group .
      CALL FUNCTION 'BDC_CLOSE_GROUP'.
      CALL TRANSACTION 'SM35'.
    ENDFORM.                    " CLOSE_GROUP
    *&      Form  bdc_insert
    FORM bdc_insert.
      CALL FUNCTION 'BDC_INSERT'
        EXPORTING
          tcode     = 'FF67'
        TABLES
          dynprotab = bdcdata.
    ENDFORM.                    " bdc_insert
           Start new screen                                              *
    FORM bdc_dynpro USING program dynpro.
      CLEAR bdcdata.
      bdcdata-program  = program.
      bdcdata-dynpro   = dynpro.
      bdcdata-dynbegin = 'X'.
      APPEND bdcdata.
    ENDFORM.                    "BDC_DYNPRO
           Insert field                                                  *
    FORM bdc_field USING fnam fval.
      CLEAR bdcdata.
      bdcdata-fnam = fnam.
      bdcdata-fval = fval.
      APPEND bdcdata.
    ENDFORM.                    "BDC_FIELD

    Hi,
    Use:
    If line item = 30.
    OKCODE = 'P++'. --->For next page after every 30 line items.
    endif.
    Or:(Sumilate in BDC)
    1 . New line.   -
    >Get the Fcode/Sy-ucomm value of New line(Icon on menu bar)
    2.Enter Line Item.
    Follow this after every line item.
    Hope this resolves the issue.
    Regards,
    Gurpreet

  • Can I Auto format the first paragraph on every page of a 20 page document?

    So I have a document that is basically just a numbered list of 200 entries.
    There are 10 entries per page, making it a 20 page document.
    Unfortunately, every so often I am given an additional entry to add, which invariaby is to the middle of the document, and not the end.
    What I'd like to do is if I were to add a new #20 to the document, the old #20 (now #21), being pushed to the next page, would then automatically be formatted using my "StyleA" paragraph style.
    I haven't been able to discover how to do this, which means, in the above example, I need to go to 18 pages and remove the "StyleA" paragraph formatting as in each case following the addition, it is now the second entry on the page. At the same time, I have to apply the "StyleA" paragraph formatting to each first entry of all subsequent pages. If I only had to do this once in a while, it wouldn't be an issue, but as this document is updated regularily, it is getting tedious.
    Nested styles doesn't seem to be an option, since i'm using Numbering which requires a paragraph break to differentiate between each line number, and nested styles seem to apply to every paragraph, unless i'm doing something wrong there.
    I hope this is enough to go on.
    Kraeg

    You are saying that the formatting is different for every 20th paragraph, reagardless of its content, and that it is aways going to be the first paragraph on a page?
    As long as you never deviate from the 20 paragraph cycle this is actually fairly easy to do, you jsut need 20 paragraph styles, 19 of which are based on each other and differ only in the style name. You then set the "next style" attribute to rotate through the list of styles, so the next style for #20 is #1 and the sequence starts over. Now just select the entire block of text from the point where you edited to the end and right-click on the style name for the irst paragraph in the selection, then from the context menu choose Apply <stylename> And Next Style.

  • My Phone is stuck in the zoom mode on every page

    My phine is stuck in thezoom mode in every page from home tocontacts to un locking it. I can't gt itback to normal. I've tried powering it down to rebooting it. Can some onehelp.

    I have the same problem as this person. My phone in stuck on the zoom mode. I can't get it unlocked so i can tap in twice with 3 fingers as you had described on your post. Kindly help me with this. Thank you in advance.

  • Firefox is hijacked to display the same ads on every page!!

    I come to believe that Firefox is hijacked in my computer. I have been having trouble with pop-up ads some time back from a mysterious source called adnxs.com. I somehow managed to resolve it but now, the same old shit is back again. This time it shows the link as https://secure-sin.adnxs.com/. It does a worse thing than popups, it displays its ad on every page I visit, even for secure HTTPS sites!!
    I tried scanning for it but my Avast Antivirus as well as Spybot S&D failed to pick it up.
    I know the problem is with firefox only, because there was no issue when using Chrome. Can anyone pls shed any light?

    Here is the information you asked for:
    I'll also let you know that I have done some cleaning afterwards, removed all cookies, disabled unnecessary toolbars and also ran system wide scan again. It looks like that put a stop to this malware. Though knowing how persistent this spyware/malware is I wouldn't be surprised if it shows its face again.
    Application Basics
    Name: Firefox
    Version: 30.0
    User Agent: Mozilla/5.0 (Windows NT 5.1; rv:30.0) Gecko/20100101 Firefox/30.0
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: avast! Online Security
    Version: 9.0.2011.70
    Enabled: false
    ID: [email protected]
    Name: IDM CC
    Version: 7.3.37
    Enabled: false
    ID: [email protected]
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.places.smartBookmarksVersion: 7
    browser.sessionstore.upgradeBackup.latestBuildID: 20140605174243
    browser.startup.homepage_override.buildID: 20140605174243
    browser.startup.homepage_override.mstone: 30.0
    browser.tabs.warnOnClose: false
    dom.mozApps.used: true
    extensions.lastAppVersion: 30.0
    font.internaluseonly.changed: true
    gfx.blacklist.direct2d: 3
    gfx.blacklist.layers.direct3d10: 3
    gfx.blacklist.layers.direct3d10-1: 3
    gfx.blacklist.layers.direct3d9: 3
    gfx.blacklist.layers.opengl: 3
    gfx.blacklist.stagefright: 3
    gfx.blacklist.suggested-driver-version: 6.1400.1000.5218
    gfx.blacklist.webgl.angle: 3
    gfx.blacklist.webgl.msaa: 3
    gfx.blacklist.webgl.opengl: 3
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1405606659
    places.history.expiration.transient_current_max_pages: 53402
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    privacy.cpd.sessions: false
    privacy.sanitize.migrateFx3Prefs: true
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1403597654
    Graphics
    Adapter Description: Intel(R) G33/G31 Express Chipset Family
    Adapter Drivers: igxprd32
    Adapter RAM: Unknown
    Device ID: 0x29c2
    Direct2D Enabled: Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    DirectWrite Enabled: false (0.0.0.0)
    Driver Date: 2-15-2008
    Driver Version: 6.14.10.4926
    GPU #2 Active: false
    GPU Accelerated Windows: 0/1 Basic Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    Vendor ID: 0x8086
    WebGL Renderer: Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    windowLayerManagerRemote: false
    AzureCanvasBackend: skia
    AzureContentBackend: cairo
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.6
    Version in use: 4.10.6
    NSS
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSMIME
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSSL
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSUTIL
    Expected minimum version: 3.16
    Version in use: 3.16

  • What if I want the Report Header on every page?

    Is there a way to tell Report Builder to have the main report header show up on every page in CF Report Builder 9? There doesn't seem to be any property in the property viewer when you select the main header that tells it to do that. The secondary header shows on every page but I can't seem to find anything in that set of properties that is set any different than the main header section is.
    Any help would be appreciated.
    Thanks.

    If you see lots of views but no answers, you can assume that either your question was too difficult or that nobody likes you.

  • Stamps in the same place on every page

    Lets say we have a 10 page electrical wiring diagram document. On each page there's space for our client's logo and address. As a service, we are now thinking of adding that logo and address before we print the document and send it to our client. I know how to add stamps, but I can't figure out how to place the stamp on just one page, and then automatically have it placed in the exact same place on all pages. Is that possible? Do I have to place the stamp on every page manually? Then they will not end up in the same position every time!
    This is quite urgent. If anybody has a solution, please let me know.
    I have Acrobat Professional 8
    Lena

    We do something similar using Batch Processing. The stamp is placed on a blank page PDF in the position we want it to appear on the document. We then run a Batch process that opens the file, adds the watermark (the PDF file containing the placed stamp, flattens the layers, and prints the file. We don't save but there is an option to save the file with the stamp on when you set up the batch process.
    Setting up the Batch Process can take a moment, especially making sure the stamp will appear where you want it, but it makes things very easy once you have it set up.
    HTH

  • The same menu on every page

    I'm new to Spry. I have a couple of pages and on every page I
    want to have the same menu. I include the JS-Code and a suitable
    CSS-File, so I have to update the menu only once, if changes occur.
    Now I want to use Spry in Dreamweaver, but how can I make a
    menu in Javascript? Is there a better way? How do you this?
    Greetings,
    Egon

    Hi Egon,
    on Dreamweaver you can insert the spry menu bar from Insert
    bar. It will be generated in page the menu bar code and the links
    to the js and css files. If you want to use some different links
    you can link them in this page and the menu will perfectly work.
    Is this what you want or I was misunderstood your problem?
    Diana

  • Top Margin Woes: Setting the "Before" Margin for Every Page in a Section

    Hi,
    I've scoured the forums to no avail on this one. I am trying to create a document where the text in Section 1 appears 1 inch from the top of each page and 2 inches from the top of each page in Section 2. Should be pretty straightforward, right? Please tell me it is! I'm using Pages '09 (version 4.0.5).
    Right now, the document margin is set to 1 inch from the Top, so Section 1 is fine. For Section 2, when setting the Before margins after a Layout Break (in the Layout Inspector under the Layout tab), only the first page of that section gets a Before margin of 2 inches. Every page after that in Section 2 is still 1 inch from the top.
    Suggested Workaround Attempted
    I tried the "Move Object to Section Master" workaround, but the menu item "Format > Advanced > Move Object to Section Master" is disabled when performed on an "inline" object, which is what is required to force the text down from the top of each page in Section 2. Turning it into a "floating" object enables the "Move Object to Section Master" menu item, but since it is floating. the text for that section is not pushed down, the rectangle is just displayed in the background of each page in Section 2.
    Any ideas on how to solve my Top margin woes would be much appreciated!

    Hello
    To push a text down in the text body using the clean way which means setting space after, requires that we have already a paragraph which means a chunk of text ended by a paragraph break.
    It's exactly what I do.
    Most of the time, we don't put a paragraph break at the end of a header so it's not a paragraph and so, we can't define the space after value.
    My tip just gives it the status of paragraph allowing me to define space after the clean way. The dirty one was to insert several returns to adjust the height which I carefully rejected.
    It's exactly what we discovered some months ago:
    we can't set space before (above) at top of a page because there is no paragraph before (above) in the page.
    As far as I know, the  "Use Previous Headers and Footers" must always be set correctly. I'm remembering a thread which became huge because the OP can't understand that he had to define these properties correctly to get correct results with his captured pages.
    I wish to add that at this time we don't know exactly what the OP want to achieve.
    Maybe he want to move down the top of the print area and the header.
    You can't do that with your tip.
    With mine, I just insert a paragraph break at the beginning of the header.
    Yvan KOENIG (VALLAURIS, France) vendredi 8 juillet 2011 17:50:30
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Remove path at the end/beginning of every page

    We have Acrobat X Pro and are creating PDFs from XML. However, whenever we do this, the doc path is appearing in its entirety at every page break. I have searched all over the web and changed all the Create PDF from Web page settings that I can find to not include header/footers/bookmarks, but every time we create a pdf, there the path is again. On. Every. Single. Page.
    How do we create PDFs without having to manually delete each path reference?
    Thanks!

    It sounds like both are done from IE I am guessing and not from within Acrobat. For the Create PDF option, you need to check under the Create PDF preferences in IE. For the printing, you need to check the print options of your browser, it is not a function of Acrobat in that case. What you get with the print is the same you would get to paper and those settings are part of the browser.
    If you were using the create from web page in Acrobat, then select the settings on the menu and turn off the header and footer, just as if you were using a browser to print.

  • Setting up the line spacing on a page

    How do you set up the line spacing, ie: if I want to double or triple space a message instead of single space.

    A text area message on a web page when using Firefox? <br />
    Or is your question about email messaging when using Thunderbird? <br />
    ''Your in the Firefox support queue right now, but any Moderator can move this question thread over to the Thunderbird queue once we know it's about Thunderbird.''

  • I am working in Pages and am trying to have the same footer on every page ?I went into View/Layout and typed in footer text  in the space but it only appears on first page and not any subsequent pages? Thank you.

    I am working in Pages on a report and trying to have the same footer on each page. I went to View/Layout, followed instructions, but the footer text only appears on the first page and not any subsequent pages? What should I do differently please? Thank you., Elisabeth

    Help is in the Pages forum.

  • To show the 2 parts on every page

    Hi,
    Within the following jpg file, the 1st highlighted field is a grouped field, and I want to show the 2nd highlighted part as the header of the fields of the detail group. How can I show both the 1st highlighted part and the 2nd one on each page?
    http://www.4shared.com/photo/FfOIVmef/t9_online.html
    Regards,
    edward

    Many thanks. I think the way should work and will confirm this.
    By the way, I want to see the way to show the words vertically like this
    http://www.4shared.com/photo/9VWbcw7z/T11.html

Maybe you are looking for

  • Multiple Column Report Question

    Post Author: LCS213 CA Forum: Crystal Reports I'm creating a student transcript report that has multiple columns, and is three groups deep.  The first two groups need to be in a columnar layout. However, I'd like the third group to contain a subrepor

  • CD/DVD DRIVE NO LONGER SEEN ON LAPTOP

    Have a HP dc4223cl with a Mat**bleep**a uj840d. As of today, drive no longer seen by system. Device manager states driver is O.K. but device is not attached? Best way to find drive and re-install?? Thanks

  • Plex Problems (Missing something obvious)

    Okay, so I am fairly new (Okay brand new) to arch linux. I have been messing with it in order to start a plex media server in my home. I have successfully installed arch linux, ssh, plex, iptables etc. However, whenever I go to run sudo systemctl sta

  • Editing large amounts of object properties

    So I'll start with the issue. I have about 3000 buttons in my project and need each one to link to another object (caption for the button) right above it so it shows it on mouse over and hides it on mouse off. Going through each individual dot is tak

  • Run procedure from SQL Workshop Command window?

    hi, this one is simple. how to run a created procedure from APEX SQL Workshop SQL Command window? simon