Deleting Thru a Page Break

I have text on the first line of a page and want to move it to the bottom of the previous page. I put the cursor before the first character of the second page and Delete. The line appears on the previous page but has (1) moved its tabs, and (2) the first character of the line plus a "." plus a space appears before the correct text. What gives?

Ok, so I cut and paste the text. Then I went into text inspector and turned off all widow/orphan controls. that seems to have fixed the problems.

Similar Messages

  • How do I get a section break/page break when the item is greyed out?

    I've created an A4 document in word processing mode, with four identical A6 text boxes covering the entire page. Then I've created a second page with four more A6 text boxes so I can print a postcard on both sides of the card. Trouble is, Pages has made two extra text pages that I don't want, the first is linked to Pages 1 and 2, and the second is separate. I can't create a section break or page break because the command is greyed out, so I can't delete page 3. When I try and delete page 4, which is a stand alone page, it also deletes pages 2,3 and 4, leaving me with just page 1!
    I don't have any problem with page breaks or section breaks in an ordinary A4 document with just one text box on a page, but I often want to create multiple text boxes and when I do I have always had this problem, ever since Pages was first introduced. Can anyone tell me what I'm doing wrong, please?

    Thank you, Yvan, but I've tried that. Firstly, I unchecked the headers and footers tick box in the Inspector because I want the postcards to be exactly A6 size, that is, one quarter of A4. I've tried making the lower two text boxes slightly smaller (which I don't really want to do, because I want them A6 size) but I still can't get the insertion point to appear below the text box – it stays resolutely in the next page and won't go back up to the previous page. Any further ideas? Thank you.

  • Vendor open items report without page break after changing vendor account

    Hi,
    I would like to get the vendor open items report without pagination when the vendor account changes.
    The option of deleting the * mark in the Filter page is not valid for me, because this way the vendor's name dissappear. I mean, it would be ok if I could show in the output of the report the name of the vendors.
    Thanks in advance.

    HI,
    If I understood your issue correctly then in the report S_ALR_87012085 is a field "Summarization level (0-4)" in the output controls.
    You just have to set this field to the value '2'.
    When you set the field to two, the page break will first executed, when the page is "full".
    If you want to see information about the "Summarization level (0-4)" field, you just have to set the cursor in it, and press F1.
    I believe this answer solve your problem.
    Please assign points if it useful.
    Regards
    Ravinagh Boni

  • Page-break in alv background job for alv output variant not coming correctl

    Hi,
    I have created an ALV grid report. When i run the report in background i get the output with correct page-break on FIELD1. Now when i run the report in background with an "ALV output variant" (its the ALV variant that controls the fields display in the output; this is not the program variant), i do not get the page-break on FIELD1.  I have already build the sort criteria and using:
    gs_sort-group = '* '.     "New-Page
    Please let me know what could be reason for not getting the page-break in background when i am using the alv output variant and how do i correct this problem.
    Regards,
    Rakesh

    Hello Everyone,
    I have solved the problem. While running the program in background, we get the page-breaks when we use the below part of code in the sort catalogue with the condition that the program variant should not use any ALV layout variant.
    gs_sort-group = '* '.     "New-Page
    If you are using the ALV layout variant in the program variant then we can check the ROWPOS, COLPOS, and NO_OUT for that ALV layout variant and pass them along in the fieldcatalog table. You should be careful with not to pass the layout variant in the DISVARIANT. You can notice that i have cleared it and simply passing the program name into that.
    *C-- Process separately for jobs running in Background. Actually
    *C-- sortcat-group solves the problem only in Foreground. In background
    *C-- when ALV layout variant is not selected then it works otherwise it
    *C-- fails. So for background jobs we are reading the fieldcat and then
    *C-- passing the same in the display FM.
      IF sy-batch = 'X'.
        CALL FUNCTION 'REUSE_ALV_VARIANT_SELECT'
          EXPORTING
           i_dialog                  = ' '
           i_user_specific           = ' '
           i_default                 = ' '
    *   I_TABNAME_HEADER          =
    *   I_TABNAME_ITEM            =
            it_default_fieldcat       = gt_fieldcat
            i_layout                  = gs_layout
    *   I_BYPASSING_BUFFER        =
    *   I_BUFFER_ACTIVE           =
         IMPORTING
    *   E_EXIT                    =
           et_fieldcat               = lt_fieldcat
    *     et_sort                   = gt_sort[]
    *   ET_FILTER                 =
    *     es_layout                 = gs_layout
         CHANGING
           cs_variant                = gs_disvariant
         EXCEPTIONS
           wrong_input               = 1
           fc_not_complete           = 2
           not_found                 = 3
           program_error             = 4
           OTHERS                    = 5
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CLEAR gs_fieldcat.
        LOOP AT gt_fieldcat INTO gs_fieldcat.
    *C-- Transfer all position changes to gt_fieldcat from lt_fieldcat
          CLEAR ls_fieldcat.
          READ TABLE lt_fieldcat
                INTO ls_fieldcat
                WITH KEY fieldname = gs_fieldcat-fieldname.
          IF sy-subrc = 0.
            gs_fieldcat-row_pos = ls_fieldcat-row_pos.
            gs_fieldcat-col_pos = ls_fieldcat-col_pos.
            gs_fieldcat-no_out = ls_fieldcat-no_out.
            MODIFY gt_fieldcat FROM gs_fieldcat INDEX sy-tabix.
            CLEAR gs_fieldcat.
          ENDIF.
        ENDLOOP.
    *C-- Clear the disvariant for the background job as it contains the ALV
    *C-- layout varinat
        CLEAR gs_disvariant.
        gs_disvariant-report = 'ZGPPMP0001'.
    Then pass gt_fieldcat to 'REUSE_ALV_GRID_DISPLAY'.
    The reason i'm doing it this way is that when we pass the layout variant name, the contents in gt_fieldcat were getting modified.
    One more thing i'd like to point out is that that, i tried to delete the fields with no_out = 'x'. Now when i ran the program in background with all the fields in sort catalog (suppose there are 2 fields field1 and field2) also in fieldcatalog it ran fine. In the next run in background i removed one of the fields in sort catalog from the fieldcatalog (delete the fields with no_out = 'x') and i got dump. Basically i had hidden field1 and so the code which was deleting fields with no_out = 'x' deleted this field from gt_fieldcat. So basically we should not delete fields with no_out = 'x'.
    I was getting ABAP runtime errors    MESSAGE_TYPE_X in the following part of the standard code.
    000310     LOOP AT CT_SORT INTO LS_SORT.
    000320
    000330       READ TABLE IT_FIELDCAT ASSIGNING <LS_FIELDCAT>
    000340            WITH KEY FIELDNAME = LS_SORT-FIELDNAME BINARY SEARCH.
    000350       IF SY-SUBRC NE 0.
         >         MESSAGE X000(0K).
    000370       ENDIF.
    000380
    000390       LS_SORT-SELTEXT = <LS_FIELDCAT>-SELTEXT.
    i have just mentioned this part because when i checked the forum many people were getting such errors "MESSAGE_TYPE_X". This could also be one of the reasons.

  • How to delete just one page in Pages 4.3

    Hello I am having an issue with trying to delete just one page out of the 47 pages that I have created.
    If I try to delete page 12 it will delete 12-47 instead of just page 12.
    I also cant seem to move or adjust the yellow box in thumnails in order to select just one page. It has them all selected.
    Another issue is when i try to delete a large text box, which i created to make a frame on my page. It will also delete all the pages after it. So its making it very difficut to make any changes.
    I have searched through many forums and havent had any luck by using their methods.

    Forget about the page thumbnails.
    Let's say that page 12 is in the middle of a section and you want to delete it.
    On page 12, in the actual document, not the thumbnails, click somewhere in the first line of text so that the cursor appears. Use the left arrow key to move the cursor until it is just before the first letter on the line. Now, from the Insert menu, insert a Section Break (not a section).
    On page 13, do the same thing; i.e. insert a Section Break before the first character.
    Now you can go to the thumbnails, click on the Page 12 thumbnail and it will be a section all by itself. Click the Delete key.
    (I am sort of assuming that there are no invisible characters before the first one that you see, but if there are, you obviously have to get before them too.)

  • Deleting a Single Page in Pages '09

    I created a two-page text document in Pages '09 with headers/footers and Pages added a THIRD blank page (with header/footer) that I DO NOT WANT. When I attempt to delete a page, the ONLY option Pages gives me is to delete ALL THREE PAGES. Is the any way that just a SINGLE page can be deleted? Thanks so much for letting me know because this is SO FRUSTRATING!!!

    Pages doesn't "see" a page as you & I do. Pages sees logical pages, separated by section breaks, rather than physical pages. You can see this by showing thumbnails, View > Show Page Thumbnails, & then clicking on a page thumbnail. The yellow border around groups of pages shows the logical page. You need to insert section breaks before & after the physical pages to separate them. Then, with the cursor in the body of page three, use the section tab of the layout inspector & uncheck user previous headers & footers.

  • How to Insert a Page Break and Duplicate a Page in Pages 5.1

    Pages 5 deprecated the "Word Processing" and "Page Layout" styles of document creation, but in 5.1, they have returned.
    It seems that the DEFAULT is to "Word Processing," however it is possible to convert the document to a "Page Layout" document: In your open document, click File, then Convert To Page Layout.
    So, for a Word Processing document, one only needs to click Insert and then Page Break, while in a Page Layout document, click Insert and then Page.
    Unfortunately, the Duplicate Page function has NOT returned, but you can still select the entire contents of a page and copy it to a new page. Unfortunately, your perfect page layout won't copy over exactly, and guides don't copy over either.

    Actually, I had an entire page worth of content that didn't change at all, but now that I think about it, that was probably because I had all of my content in boxes.
    And I was careful to specify Pages 5.1 in my post heading to avoid confusion. It is VERY WELL documented that Apple removed loads of features in their new iWork apps - including all over this support forum.
    Your obvious disdain for Pages 5 notwithstanding, the return of the Page Layout mode is a BIG DEAL to me, as Pages was otherwise just a word processor without it. Prevously, upgrading my Pages 4 documents to Pages 5 would render them un-editable.
    So, instead of the seemingly default answer of "delete Pages 5 and use iWork '09" that I saw on just about every post regarding this particular issue, I'm offering a tidbit of information for those who actually want to try and use the current version the way it is.

  • Page Break when converting to PDF

    I have created my forms online and deleted a bit of content to reduce their size.  I also adjusted the page breaks in pdf/print view mode.  When I download the PDF, I find excess blank pages in the PDF and the page breaks I set are not where I put them.  Any thoughts on how I can fix this without having to rebuild the online survey from scratch?

    Hi,
    It would be easier to help resolve this issue if I had access to your form design. You can share it with me in one of two ways:
    1. Add me ([email protected]) as a collaborator. To do this follow steps 1 and 2 described in the following FAQ:
    http://forums.adobe.com/docs/DOC-1424
    2. Export the form and email the design template (.fcdt file) to me - [email protected]
    Thanks,
    Brian

  • Split a TOC over pages: page break in a table of contents

    I'd like to be able to put a page break in a TOC. I have a TOC spans a couple of pages. The second page only has a couple of lines in it, so I want to be able to split the TOC on TOC heading 1 with a page break.
    I know that I could adjust the styles for the TOC, but this is not a general enough solution for me - it would probably not last long (add new pages, the arbitrary page break is going to move).

    This answer assumes that your document uses the Default page style for physical pages 1-3. You are going to need two different page styles to accomplish what you want. (I'm guessing you have used a page number offset of -2 to get your physical page 3 numbered as 1 and this simply will not work in the TOC.)
    Put your cursor in the Title page (physical page 1) and open the Stylist (F11). Click the Page icon (4th from left) then click the New Style From Selection icon (2nd from right). Give it a name like 'Body'. Before you close the Stylist double click on Default just to make sure you did not change the style of the 1st page.
    While you are still on the 1st page click into the footer and remove the page number field assuming you do not want it.
    Put you cursor in the FIRST (1st) paragraph of the 3rd page and do **Format > Paragraph > Text Flow tab. In the Breaks section, check the Enable box, if not already checked, then check the With Page Style box, select the Body style from the drop down menu and set the page number to 1.
    If the page number field is still in the footer on this page then delete it and insert it again. It should now show 1.
    Click into the TOC, right click and select Update Index/Table.
    Just in case you have trouble translating this to your version of SO I have fixed your document and have attached it.
    * *To change to a new page style while writing your document do Insert > Manual Break > Page Break and select the new style. If you want a new page number you can check that box and set the new number.  

  • Table of contents - title creates automatic page break

    I want the title "Table of Contents" to appear above the automatically generated Table of Contents in pages.  The TOC covers 3 pages (it's a long document) and I've formatted it and am happy. However, the title for the page which reads "Table of Contents" makes the TOC jump down to another page leaving the title on an otherwise blank page.  I have tried re-typing the title, ensuring no page breaks are on the page. I've deleted the TOC and reinserted it at the appropriate place etc. But it keeps jumping down and starting on a new page.  Any advice appreciated. I want to the keep the title "Table of Contents" on the same page as the table of contents themselves.

    I am having the exact same issue. Long ToC (3 pages), but cannot place a simple headline above it. It automatically breaks the pages and starts on a new page. Any ideas people?
    Please see the picture below. I cannot find a way to narrow down that gap between headline and ToC.
    Cheers Phil

  • How to remove page breaks in converted document

    This is probably more a Microsoft Word problem, but it started out as an InDesign document, so I thought it wouldn't hurt to post the question here in case someone else has encountered a similar problem.
    I formatted an epub on Amazon for my job. Since I am more familiar with InDesign, I used it along with Amazon's script to turn it into an epub.
    Since then, I've noticed the cover has inexplicably rotated 90 degrees on Amazon. I asked about it in Amazon's forums, and they said InDesign isn't really reliable for epubs.
    So I'm trying to recreate everything in Word. The original Word document isn't up to date with all the editing and corrections I did, so I exported each InDesign chapter document into a PDF, then used Adobe Acrobat to save each PDF as a Word document.
    Some of the resulting Word documents seem to be littered with multiple page breaks and/or section breaks. I'm able to delete most of them, but some of them fall right in the middle of a sentence and won't delete. I've selected the paragraph icon in the ribbon to turn on invisible characters, and I can't see a page or section break indicated in most of these breaks.
    Anyone know what might be causing these and how to delete them?
    Maybe I should just copy everything from my InDesign documents and paste them into Word instead?

    Hello,
    If your reports is executed in the MODE CHARACTER , the "Page Break" generaed in the output is the one defined in the prt file
    Code Name : after page
    http://www.oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwrefex/files/printing/printer_def_file_syntax.htm
    regards

  • How to insert a simple page break in an eBook while using pages to make the ePub?

    Hello,
    I am using pages to make ePubs.
    I have a problem: if I insert a page break in pages, it is deleted when I convert the file to ePub.
    So I do not know how to start on a new page without adding a new chapter....
    Do you have a solution?
    best regards
    MD

    You are taking about Pages '09? because this has been removed from Pages 5.
    Clunky as it may be it does have some very powerful features.
    You can capture as many pages into a Section as you want, which automatically sets up a document in depth. Once you have done the work, it is super fast to compose a new document from all the parts.
    It is a shame that Apple didn't simply fix what needed fixing with this model, instead of ditching it, because I am really stumped how to set up documents in the current version.
    Peter

  • Problem with printing ALV - repetitive page breaks

    Hi,
    I have a problem with ALV during printing or print preview. First, let me describe the situation. My requirement was to have a page break for every Material Number. This was working fine already. However, the user had a change of heart and decided he didn't want to have a page break for every material. Now, they wanted only one page for all materials.
    I thought this was easy to do since I only needed to comment out the SORT (and all codes related to SORT) table that was used to create the page-break. Thing is, it's not working anymore. Although I was able to display one table only, the old page breaks still appear! For example, if there were 7 materials before, therefore, 7 page breaks with 7 blocks of internal tables. Now, only 1 full internal table is displayed while the other 6 are empty! Please help me how to get rid of the other tables or page breaks.
    I hope this is clear. Thanks. I appreciate all the help I can get.

    Amit,
    Using sort option.
    Do one thing. Just create one ALV program with SORT options anf GROUP = '*'.
    Now go to output and save the Variant.  Print the report.
    with out sort option and variant.
    Now come back and Delete the sort options , activate the code.
    And see the output. Choose the variant which you created beofre. and print the report.
    See both the case. it triggeres the same output. you just copy paste it and un comment the commented sort code
    Just test with this code,
    REPORT  zalv_total_sub.
    TYPE-POOLS: slis.
    INCLUDE <icon>.
    DATA: layout TYPE  slis_layout_alv .
    DATA: BEGIN OF it_flight OCCURS 0,
           carrid  LIKE sflight-carrid,
           connid   LIKE sflight-connid,
           fldate   LIKE sflight-fldate,
           seatsmax LIKE sflight-seatsmax,
           seatsocc LIKE sflight-seatsocc,
          END OF it_flight.
    DATA: it_fieldcat TYPE  slis_t_fieldcat_alv,
              wa_fcat LIKE LINE OF it_fieldcat.
    DATA: it_sort TYPE  slis_t_sortinfo_alv,
              wa_sort LIKE LINE OF it_sort.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
      EXPORTING
        i_program_name         = sy-repid
        i_internal_tabname     = 'IT_FLIGHT'
        i_inclname               = sy-repid
      CHANGING
        ct_fieldcat              = it_fieldcat
      EXCEPTIONS
        inconsistent_interface = 1
        program_error          = 2.
    SELECT  carrid
           connid
           fldate
           seatsmax
           seatsocc
    FROM sflight
    INTO CORRESPONDING FIELDS OF TABLE it_flight
    wa_fcat-do_sum = 'X'.
    MODIFY it_fieldcat FROM wa_fcat TRANSPORTING do_sum
    WHERE fieldname = 'SEATSOCC' .
    CLEAR wa_fcat.
    *wa_sort-fieldname = 'CONNID'.
    *wa_sort-up = 'X'.
    *wa_sort-group = '*'.
    *wa_sort-subtot = 'X'.
    *APPEND wa_sort TO it_sort.
    *CLEAR wa_sort.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program      = sy-repid
        i_save                         = 'X'
        i_callback_user_command = 'USER_COMMAND'
        is_layout               = layout
        it_fieldcat             = it_fieldcat
        it_sort                 = it_sort
      TABLES
        t_outtab                = it_flight
      EXCEPTIONS
        program_error           = 1.

  • Problem with importing page breaks

    When I import text from WORD, Indesign adds an extra space after my manual page breaks. See pic.
    How do I change this setting?
    Thanks!

    Peter, yes, I placed the cursor right in front of the first letter in the line when I inserted the page break.
    Here's an answer I just got from a MS Office forum. I am led to assume that I will now have to fix this "empty paragraph" problem manually before I import any MS Word 2010 doc into InDesign...
    RE: Word 2010 adds a paragraph mark after my manual page breaks. Why?
    In previous versions of Word, you could have unintended results: if you changed the line immediately after the page break to a heading, the line before the page break would be formatted as a heading too because it belonged to the same paragraph. Automatically inserting a paragraph break prevents that, so for most users this will be an improvement. You can delete the extra paragraph breaks after inserting the page break.

  • How do I remove a page break in Pages?

    I can't seem to find any help in the manual on how to remove page breaks that I inserted in the document by using the Insert>Page Break on the menu.
    I have Show Invisibles turned on and I see the code for the page break but I can't delete it.
    Anyone know how?
    thanks
    nick
    p.s I'm using Pages 5.2

    thanks..I had tried that before but I don't think I had selected it properly
    worked great

Maybe you are looking for

  • How do you stop a video from playing after you use removechild?

    I am new to flash and asc3.  I am currently developing a website using cs3.  I have the main swf that calls in other swfs using the add child.  The swfs that I am calling in, have video using the standard flvplayer.  The problem that I am encounterin

  • Edge Animate CC 2014 animation of elements of a html file created in Dreamweaver

    Does anyone know why with Edge Animate CC 2014 it's not possible anymore to animate elements of a html file created in Dreamweaver? With Edge Animate CC 3.0.0. this was possible.

  • JS that applies all clipping paths at once?

    Hello, I found the thread that contains the Applescript for this, but would love to have a Javascript that works the same. Anyone have or know of one for ID CS5 that will apply all clipping paths for a group of objects at once? Thanks in advance, as

  • Deleting monitors with alerts configured

    Iam running into an issue deleting monitors with alerts configured. It appers that a patch needs to be applied to address the issue. I logged into HP support but I dont have the entitlements under my account, and cant see the avaiable updates. 

  • Excise Utilization through J2IUN

    Hi i am doing excise utilization through Transaction code J2IUN at the Utilzation screen balance appearing under Account Name PLABED is different that the actual GL Balance. in this respect i have another question that is, whether the PLA Balance is