SMARTFORMS: Protect certain area ...

Hi,
Problem:
I want to protect a certain aerea of the form, which
includes windows, boxes etc..
It should be printed after the main-window is finished
(Property I have set and works fine).
BUT the protected area should only be printed,
if all the items will fit onto the rest of the page.
If not, a page-break should be processed.
Is there a similar command like <PROTECT: ENDPROTECT:>
in SF?
Thanks a lot for help
BR
Michael

I also find same problem with you, Michael, but now I found the better solution that is,
1) You should separate to several windows.
2) Lets say you just want to display 'TOTAL' at the last page after the last items in main window, you can define total at the independent window, double click this window > under 'condition" tab > you can see the box named  "additional event" -> tick "only after end of main window"
3) Then now you can see those window only at the very last page after last item in main window.
p/s you can define several windows that you only want to print at the very last page (after last item in main window) using same steps above.
It works well same as commands:-
<i>If &nextpage& = 0</i> in Sapscripts
Hope it helps you although is late.

Similar Messages

  • Protecting certain tasks

    Hi Experts,
    I was wondering if some funtionality existed to protect certain tasks in a project. That is, even when the user is authorized to create/delete tasks there are some that are protected so he cannot delete...
    Do you know if something similar exists in PS standard?
    Other option could be enabling marking some tasks (with an icon or something similar) to indicate that those are basic tasks to a project. Anything on this?
    Thanks in advance.
    Kind regards,
    Neil
    Edited by: Neil Billqvist on Mar 31, 2009 7:58 PM

    Right now the file resides in a directory on my site.  It's "hidden," but it's still on the Web.  If anyone happens to find it,
    You've kind of answered your own question.  Only files that are intended to be externally accessible should be externally accessible.  Just don't make those files available on your public-facing website.
    Set up a different website which is only accessible from inside your network and do you admin tasks from there.
    Adam

  • HT3819 Can you password protect certain items to NOT share?

    Are you able to password protect certain items in the home sharing  part of iTunes.
    For example -  if there are age restricted movies that you would like to view on other apple TV's but only accessable with a Password.

    No way I know of. The only way I'm aware of to protect content is to either set age limits in the parental controls or purchase such content via a different iTunes Store account and not set that account up for home sharing.
    Regards.

  • IPhone 5 incoming calls go straight to voicemail in certain areas

    I know that this issue has been reported by many users in this and other forums, but I thought I would share my story too.
    I have a iphone 5 that is exhibiting the following issues:
    - When I am downtown Boston and certain areas in MA, incoming calls go straight to voicemail.  The phone does not ring and the only way to tell if people called me is if they leave a voicemail
    - When I make calls, my phone numbers shows as blocked at the receiving end.  So if people block anonymous calls then  I won't be able to call them
    I opened a ticket with VZW and this is what has been done so far to no avail:
    - Got a replacement phone
    - Changed the SIM card
    - Verizon Re-provisionned the phone number
    - Disabled LTE
    - Reset Network Settings
    - Power cycle the phone (many many times)
    Verizon said my issue is due to network extenders in the area.  Well, if this is true then thousands of VZW customers would have this issue as network extenders are all over the place in Boston. So far VZW does not have a solution to my problem.
    My next step is to reactivate my old iPhone 4S to see if it is a iPhone5 issue or something else.  will keep you posted.

    If they say they did, ask them to re-provision the account. Sometimes errors occur and the account is not provisioned correctly, even though features are included in your plan according to the billing system.

  • Drops connection completely in certain areas of town. Augusta, GA

    >> Duplicate post removed to comply with Verizon Wireless Terms of Service.  See Drops connection completely in certain areas of town. Augusta, GA <<
    Message was edited by: Verizon Moderator

    I have problems around The Augusta Exchange Shopping center and it doesn't pick back up until I get past washington road on I-20

  • Find certain areas of text from a text file

    Hello all java Gurus! I need your help on something I am trying to do in order to learn java. I am very newbie and please show mercy if I don't understand every answer you probably give me. Here is my problem. I have text file with certain areas I need to "isolate" (to insert the data in a jTable after I solve this first).
    Let's say we have the following data in a text file:
    FILE IS "A.txt"
    ***first***
    this is 1 line in first
    this is  2 line in first
    this is 3 line in first
    ***second***
    this is 1 line in second
    this is  2 line in second
    this is 3 line in second
    ***third***
    this is 1 line in third
    this is  2 line in third
    this is 3 line in third
    **************I now need to read the "segment" that start with " *** blablabab *** " and ends with " ************** " and store the lines of this segment to another text file "B.txt".
    So "B.txt" has let's say this "segment".
    ***second***
    this is 1 line in second
    this is  2 line in second
    this is 3 line in second
    **************How can I do this? I know how to read/write from/to a text file with FileReader and BufferReader but I have no idea how to experiment with this. Is there anyone who can give me a hint or a help to start?
    I am very new to java so be gentle :-)
    Thank you very much in advance.
    Kostas

    Well this is a very good and I think efficient way to
    do but unfortunately I don't have a clue about regex
    and how they work. This is something I should learn.
    With the expression you wrote I would have each text
    block at a time? This will be stored then to an
    Arraylist like above? If you have another idea please
    suggest. I am interested in learning new tricks :-)
    Thanks for your reply notivago!!!
    KostasRegular expressions have a somewhat steep learning curve but they are worthy the effort, they are fast and powerfull text finding tools, the whole idea is that you search the text for some pattern. I will provide you a sample code, it is half way to solve your problem, you will have to make some minor adjustements to use it you your real application(none in the RE itself I hope).
    To understand it, look at the Pattern class documentation and the Matcher class documentation in the API.
    * SectionExtractor.java
    * version 1.0
    * 25/05/2005
    package samples;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    * @author notivago
    public class SectionExtractor {
         * @param args
        public static void main(String[] args) {
            String text =
                     "***first***\r\n" +
                      "this is 1 line in first\r\n" +
                      "this is  2 line in first\r\n" +
                      "this is 3 line in first\r\n" +
                      "**************\r\n" +
                      "***second***\r\n" +
                      "this is 1 line in second\r\n" +
                      "this is  2 line in second\r\n" +
                      "this is 3 line in second\r\n" +
                      "**************\r\n" +
                      "***third***\r\n" +
                      "this is 1 line in third\r\n" +
                      "this is  2 line in third\r\n" +
                      "this is 3 line in third\r\n" +
            Pattern pattern = Pattern.compile( "\\*{3}(.+?)\\*{3}$(.*?)\\*{14}", Pattern.DOTALL | Pattern.MULTILINE);
            Matcher matcher = pattern.matcher(text);
            matcher.find();
            System.out.println( "Header: " + matcher.group(1) );
            System.out.println( "Text Body: \n" + matcher.group(2) );
    }The sample as is, runs and give you output that should be clear on how the expression works. Try running it.
    May the code be with you.

  • Warp certain areas in a photo, PLEASE help.

    I know that PSE 9 does not come with a "warp" feature (in transform or free transform).
    Example scenario: In a photo of a face, I want to flatten or extend his nose.
    Is it possible to select a certain area of photo and distort that area. Or any suggestion.
    Thank you.

    Ah..."Mesh Warp" was the phrase I was trying to think of.  Thanks for jogging my memory.
    You can select an area in the photo and have the Liquefy distortion only affect that selected area.  The distortion won't go beyond the selected area, however.
    Ken

  • Is there a way to password protect certain apps from being used? Example I don't want my child to access my apps while he's using his on the iPad

    Is there a way to password protect certain apps from being used? Example I don't want my child to access my apps while he's using his on the iPad. I don't want to lock him out of the iPad. Let him use Angry birds, but not Sims or Games not appropriate for him that I play.

    Sorry, but it is not possible to restrict use of specific apps other that the few restrictions provided in the Restrictions settings, not unless the app itself provides some sort of lock. If you don't want your child playing certain games, the only answer is to not load them on the iPad he uses.
    Regards.

  • Ps CC 2014 is not working correctly after mac update to Yosemite 10.10.1.  Select does not protect unselected areas.  Magic eraser erases unselected ares.

    Ps CC 2014 is not working correctly after mac update to Yosemite 10.10.1.  Select does not protect unselected areas.  Magic eraser erases unselected ares.

    Yes my particular issue is not like yours. However, there have been many other laptop users experiencing similar problem to yours after 3.10 kernel. Mostly it seems to be bumblebee users that experience your problem with the blank screen. We do know that nvidia have yet to make their official drivers work with kernel 3.10 and up. The drivers in the Arch repository have been patched to work with 3.10. From what I have seen, this also only seem to be affecting laptops with newer nvidia gpu's. I fear there is not much to do with this problem until nvidia give official 3.10 kernel support.
    My suggestion would be to stick with 3.9.9 kernel and the drivers that work with it, and don't upgrade those packages until nvidia has addressed these issues. If you have a look at the nvidia forums you will see quite a number of topics mentioning black screen when starting x on 3.10 kernel, and also a thread for the system dying. Reading some of the threads there may help you keep up to date on whether or not the issue seem to be solved.
    https://devtalk.nvidia.com/default/board/98/

  • How do you darken a certain area with CS5?

    Is there a way to darken a certain area, such as hair, on a picture using Photoshop CS5?
    Thank you

    Or just select the hair and make the adjustments directly.  Some refer to this as "destructive" editing, but I prefer to consider it "constructive".
    You can see a pretty neat tutorial described in this thread, by the way:  http://forums.adobe.com/thread/653534
    -Noel

  • Password protecting certain pages?

    Hi —
    Does anyone know if it's possible to password protect all pages bar your homepage? I'd like to be able to do this whilst I'm trying to update my site but still wanted visitors to be able to access my home page.
    Thanks all.

    You can password protect certain pages only with iTweak.
    As stated by Wyodor , you also need to take a look at your host.
    The most common way is to protect by .htaccess if supported by your host
    Take a look at the tutorial of iTweak for password protect.
    Good luck

  • RAM PREVIEW CERTAIN AREA???

    A couple months ago I Was watching AE tutorials On YouTube, and came across one where the instructor demonstrated how to RAM Preview certain areas of the timeline, and at the time I did not need that information. Now I do and I cant find the video, nor do I remember how do it, please somebody help me!

    Simple: you limit the Work Area.
    Put your timeline cursor where you want the preview to start.  Hit the b (for Begin) key.  Notice how the Work Area marker jumps to that point.
    Put your timeline cursor where you want the preview to stop.  Hit the n (for eNd) key.  The marker for the end of the Work Area jumps to that point.
    Now preview.
    You can move the Work Area markers around by the click-drag technique, too.  Don't forget to put them back when you're done.

  • My niece dropped my iphone and now i cant get past my password screen because its unresponsive in a certain area, what do i do?

    My niece dropped my iphone and now i cant get past my password screen because its unresponsive in a certain area, what do i do?

    hand it in for repair?

  • How to protect an area in a chroma key?

    Hi Folks,
    I'm having a bit of a problem performing a key on a section of footage. There's an article in the foreground that unfortunately is the color of the greenscreen (bluescreen actually). Is there any way to 'protect' that area so that the chroma key filter doesn't affect it? The closest solution I've come up with is to duplicate the section of footage and move the copy to the next higher video track, then use a shape mask to frame the small section that is problematic. This works for the most part except that during the cross dissolve at the beginning and end of the clip. During the dissolve you can clearly see the shape of the mask as it doesn't 'dissolve' at the same rate as the dissolve on the underlying original clip.
    I would imagine that there has to be a simpler way to accomplish this, but it's eluding me.
    Thanks,
    Chris

    If you have to dissolve between composites, which is what you're creating with holdout and edge mattes and keys, you have to merge all the layers into one and then you can apply those transitions. You need to either key all the video you're using, export animation + which will maintain the alpha and edit into your sequence or export selects to Motion with sufficient handles for your dissolves and then import those Motion projects back into FCP.
    You could create sequences of any selects, do the key in FCP with your mattes, import those sequences into your master which would also take care of any dissolves. However, Motion has a superior keyer and matte tools over FCP.
    At any rate, this involves some organizational strategy over just applying a keyer to a layer in FCP.

  • Pixels appear incomplete in certain areas within text. The words are blurry like the pixels haven't fully opened...

    text appears blurred only in certain areas. When you mouse over the text or highlight the text then remove the highlighting the text becomes crystal clear or sharp and will stay that way.

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

Maybe you are looking for

  • Getting a heap error while opening the BI Publisher Console login page

    Hi, I have installed BI Publisher 10.1.3.4.2 on OC4J on Windows 7 OS and getting the following error on opening the BI Publisher Login Console. *2013-04-30 20:44:31.921 NOTIFICATION J2EE JSP-0008 Unable to dispatch JSP Page* *: Exception:oracle.jsp.p

  • How can I change my scratch disk?

    I used to use FCE and always used a scratch disk, i.e., an external hard drive for the actual footage so it wouldn't clog up my computer's drive. I've been looking for a way to do this in iMovie '09, but can't figure out how.  Anybody know how to do

  • Comment rétablir acrobat 9 standard en français

    Bonjour, Un an après avoir installé adobe acrobat 7 en français, après des mises à jour toute l'interface est en anglais. Comment revenir au français. Merci de votre aide Pierre

  • FRM-40735: WHEN-LIST-ACTIVATED trigger raised unhandled exception ORA-29516

    Hi All, The users are facing problem on opening the OAF pages on 11i(11.5.10.2) instance. They face this error when they, 1. Go to System Administrator responsibility. 2. Open page under Workflow > Administrator Workflow > Status Monitor. 3. This err

  • My MacBook froze and won't turn on now.

    I was watching Netflix and first the screen froze but the sound was still working. I thought it was Netflix having issues so I hit escape and nothing worked. I closed my MacBook so the sound would stop and it did. But then I opened it up 5 seconds la