Frame spilling to second page

I have a report which has two frames, first is a repeating frame and the second frame is fixed & set to print on the "Last Page" of the report. The report prints correctly almost always with the second frame printing on the last page of the report except when the report is small and fits in the first page itself.
But in one particular scenario although there is enough space left in the first page the second frame is spilling over to second page.
I have tried all kinds of fomatting but unable to figure out why?
Any help would be much appreciated. Thanks in advance.
Anupam

Maybe you are printing empty lines in your repeating frame, so you only think there is enough space for the 2nd frame?

Similar Messages

  • Friends need help desperate-- Second page not printing from the beginning

    Hi Friends,
    I have a large layout whose main-section is 8.5x20 (Width&height) which has 2 frames each having 2 repeating frames and about 20 fields in each repeating frame. When I run the report it shows the report right, but when I print, it prints only the first half since the report is long. When I change the property of the second frame of 'Page break before' to 'yes' it prints the second frame on the second page but print it at the same position as it printed on the first, and top of second page is all blank. How do I make to print from the beginning of the second page. Need your help.
    Thanks
    Joe.

    Hello,
    Most of the times, these problem are solved by "enclosing" the "Repeating frames" in frames with "Vertical Eleasticity" set to "Variable"
    Regards

  • Invoice Lines spill over to top of the second page

    Hi,
    I have a program that prints invoice and its lines. Looks like if there are too many lines that do not fit one page, it spills the lines on top of the second page rather than the space provided for lines.
    How can I correct this so that the line appears in the lines area of the invoice report rather than writes on top of the header on the second page.
    Thanks for help.
    Asgar

    The first (#4) is the Bookmarks Toolbar
    If you do not want the AVG toolbar then disable or uninstall that extension.
    See:
    * http://kb.mozillazine.org/Uninstalling_add-ons
    * http://kb.mozillazine.org/Uninstalling_toolbars
    * [[Troubleshooting extensions and themes]]

  • Box frame command not working from second page in scripts

    Hi to All,
                I am getting problem when i am running the script program in SE38.
    Problem is I need to get the output i(Header,main and footer) in box frame for all the pages.but in one page i am getting the Box frame  for all three windows(header ,main and footer window).
                 But from second page onwards i am not getting the Box frame for Main Window.
               could anyone could give the result.
    thanks in Advance.

    This occurs typically when you puts BOXs commands on top of MAIN outside of any text element.  It runs once, then is not executed any more.  If you need the boxes on other pages you should put it inside a text elemente and make a WRITE_FORM with the proper EXPORTING ELEMENT for every page.  But as you don't know when a new page is called...  I really don't know how to solve it by this way.
    My ususal solution is to have the boxes in a new window, supperpossed with MAIN, same possition and sizes.  On this window you can put as boxes and lines as you want without a text element and it is going to be shown on every page.
    Hope it helps!

  • How to print text or field (inside a rep fram)on the last page in report 6i

    Hi Everyone,
    I want to print the text on the last page.
    my text is inside a repetating frame.
    as i want to display page no in the filed
    and if it is a last page, display page number appended with Last
    so it will look like
    for 3 pages
    on the first page
    1
    on second page
    2
    and on last page it should display
    3 Last

    You cannot know if you are on the last page or not. See this similar thread: Get value of total pages variable
    Why not put the page number in the margin like this:
    Page 1 of 3
    Page 2 of 3
    Page 3 of 3
    You do that by creating a text field in the margin. Enter this text:
    Page &<PhysicalPageNumber> of &<TotalPhysicalPages>

  • 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

  • Print the the data in the second page

    Hi.
    In my report I have two repeating frames. I my layout editior i have the first one and then the second one. I want to print the second repeating frame from the first line of the second page onwards. I tried the properties of the repeating frame (page break before) and that works but it doesn't print from the begining of the page.
    How to print it from the begining. Any Suggestions.
    Thanks,
    Priyabrata

    Sorry, I assumed they were one above the other. If they are nested, then I see two possibilities ...
    1. the first repeating frame doesn't normally appear at the top of the page either. in this case, you need to anchor that frame to a frame for all the objects above it so it will move up.
    2. the space for the objects inside the first repeating frame is being reserved on subsequent pages. in this case, create a new frame around all the objects inside the first frame that are above the second frame. then anchor the second frame to that new one. alternatively, you could probably set the new frames vertically elasticity to variable.

  • Display Text in the Second page of the Report.

    Dear,
    I have a Report With Group G_Emp, having Columns Eno, Ename etc. in a Repeating frame R_1 and
    I have put A frame below this repeating frame R_1 with a Text Item Just for Displaying Comments, so just i want to display this Text Item in the second page and the Employee details in the first page, the restriction is that the Text item should not print in the first page.
    I hope you understand,
    pls help.
    Stalin Ephraim...

    Hi,
    if i understand well you could maybe try this :
    or ) for your A frame below the repeating frame specify break page before = YES
    or ) and if i understand your meaning correctly you want your comment to show once, on a seperate last page -->
    in your layout section move the sdesign for your A frame from the main section into the traileer section.
    regards, E.

  • Create data merged document with data on every second page?

    Is it possible to create a data merged document with the variable data only on every second page?
    I have set up the pages with the variable data as a master page (on every odd page) with the text box and paragraph style all set up, and I have set 'override master page items' so the data can be placed, but InDesign seems to freeze up when I try to create the merged document?

    There should be no problem doing the merge with a two-page master and a two-page template document with fields only on one page (and off the top of my head there's no reason to move them off the master page if that's where you put them). I think the problem here is that rachrachm already has a file of 500 pages (based on another thread asking how to apply masters to every other page).
    It's potentially possible to simply place the data file (without the header row) as a text file and auto-flow through the master page frames (can't say for sure without seeing the files), or if the pages without the merge fields are the same just, remove all but the first two pages from the template and do the merge.
    As I metioned earlier, though, this is a very inefficient method of producing that sort of document. A true variable data print flow would be better (you'd need to find a commercial printer who can do it with your data file), or the home version would be to make one single page file for the static content, print 250 copies (plus a few extras, just in case), then make a single page merge template, do the merge, and print that on the back of the already printed pages, or as a separate page. It is immeasurably faster to print multiple copies of a document than it is to print a document that has multiple identical pages.

  • Autoflow multiple frames on a single page

    This seems like an easy question, but I can't get it to work.
    I have three text frames set up on a master page, linked 1->2, 2->3
    I want to autoflow a document through the three frames, adding pages as necessary to the end of the document.
    No matter which autoflow function I choose when placing a text document, InDesign fills two text frames and stops. It never fills the third frame on the page, and it doesn't add any pages.
    If I load the cursor from the second frame and try to autoflow into the third, it just fills the third frame and stops. I think this is because I've already modified the master by filling the first two frames - is that why I can't flow more than two frames to begin with?
    This in InDesign CS3 on a Mac, fwiw.
    Thanks,
    Ward

    WDadmin wrote:
    Exporting to .inx didn't fix the problem.
    I tried something else (based on one of your earlier comments): if I layout three WIDER text frames, and then autoflow the same document, it works (flows across all three frames and adds pages as needed). So there must be something with the spacing, line length, etc., of older Word files.
    Whatever the exact issue, though, I think the problem is solved - thank you!
    To recap: the issue seems to be that some older (i.e., Mac 2004) Word files do not import properly into InDesign CS3 when trying to autoflow placed text across multiple NARROW frames on a single page.
    The workaround is to save the Word file in a newer version. I'm not sure if exporting an RTF from Word Mac 2004 will solve the problem.
    Hey, everyone! Great detective work!
    (NOTE: I'm not hijacking this thread.)
    I'm working on something similar - it seems simple, yet elusive to narrow down to the minimum necessary to reproduce it reliably. It's not a bug. All the effort to find the irreducible minimum cause reported here is what struck a note for me.
    I'm wondering if anyone here who has a source file that fails in CS3, can test it in CS5. If it fails in CS5, it's kind of a bug, even though it seems dependent on the peculiarities of a rare file format from the past. Perhaps, it doesn't happen with every such file, only those with the long run of unhyphenated and unbreakable text that can't wrap and gets stuck at the thread's connection to the next frame. A super-niche bug.
    It might be worthwhile to test by exporting the Word Mac 2004 file to RTF, then placing it. Some of us with long memories - both a blessing and an irritation - might remember that there was at least one version of Word that couldn't open some of its own files that were saved to supposedly compatible non-Word file formats.
    If problem does persist in CS5, please report it as a bug.
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • Repeating Frame with mutiple lines -- Page Break

    I have a report with repeating frame R11. R11 has several fiels
    spread across 4 lines.
    We have a case in which there is a pagebrek, while this
    repeating frame R11 is printed. Fields in the first line of R11
    are printed in the first page. Then when it continues to print
    the repeating frame in the next page, it is not printing the
    fields in the second line of the repeating frame. In other
    words, the second line is completely missing in the report.
    However, fields in the third and forth lines of the repating
    frame R11 are printed in the second page.
    Why the second line is dropped?
    How do I fix this problem?

    Create one summary column (lets say cs_pagenumber) in inner group and provide following:
    Function: Count
    Source: any field from innrer group
    Reset At: outer group
    Create one summary column (lets say cs_totalpages) in outer group and provide following:
    Function: Count
    Source: any field from innrer group
    Reset At: outer group
    (above will work if one field is printed only once in a form)
    Create a field in inner repeating frame for cs_pagenumber and create a boilerplate text (&cs_totalpages) in the same repating frame for cs_totalpages. This should solve the problem.
    Hope this helps.

  • Cannot get long table on second page of BSP

    I want to create a BSP with 2+ pages.  The first page is a letter, and the second and subsequent pages contain a table which could be one or more pages long.
    If I put the letter in the main window of the first page, and the table in the main window of the second page, I do not get a table. 
    If I put the letter in the main window of the first page, and the table in a secondary window of the second page, then I get the table.  But it truncates at the end of the page.  It does not  go on to multiple pages.
    If I put the table on the first page in the main window, then I get the entire table for as many pages as it takes to contain it.
    I want the letter on the first page, and the entire table on as many subsequent pages as it takes to contain it.  What am I doing wrong?

    Hi,
    actually I did not get it.
    Do you work with frames?
    Do you use server side cookies?
    What are you doing in the events of page1 and page2?
    Best regards
    Renald

  • Page numbering every second page

    Hi guys,
    ok I have a 200 page booklet I'm doing, very simple - a notes page on the left hand side and then the contacts details on the right. But in the top right corner I need a page number that correlates with the contact. Problem is if I make page numbers it'll have them as 24, 26, 28 etc when that's not what I want.
    Is there a way to skip a page and just page number every second page?
    Thanks for any help,
    Dave

    It isn't entirely clear, but are we dealing with one person's contact info per page, or many? Sounds like 1.
    If it is, as I mentioned in your other thread, you could set this up as a Data Merge project. Create a two-page template spread, Add whatever you need for the notes page to the left page, and put all of your data fields on the right. You can include a number as one of the fields and palce it anywhere you want. This will only work with one record per page, though.
    If you'd rather number pages after the fact, it's probably scriptable to do something with starting a new section every second page and assign the numbers, or you could just add a master frame to the master page and place a number list, which is pretty simple.
    None of these techniques is truly automatic in the sense of updating if things are added or deleted, or if pages are rearranged. Any numbering outside the merge whould be done as the last step.

  • How to let the data appears at the beginning of the second page?

    Hi All,
    I've created a form-like report and it's layout model is like this:
    !http://up1.arb-up.com/files/arb-up-2009-9/Fgm23304.jpg!
    You can see parent repeating frame number 1 and child number 2 in red
    suppose that the normal frame containing f1 is suffused by fields within repeating frame 1
    If I run the report the first page will appear normally, but the second page the field f2 will not appear at the beginning of it. I want the field f2 appearing at the beginning of page 2 because there is a blank space at the beginning of it.

    give the property of the fiield f2 --> print object on -- All Pages.
    and give the property of field F_2 and child repeating Frame property --> vertical elasticity -- variable

  • Oracle Reports -- printing 1/3 the way down the second page.

    I modifying an Oracle Report that outputs a rtf-formmated word doc. When things go to the second page (because things on the first page have fully occupied the first page), they always appear 1/3 down the page. I would like them to be close to the top of the page as possible. Does anybody have any suggestions or ideas on how this should work?
    thanks
    Dan

    Hi Dan,
    I modifying an Oracle Report that outputs a rtf-formmated word doc. I did not get your above point
    When things go to the second page (because things on the first page have fully occupied the first page), they always appear 1/3 down the page. I would like them to be close to the top of the page as possible. Does anybody have any suggestions or ideas on how this should work?As for this case there might be frames or Items displayed (Print Object On - First Page) at the top of the page which are not being displayed on the second page for all such frames and Items set the Vertical Elasticity to Variable.
    Hope this helps.
    Best Regards
    Arif Khadas

Maybe you are looking for

  • A box for log-in (mixed letters) keeps poping up and I can't get rid of it. Help! Thanks

    The box (WebMail Motifier - Sign-in Verification) pops up numerous times - 50 or more times per day. I just want the boxes to stop. I don't need "webmail notifier." Thanks

  • How can be joined EM DB web console together with EBS?

    Our company uses EBS R12 running under Linux. There is a need for managing the database that comes with EBS. The JAVA version of Enterprise Manager Console lacks some important functionality that resist in EM DB web console. So how can be integrated

  • Cannot multi-select rows in a table

    I have created a view with a table that is bound to a context node. the context node has the properties "Cardinality" = 1..n and "Selection" = 1..n. the table has the property "selectionMode" = 1. I am not able to multi-select the rows in the table.

  • Applet & standard form attachments doubt

    Hello everybody, I would really appreciate it if somebody can confirm if it is possible to set the value from a input type field on an standard html form through an applet. Basically the applet would let the users browse images hosted on a remote app

  • Entourage and Spotlight

    Hi, Is there a "spotlight" plugin available for Microsoft Entourage? Entourage is a good email program and "spotlight" would really give it more punch. Any help or suggestions will be appreciated.