Page over flow - please turn over

Is it possible to add text "please turn over"  if the page overflows to another page?
I have designed an  In design document that get variable data filled from an external source. When this happens the page may or may not overflow to a new page depending on the data that goes in the document.
I want to is to add text "please turn over" only if the page over flows? How do I do this? Can this done in In design? Page Overflow works fine. Not sure how to add a conditional text. Is there a way to check if page overflows in design?

Pages do not overflow in InDesign, textframes do.
Beware of terminology issues. In scripting, textframes have a property "overflows", which indicates there is "overset" text in the frame, that is, there is not room enough in that particular text frame for all of the text and it does not thread to a next frame. That last part is, by the way, the indicator you are looking for here: if a text frame "nextTextFrame" is valid, then there is a possibility text runs from the current into that next frame.
It's only a possibility because it is perfectly valid and possible (and often true) that this next frame is totally empty, so you might want to double-check on that.

Similar Messages

  • N7K F1 TCAM limitations ("ERROR: Hardware programming failed. Reason: Tcam will be over used, please enable bank chaining and/or turn off atomic update")

    Platform/versions:
    # sh ver
      kickstart: version 6.2(2)
      system:    version 6.2(2)
    # sh mod
    Mod  Ports  Module-Type                         Model              Status
    1    32     10 Gbps Ethernet Module             N7K-M132XP-12      ok
    2    48     1000 Mbps Optical Ethernet Module   N7K-M148GS-11      ok
    3    32     1/10 Gbps Ethernet Module           N7K-F132XP-15      ok
    4    32     1/10 Gbps Ethernet Module           N7K-F132XP-15      ok
    5    0      Supervisor Module-1X                N7K-SUP1           ha-standby
    6    0      Supervisor Module-1X                N7K-SUP1           active *
    I recently tried to add a couple of "ip dhcp relay address" statements to an SVI and received the following error message:
    ERROR: Hardware programming failed. Reason: Tcam will be over used, please enable bank chaining and/or turn off atomic update
    Studying this page I was able to determine, that I seemed to be hitting a 50% TCAM utilization limit on the F1 modules, which prevented atomic updates:
    # show hardware access-list resource entries module 3
             ACL Hardware Resource Utilization (Module 3)
                              Instance  1, Ingress
    TCAM: 530 valid entries   494 free entries
    IPv6 TCAM: 8 valid entries   248 free entries
                              Used    Free    Percent
                                              Utilization
    TCAM                      530     494     51.75 
    I was able to workaround it be disabling atomic updates:
    hardware access-list update default-result permit
    no hardware access-list update atomic
    I understand, that with this config I am theoretically allowing ACL traffic during updates which shouldn't be allowed (alternately I could drop it), but that's not really my primary concern here.
    First of all I need to understand why adding DHCP relays are apparently affecting my TCAM entry resources?
    Second, I need to understand if there are other implications of disabling atomic updates, such as during ISSU?
    Third,  What are my options - if any - for planning the usage of the apparently relatively scarce resources on the F1 modules?

    Could be CSCua13121:
    Symptom:
    Host of certain Vlan will not get IP address from DHCP.
    Conditions:
    M1/F1 Chassis with Fabric Path Vlan with atomic update enable.
    On such system if configured SVI with DHCP is bounced that is if we shut down and bring it up may cause DHCP relay issue.
    Workaround:
    Disable Atomic update and bounce the Vlan. Disabling Atomic update may cause packet drops .
    Except that ought to be fixed in 6.2(2).

  • Page Area over flow problem

    Hi,
    When I am executing The Bapi in Ecc6.0 its goes to Short dump.
    Short Dump error is:page area over flow in abap/4 memory.
    This is very Urgent please suggest me how to overcome this short dump.
    regards,
    babu

    hi
    https://forums.sdn.sap.com
    abapcode.blogspot.com
    ABAP/4 programs can take a very long time to execute, and can make other processes have to wait before executing. Here are some tips to speed up your programs and reduce the load your programs put on the system:
    Use the GET RUN TIME command to help evaluate performance. It's hard to know whether that optimization technique REALLY helps unless you test it out. Using this tool can help you know what is effective, under what kinds of conditions. The GET RUN TIME has problems under multiple CPUs, so you should use it to test small pieces of your program, rather than the whole program.
    Generally, try to reduce I/O first, then memory, then CPU activity. I/O operations that read/write to hard disk are always the most expensive operations. Memory, if not controlled, may have to be written to swap space on the hard disk, which therefore increases your I/O read/writes to disk. CPU activity can be reduced by careful program design, and by using commands such as SUM (SQL) and COLLECT (ABAP/4).
    Avoid 'SELECT *', especially in tables that have a lot of fields. Use SELECT A B C INTO instead, so that fields are only read if they are used. This can make a very big difference.
    Field-groups can be useful for multi-level sorting and displaying. However, they write their data to the system's paging space, rather than to memory (internal tables use memory). For this reason, field-groups are only appropriate for processing large lists (e.g. over 50,000 records). If you have large lists, you should work with the systems administrator to decide the maximum amount of RAM your program should use, and from that, calculate how much space your lists will use. Then you can decide whether to write the data to memory or swap space. See the Fieldgroups ABAP example.
    Use as many table keys as possible in the WHERE part of your select statements.
    Whenever possible, design the program to access a relatively constant number of records (for instance, if you only access the transactions for one month, then there probably will be a reasonable range, like 1200-1800, for the number of transactions inputted within that month). Then use a SELECT A B C INTO TABLE ITAB statement.
    Get a good idea of how many records you will be accessing. Log into your productive system, and use SE80 -> Dictionary Objects (press Edit), enter the table name you want to see, and press Display. Go To Utilities -> Table Contents to query the table contents and see the number of records. This is extremely useful in optimizing a program's memory allocation.
    Try to make the user interface such that the program gradually unfolds more information to the user, rather than giving a huge list of information all at once to the user.
    Declare your internal tables using OCCURS NUM_RECS, where NUM_RECS is the number of records you expect to be accessing. If the number of records exceeds NUM_RECS, the data will be kept in swap space (not memory).
    Use SELECT A B C INTO TABLE ITAB whenever possible. This will read all of the records into the itab in one operation, rather than repeated operations that result from a SELECT A B C INTO ITAB... ENDSELECT statement. Make sure that ITAB is declared with OCCURS NUM_RECS, where NUM_RECS is the number of records you expect to access.
    If the number of records you are reading is constantly growing, you may be able to break it into chunks of relatively constant size. For instance, if you have to read all records from 1991 to present, you can break it into quarters, and read all records one quarter at a time. This will reduce I/O operations. Test extensively with GET RUN TIME when using this method.
    Know how to use the 'collect' command. It can be very efficient.
    Use the SELECT SINGLE command whenever possible.
    Many tables contain totals fields (such as monthly expense totals). Use these avoid wasting resources by calculating a total that has already been calculated and stored.
    verify if it can give an idea to the question.

  • Planning cube Key figure over flow error

    Hi Experts,
    I am getting the following  Key figure errors in Planning cube while running the Planning sequences.
    1.Over flow occurred when calculating KF
    KF details : Data type: DEC-Counter or amount filed  with comma and sign.
    2.ORA-01455: converting column overflows integer data type
    Data type : INT4- 4byte integer,Integer number with sign.
    The number s are growing in cube and it is giving overflow error .We are compressing the cubes once in a week.we are using these KF's in two cubes.Please help me to resolve the issue.
    Regards
    Prasad
    Edited by: PRASAD on Feb 1, 2009 9:39 AM

    Hi Prasad,
             Check here.........
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3131393536373226
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=460652
    Thanks,
    Vijay.

  • Purchase Order error - Money Over flow error

    Hi,
    Our customer wants to create Purchase order for item that has Lenght, Width, Height dimentions (not defined in item master used directly in PO).
    Width - 2500mm
    Length - 2500mm
    Height - 550mm
    the quantity in PO is to be in Kilogram (KG) as the rate is Rs per KG. So when we put quantity as 9890 KG there is error
    " Money Over flow, cannot display all digits"
    Looking in more details , we found that there is volume field at row level in PO which system calculates,
    volume = Length * width * height, (for 1 item) but when we add quantty system does
    volume = (Length * width * height) * Quantity, the resulting value is more then 20 characters, inluding the commas.
    We think this is reason for error,,,any one else faced similar situation and has solution for it.
    can we stop system from calulating Volume or the way it calculates volume?
    Please advice
    Thanks,
    - Abhijit.

    Thanks Gordon,
    Your reply helped me solve the problem, there is a VOlume unit field at row level on PO, changed the UoM there to "cm" instead of "mm" earlier/default. Now we can add the document.
    Thanks.
    - Abhijit.

  • Mac Mini won't turn over

    Hi folks,
    A mac mini in my household won't turn over. It gets to the grey Apple screen with the spinning search circle, but stays that way.
    The strange behaviour began after I installed the latest security and safari update via Software Update.
    I tried resetting the pram, using the included install disk to check the HD with disc first aid with no results. Will I have to re-install the OS now?
    Mac Mini PowerPC g4 / 1.5ghz / 512 mb RAM
    Your collective help is appreciated.

    Welcome to Apple Discussions!
    The symptoms you describe and the circumstances in which it occurred are often indicative of a problem with prebinding, and can be caused for example by running the system on other tasks while also applying updates. Prebinding is the process whereby MacOS links executables with their library files, and when it is damaged it can cause the system to become unresponsive or fail.
    When you say that you used the install disk to check the HD 'with no results' I assume you mean that it found no problem. Given that you were able to boot the system with that disk, it demonstrates that the system is healthy, so at that point and assuming you did not get any errors when testing with Disk Utility, I would suggest you boot to the install disk again, and select the option to 'archive and install' (an option that is reached by clicking the button for a custom installation). Archive and Install will put a fresh copy of macOS on the drive, but leave your applications and files untouched. Once the new MacOS copy is installed, you can boot as normal and then I would urge you to download the 10.4.11 combo update from the Apple downloads page (http://www.apple.com/downloads/macosx/apple/macosx_updates/macosx10411comboupdat eppc.html) and install that, before running Software Update to grab any additional updates required.
    Ensure you are not running any applications or performing any other tasks on the system when performing updates - particularly not when you see the system reporting 'Optimizing system' towards the end of an update. This is when the system is actually updating prebinding, and where running anything else can cause problems. This was a known issue and was resolved in MacOS 10.5.x by a different routine for updates.
    As always when doing this kind of work, it is strongly advised that you ensure you have a good backup of all your data first.

  • Measument point - Counter - Backwards - Over flow limit value ?

    Hi ,
       I 'm trying to use measurement point, the requirement is i need to start from 20000 hours and  go on decreasing the life of the part and when i reach 1000 hours i need the system to tell me so. i'm not able to update the upper and lower limits in reverse, neither i'm knowing what to put for over flow counter reading. Please help.
    Regards,
    Vivek

    HI Experts,
    I am looking for information relating to setting up backward counters to schedule Maintenance Plans. When I try to create a Maintenance Plan linked to a Backward Counter, I receive the error "Only counters that run forwards can be entered - Error IP124" . What am I doing wrong?  How can I use backwards counters with maintenance plans?
    We have several clocks that count down the hours til the next major or minor pm is due. The technician manually records the time from these clocks. Worst case is that we can subtract the counter time from a constant if we have to, but I'd like to have the technician enter in the clock time directly with out any manipulation needed.
    Thanks in advance,
    Please open a thread for your specific issue
    -Paul (moderator)
    Edited by: Paul Meehan on Oct 24, 2011 2:06 PM

  • Selling Price Turn Over report

    Hi Experts,
    Is there a SAP Standard Report in SD module that shows the "Turn over of the Selling price"?
    Please help.
    Will reward points.
    Regards,
    Pri

    Hi Samikhya,
    Actually report works on the basis of actions which you have selected from the selection option's in the selection screen of the report and the Dates.
    once you run the report system will calculate the number of employees with respect to the selection date.
    Where Begin count represents - total count of employees as per the start date (from selction Date) and for how many employees we have performed the actions Like Hiring, termination, transfer.....
    Where end count represents - total number of employees with respect the selection date.
    end count = (hiringtransferretiremenet) - Termination employees.
    Let me know if you have any questions.
    thanks,
    vasu.
    Edited by: VASU MALYAVANTHAM on Mar 4, 2009 7:50 PM

  • My appstore wont let me download anything. It says i have to agree to the terms and i agree and again it pop up the same thing over and over! Please help me

    My appstore wont let me download anything. It says i have to agree to the terms and i agree and again it pop up the same thing over and over! Please help me

    I thought i was the only one!! but its happening on my ipad! and i dont even want to try on my iphone uhhh its annoying!

  • I was doing the software update when my iphone died so i pluged it in and when it turnes back on after the white apple on the screen the screen just showes the blue itunes logo over the word itunes over the picture of a charger. ive tried reseting it

    i was doing the software update to my iphone 4s and my phone died. i pluged it in and when it turned on after the white apple the screen showes the blue itunes logo over the word itunes over an image of a charger. i tried reseting my phone. i cant figure out how to get past this point

    See Here  >  http://support.apple.com/kb/HT1808

  • I need help, speach over got accidently turned on in my Iphone 6, now i cant get into my phone it wont take my pass word and when I try to use Siri it says not available  what do I do

    I need help, speach over got accidently turned on in my Iphone 6, now i cant get into my phone it wont take my pass word and when I try to use Siri it says not available  what do I do

    Hi, Jennifer.  
    Thank you for visiting Apple Support Communities.  
    I understand that VoiceOver has been activated and you are unable to access your device.  I have done this myself and here are the steps to disable this feature.  
    VoiceOver
    Press the home button three times quickly (formerly "Triple-click home").
    Accessibility Shortcut
    Managing Accessibility features using iTunes
    Connect your iPhone, iPad, or iPod touch to any computer with iTunes installed.
    In iTunes, select your device.
    From the Summary pane, click > Configure Universal Access in the Options section at the bottom.
    Select the feature you would like to use and click OK.
    Use Accessibility features in iOS
    -Jason H.  

  • How to turn over camera-images?

    Except for photo's I can make short film-shoots with my Fuji Finepix camera. When I import the images in Iphoto, it's not possible to turn-over the video-file, different then photo's. When I play the movie in Iphoto, or in Imovie, the video remains in the wrong position. Does anybody knows how to turn over the video-file in the right position?

    Dear Smtr,
    Thank you for your answer. But how do I rotate video-clips in Iphoto? The rotate-button turns gray when a video-clip is selected. Of course I can check my software, but it would be easier to solve it in Iphoto.

  • DIG_Change_Message_Config error 6 over flow

    I run into a problem when i develop in VB5, when i use DIG_Change_Message_Config function and use windows API handle, it show me error 6 over flow, anyone how to solve this problem.

    hi,
    overflow is a VB error. It may be that the handle that is being returned by the method, is causing the overflow..for example, if the handle returns a 32 bit long, and your variable is a short, then you may get this error...
    What version of NI-DAQ and what card are you using ?
    These knowledgebase links may help you...
    (1) http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/dc44689717e9040586256c8e0071922c?OpenDocument
    and (2)
    http://sine.ni.com/apps/we/niepd_web_display.DISPLAY_EPD4?p_guid=B45EACE3DF1756A4E034080020E74861&p_node=DZ52319&p_submitted=N&p_rank=&p_answer=&p_source=External
    Nandan Dharwadker
    Staff Software Engineer
    Measurement Studio Hardware Team

  • Query for turn-over to end-users

    Hi Friends,
    I have create a query called "query1.sql" which print monthly summary report to excel/csv.
    Can I automate this query for turn-over to user/operator, so that the user will just invoke run-time program only to produce the desired output? or maybe create a menu or something to make the query run?
    Thanks a lot,
    Ms K

    Not in the current releases. You can vote for the existing requests for automation/command line at the SQL Developer Exchange, to add weight for possible future implementation.
    And yes, I suppose you could create a User Defined Java Extension to automate through a menu option or something.
    Have fun,
    Mr. K.

  • What are the advantages/disadvantages of using PS/CS5 in 64bit over 32bit please?

    What are the advantages/disadvantages of using PS/CS5 in 64bit over 32bit please?

    From a practical perspective, besides the 64 bit version being a bit faster at just about everything, limitations on document size are lifted in the 64 bit version.  Essentially, how much can do is limited only by how much RAM you have installed in your system.  You can do things like have larger documents, deeper history, etc. and have it all work quickly.
    On the other hand, many 3rd party plug-ins, especially older ones, only provide 32 bit versions, which will only run in 32 bit Photoshop.
    Both 32 and 64 bit versions are installed by default.  It's important to note that most of the preferences are separate between the two, so you can have two slightly different setups that might help with specialty operations you might need.  This gets pretty subtle, but for example I keep the 32 bit version configured with only 1 cache level, so all previews of high bit depth images are always composited in high bit depth.  This aids me with some aspects of astroimage processing.  It's slower, but more accurate.  By contrast I have more cache levels configured for my 64 bit version, so that's faster for general photography work.
    -Noel

Maybe you are looking for

  • Regarding BI Authorization Issue

    Dear Friends, can anyone help me to solve this issue.. I have a Authorization Issue, u201CNO Authorization u201C Error : EYE 007 ( Insufficient Authorizations ) I have follow this stepsu2026 Steps 1 :- Define Authorization-Relevant Characteristics (

  • Portal content

    Hi Is it possible to hide all the folders in portal content except one folder for some particular users, when content admin role is assigned to them. Thnaks sekhar

  • HT203477 Hello:

    Dear Friends: I am using FCP 7 and Snow Leopard. Ever since I upgraded to Snow Leopard my system began to act funny crash periodically.  I have been crashing recently and my video card folks AJA tell me it looks like a memory issue (maloc) based on c

  • Dodge/burn brushes don't seem to do anything

    Hi all, I'm sure I'm doing (or not doing) something wrong. When pull up the dodge or burn brushes, I get the "brush" (two concentric circles with a "+" sign in the center, right?), and I drag the brush over portions of my photo (I sometimes hold down

  • How do I supress a person from a lot of photos in elements 11?

    How do I supress a person from a lot of photos ? Is there a way to do it by lot instead of one by one?