CHANGE PROPERTIES FOR FRAMES

It dependes what do you want to do.
If you have some queries and some frames stand on these queries and
you want to see all in the separate pages you must to set property 'page_break_after' to on.
But if you don't have any information in one query you get empty page within report and it's not good!!!
If you want to avoid that do so:
1.Don't set 'page_break_after' to on.
2.Make frame around repeating frame.
3.Make small frame (called sizer with size of text field) into big one but not in repeating frame and from :cf_formula give to it 40..50 chr(10) (break)
4.Set format_trigger for big frame : if query dosn't bring any rows return (false)
Try this way.
(All for Report 2.5)

As far as I know, there is no SRW Built-in function/procedure to set the Page Break After property. You can only do this from the property palette.

Similar Messages

  • How to change properties for some controls in runtime ?

    hi,
    I would like to change some of the properties for some controls in front panel in runtime. Number of control properties I want to change is depending of a log file user opens in final application.
    I attach an example where I'm trying to change the visibility of numeric controls. Problem I have I don't know which reference to connect to property node in case the control in for loop is not a numeric control. The example relies to label.text property but I could use the more generic classname property as well.  
    regards,
    petri
    Solved!
    Go to Solution.
    Attachments:
    dynamic reference.vi ‏11 KB

    pcardinale wrote:
    Initially, a control has no caption.  It's not just that the caption string is empty and the caption not visible, but the caption object does not exist.
    I think this should probably be changed in future versions, because even if each control had a caption, it would still be a negligible small part of the VI. The current behavior made sense many years ago where HD and memory space was very precious. Not any more!
    This issue comes up often enough that it warrants addressing the root of the problem.
    It is hard to convince the casual that the caption does not exist if he can simply do a "show caption" at edit time and it will show in all glory, even with the default set to the current label. It is confusing!
    There is even an idea about this that seems worth supporting (also read the link in the discussion).
    What do you think?
    LabVIEW Champion . Do more with less code and in less time .

  • Changing properties for adding pages

    Hi,
    I have a problem, when i create a Workset and I'm not able to change its properties.
    For example I need to link it with some pages.
    Any clues?
    Regards,
    Dustin

    Hi,
    you must unlock objects before adding pages.
    Proceed as follows. Logon on the EP as Admin and go under <b>System Administration -> Monitoring -> (in the Detailed Navigation) Portal >  Object Locking</b>
    You would see the list of the lock objects and you can unlock them.
    Best regards,
    Gianluca Barile

  • ITunes crashes when changing properties for Printer in Windows XP

    I know this has similarly been posted already, but since the post I read had been ARCHIVED, I could not respond to it. (In my experience) Its not the fact that the properties button was pressed on the Print window of iTunes, but that an option in the properties dialog was pressed. Several options ARE available. I have a Dell Photo Printer 720 installed. The software included has several options for printing. The main page has 3 tabs: Quality/Copies, Paper Setup, Print Layout. All of the options work on all of the tabs. The problem comes in when you use the drop down menus from the top of the properties window. (of wich there is a save properties dialog) The drop down windows are basically Wizards to better help you complete your task, by asking you what you want to do. If you can refrain from using thoes drop downs, whatever changes you make to the rest of that window will be allowed. This is definutly something for the design team to look into, even if (for me that is) I can still alter printer properties, from what i understand most people can't access the properties at ALL! Side note, I also have an older HP DeskJet 722c installed on another computer with no problems accesing the properties window. Im sure it has something to do with the fancy drop down windows in the Dell version, as they STAY open until you click the close button.
    Dell Dimension XPS Gen4   Windows XP   Pentium 4 dual processor

    https://discussions.apple.com/thread/3429681

  • SETTING PROPERTIES FOR A MAPPING VIA OMBPLUS ISN'T WORKING

    Hi, i have a problem with OMBPLUS:
    I have a script which creates a mapping and then is supposed to change properties for the mapping and seems to do so via OMBRETRIEVE. But when looking in OWB the properties aren't changed.
    If I change any of the properties inside OWB and then run the script again, then the properties are changed. Does anyone know why the behavior is like this?
    /thanx Joel
    When running the script the output looks like this:
    CREATE MAPPING 'XXX_1_IN'... DONE
    DEFAULT_OPERATING_MODE={SET BASED FAIL OVER TO ROW BASED}
    ALTER MAPPING PROPERTIES FOR 'T_A_TEST_XXX_1_IN'... DONE
    DEFAULT_OPERATING_MODE={SET BASED}
    -- ALL DONE --
    The script:
    set temp_module "TMP"
    set tmp_table1 "XXX_1"
    set tmp_table2 "XXX_2"
    set map_name "XXX_1_IN"
    puts -nonewline "CREATE MAPPING '$map_name'... "
    OMBCREATE MAPPING '$map_name' \
    ADD TABLE OPERATOR '$tmp_table1' BOUND TO TABLE '../$temp_module/$tmp_table1' \
    ADD TABLE OPERATOR '$tmp_table2' BOUND TO TABLE '../$temp_module/$tmp_table2' \
    ADD CONNECTION \
    FROM GROUP 'INOUTGRP1' OF OPERATOR '$tmp_table1' \
    TO GROUP 'INOUTGRP1' OF OPERATOR '$tmp_table2'
    OMBCOMMIT
    puts "DONE"
    set prop [OMBRETRIEVE MAPPING '$map_name' GET PROPERTIES (DEFAULT_OPERATING_MODE) ]
    puts "DEFAULT_OPERATING_MODE=$prop"
    puts -nonewline " ALTER MAPPING PROPERTIES FOR '$map_name'... "
    OMBALTER MAPPING '$map_name' \
    SET PROPERTIES (DEFAULT_OPERATING_MODE) \
    VALUES ('SET BASED')
    OMBCOMMIT
    set prop [OMBRETRIEVE MAPPING '$map_name' GET PROPERTIES (DEFAULT_OPERATING_MODE) ]
    puts "DEFAULT_OPERATING_MODE=$prop"
    puts "-- ALL DONE --"
    puts ""
    OMBDISCONNECT

    Thanks for your idea Roman, but it doesn't solve my problem.
    The problem is regardless of which property (Runtime parameters in OWB) I try to change. Before ANY property is changed via OWB (GUI) the changes via OMB doesn't come to effect (even if RETREIVE after OMBCOMMIT says so).
    Regards, Joel

  • SETTING PROPERTIES FOR A MAPPING VIA OMBPLUS ISN'T WORKING (OWB10gR2)

    Hi, i have a problem with OMBPLUS:
    I have a script which creates a mapping and then is supposed to change properties for the mapping. The script worked in previous releases of OWB but after upgrading to 10gR2 I get an error that DEFAULT_OPERATING_MODE property does not exist.
    Does anyone know why I get the error?
    /thanx Joel
    When running the script the output looks like this:
    CREATE MAPPING 'XXX_1_IN'... DONE
    DEFAULT_OPERATING_MODE={SET BASED FAIL OVER TO ROW BASED}
    ALTER MAPPING PROPERTIES FOR 'T_A_TEST_XXX_1_IN'...
    OMB02902: Error setting property DEFAULT_OPERATING_MODE of T_A_TEST_XXX_1_IN: MMM1034: Property DEFAULT_OPERATING_MODE does not exist.
    -- ALL DONE --
    The script:
    set temp_module "TMP"
    set tmp_table1 "XXX_1"
    set tmp_table2 "XXX_2"
    set map_name "XXX_1_IN"
    puts -nonewline "CREATE MAPPING '$map_name'... "
    OMBCREATE MAPPING '$map_name' \
    ADD TABLE OPERATOR '$tmp_table1' BOUND TO TABLE '../$temp_module/$tmp_table1' \
    ADD TABLE OPERATOR '$tmp_table2' BOUND TO TABLE '../$temp_module/$tmp_table2' \
    ADD CONNECTION \
    FROM GROUP 'INOUTGRP1' OF OPERATOR '$tmp_table1' \
    TO GROUP 'INOUTGRP1' OF OPERATOR '$tmp_table2'
    OMBCOMMIT
    puts "DONE"
    set prop [OMBRETRIEVE MAPPING '$map_name' GET PROPERTIES (DEFAULT_OPERATING_MODE) ]
    puts "DEFAULT_OPERATING_MODE=$prop"
    puts -nonewline " ALTER MAPPING PROPERTIES FOR '$map_name'... "
    OMBALTER MAPPING '$map_name' \
    SET PROPERTIES (DEFAULT_OPERATING_MODE) \
    VALUES ('SET BASED')
    OMBCOMMIT
    puts "-- ALL DONE --"
    puts ""
    OMBDISCONNECT

    Hi, don't look at the script it was copied and pasted from an old thread. The problem is the error I get when trying to execute:
    OMBALTER MAPPING 'map_name' \
    SET PROPERTIES (DEFAULT_OPERATING_MODE) \
    VALUES ('SET BASED')
    OMB02902: Error setting property DEFAULT_OPERATING_MODE of map_name: MMM1034: Property DEFAULT_OPERATING_MODE does not exist.
    //Joel

  • Mass change needed for document properties

    Hello Techies,
    My users want to upload large amounts of documents and want they also want to set the properties in bulk and not one by one. I have made some properties for these documents.
    The problem is that the mass change report in the portal is not user friendly enough. They want to select a few documents and set them all to the same properties. Webdav does not support this either, nor does DAV explorer.
    Other suggestions?

    Frederik - there is <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9bfc45ba-0b01-0010-4890-da85753f0f58">an article by Martin Hermes about using Excel for property maintenance</a> that outlines one possible custom solution for this. You might find that the Excel sheet as it is delivered fits your needs - you may also find that you need to modify it for your requirements.

  • How do I change the default properties for Replace(Ins)?

    Acrobat Pro X
    Comment tools: Annotations
    All tool icons EXCEPT Replace(Ins) show "Tool Default Properties" as an option when right-clicked.  When I right-click a particular replacement in the document and select "Properties," there is no option to set current as default.
    So, how do I change the default properties for this annotation tool?  I need to change the Author and the color.
    Thanks,
    Nancy

    Create customized controls for your graphs and controls and setup your favorite attributes .
    Use your custom controls instead of the canned controls.
    Do a search on UI and you will find a community that already created custom controls.
    Visualize the Solution
    CLA
    LabVIEW, LabVIEW FPGA

  • Can't Change Labels for Properties

    I Can't Change Labels for predefine Properties
    or Custom Properties.
    I had done it with this:
    http://help.sap.com/saphelp_erp2004/helpdata/en/65/6fc63ed4027f6be10000000a114084/frameset.htm
    I just followed what the help said.
    but i can't see any change for my label of Properties.
    I had done it as follow steps.Please help me to
    Check if i miss some steps!
    1,I creat .properties files
      mylabels.properties
       in this properties file  i creat a key
           modified=date
      mylabels_zh_CN.properties
        in this properties file  i creat a key
           modified=u66F4u65B0u65E5u671F
    2,I made a jar file use the two .properties files
      named mybunding.jar
    3,I copy this jar file to
    .../j2ee/cluster/server<n>/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal/portalapps/com.sap.km.common.resourcebundle/lib
    4, Create a new metadata extension under Content Management -> Global Services -> Property Metadata -> Metadata Extensions.
      named it  my_metadatae_extension
       set  Bundle File=com.sap.km.common.resourcebundle.mybunding.mylabels
    5,restart the servlet engine,
    6 in the key for label of the properties
        i set modified the key i creat in step 1.
    when i display the properties it still didn,t display
    my created lable.
    How should i do? any step i miss? or any better solution
    for the lable?
    Please help me ,
    BestRegards
    Han

    Hi Han,
    here my corrections:
    1.
    I would use the filename "mylabels_cn.properties" and not "mylabels_zh_CN.properties"
    2.&3.
    This is the SP2 way for using the bundle files for properties. For NetWeaver you need to create a new PAR-file with the bundle file including the labels and translations as described <a href="http://help.sap.com/saphelp_nw04/helpdata/en/65/6fc63ed4027f6be10000000a114084/frameset.htm">here</a>.
    It's very easy if you use the example PAR file provided by SAP in SAP Note 817876, as mentioned in the referenced link (Prerequisites section).
    Read carefully the process in the link and try again. If you still experience problems, come back with the new detailed description.
    Hope this helps,
    Robert

  • Change VI properties for all VIs in a library simultaneously

    I want to change the VI properties for all of the VIs in my library (specifically the Execution properties). Is there any quick way to do this so I can avoid opening up each VI individually?
    Solved!
    Go to Solution.

    You can do this through scripting.  Open a reference to the VI edit the VI then save it.  Here is an example that can do this for editing the documentation of a set of VIs.
    https://decibel.ni.com/content/docs/DOC-17043
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • How to add a listener for frame change

    hello
    Im quite new to jmf, and im writing a code which uses the webcam, but im stuck at a point where i want a listener which is called whenever the frame changes in the visualcomponent. so basically im looking for a frame changed listener to be added to the visual component instead of using a loop or a timer or something.
    i just need a method to be called constantly along the stream coming from the webcam but which is consistent with the changing of the frames.
    i would really appreciate any kind of help.
    thank you

    i thought there would be a listener or something ready to do thisThere is. It's the Rendered interface, which has a callback everytime data is received. If you want to create a custom renderer that is triggered everytime data is available, you set a processor to use your renderer and when data is available, your process command will be called. Same as an event listener...but it's very advanced stuff to implement the renderer interface.
    for example if u want to record a video ull need to capture every frame as soon as it comesNo, the video doesn't come to you a frame at a time. The video is already encoded somehow when you get it, so it's coming in as a stream just like it'll be going out to the file... It's a stream of bytes, not a stream of images... You're not digitizing here, you're transcoding.

  • ExtendScript example for Frame - changing tags by table column

    In the excellent book Unstructured Framemaker 11, there is Chapter 25 on using Extendscript, the only place I have seen
    a cogent, coherent walkthrough of the history behind ExtendScript for Frame (evolving form the FDK) and an example showing good
    design principles. The example shows how, starting from the small to the large tasks, select a cell, filter it for a criteria, and highlight the
    cell, make these functions, then wrap these in functions that select all the tables of a specific name, then go through a document, etc.
    I would like to learn more about Extendscript, I'm going through the Scripting Guide, but the key is the tweak for finding a specific column,
    changing the tag for the heading cell of the column to a specified format, then changing the remaining "normal" cells of the column to a specified format.
    That is the trick, since the heading cell needs have the option to be a different format, since the tag_name would help identify the rest of cells in the
    column.
    I'll come up with the main parts of the program, but it's the getting the specified column and specifying the heading cell and then the remaining
    cells is the tricky part.

    OK, starting at the lowest level is getting the column selected, since we need to select the correct column
    before selecting the first cell in the column to rename (a separate funciton?) and then the remaining cells
    in the column (another function)? Once these two functions are done, the rest would be like the example in the
    the Frame book, since then you would have a function select only the tables that have a certain name and then
    all the files in the book.
    #target framemaker
    // !! first, click on table
    var doc=app.ActiveDoc;
    //Get the table containing the insertion point
    var tbl=doc.SelectedTbl;
    //Get the first cell in the first row
    var cell=tbl.FirstRowInTbl.FirstCellInRow;
    var colNum=3;
    for (var i=1; i<colNum; i+=1){
        cell=cell.NextCellInRow;
    while (cell.ObjectValid()){
        var pgf=cell.FirstPgf;
        alert (pgf.Name);
        alert(cell);
        cell=cell.CellBelowInCol;// Move down to next cell

  • Unable to change Still/Freeze Frame Duration in User Pref Edit tab

    Process-selected new project, change Still/Freeze Frame Duration in user preferences on the edit tab.
    Need to change to 10 minutes. Typed in the field 00:10:00:00. When I hit ok, I get a beep and it defaults back to what was in there, 01:00:00:00. So tried a larger number 02:00:00:00. Same result. A beep.
    So went ahead with project and opened a sequence and tried to change it from the viewer. Same issue.
    Trashed prefs and started from scratch. Same issue.
    Ideas?

    Trashed prefs rebooted originally.
    Process as follows for trashing prefs. First time through I had opened a project. This time did not.
    Open Home Folder
    Open Library
    Open Preferences
    Delete com.apple.finalcutpro.plist
    Open Final Cut Pro User Data
    Delete Final Cut Pro 5.0 Prefs
    Delete Final Cut Obj Cache
    Delete Final Cut Prof Cache
    Run disk utility to repair permissions.
    Reboot.
    Did not open a project this time.
    Same issue but now I am able to put a slug in the time line and by selecting clip properties, can set the duration (was not able to do this before so some progress). Still can't set duration though as earlier described from edit tab on the user preferences page for still/freeze duration.

  • How to change Flex Application frame rate at runtime

    hello,
    i have Flex application that need to change the Frame Rate at
    runtime.
    when i am changing it by using the slider component, here the
    code:
    private function onChangeSlider(e:Event):void
    frameRate = sliderFR.value;
    trace(frameRate);
    <mx:HSlider id="sliderFR" x="452" y="765" width="378.2"
    minimum="1" maximum="50" liveDragging="true" snapInterval="1"
    value="25" change="onChangeSlider(event)"/>
    the value is changed, but the frame rate is not changed.
    when i insert the binding to the <Application> tag i
    got error on this one, because i can't bind there items for the
    application level.
    how can i change the Flex frame rate at runtime?

    i found the solution!
    in Flex application you have frameRate properties that
    doesn't work at runtime in the ActionScript code.
    if you have a video that you want to change the speed of it,
    you need to change the stage.frameRate (of all the Player itself).
    and there is a catch here. if you will try to change it right after
    the application will start (like in: creationComplete event) you
    will have a runtime error.
    what you need to do is, change the stage.frameRate value
    after the all application is started from a button or other event
    in the system.
    this is working grate for fast/slow FLV playing
    enjoy!

  • What project settings should I choose in PE8 for frame rate of 29.97 if camera source unknown?

    Hi, I would like to know what project settings to choose in premiere elements 8 for a frame rate of 29.97, pixel aspect ratio of 1.3333 and 1440x1080?  Should I choose HDV, AVCHD or hard disk?  I didn't record the footage, so I'm not sure what it was recorded on.

    I am definately selecting NTSC - HDV, HDV, 1080I30.  I then import the video. It shows in the project media - properties as 29.97 frame rate and in the interpret footage it also shows as 29.97.  But when it finishes indexing and starts to conform the video is changes to 25 frame rate. 
    Please see images below.  When importing the video it is at a frame rate of 29.97 until the indexing has finished, then it changes to 25 before conforming video
    IMAGE 1. Project settings
    IMAGE 2.  Indexing image.  frame rate at 29.97fps
    IMAGE 3. Properties while indexing video - 29.97 fps
    IMAGE 4.  Interpret footage - still while indexing at 29.97fps
    IMAGE 5.  Finished indexing changes to 25 fps and starts to conform video?

Maybe you are looking for

  • Finding selected event in iCal

    I want to run a script that processes the currently selected iCal event / todo. (sync it with a Filemaker DB). I cant find a command that returns the selected/current/active iCal object. I can only find an object one with a given property value. I'm

  • Form development & searching for the contents

    Dear all, In portal, I need a simple form to capture some information. Eg Vehicle Number, driver name etc. I also want to search on this form content. What will be a good option instead of custom developments. XML forms can be used but can't be searc

  • IPhoto 08 hates AVI files

    IPhoto 08 Crashes out if you inadvertantly try to drop .AVI files into the library. This can easily happen as many digital cameras also make mini .AVI movies and they can get caught up with the .jpg files (especially if you are moving from Windows).

  • LOGINW32 command line syntax

    We have Netware 6.5 SP8. What is the command line syntax for using LOGINW32 when our server context has a period in it? From what I have read, a period is what distinguishes the user name, context and tree. So having a period in our context name caus

  • Can't open PSE 9 because of Win32

    I have downloaded PSE9 onto my Mac but am unable to open it because my mac does not have Win32. How/Where can i get Win 32???