Form builder IZ(item)m]W vZ

] form builder LjBJ(item),%?IJ,@
     d
s]?\夠m6|?I./BmwhWvZ(v.W: :TEST.NUM02+:TEST.NUM03 =v.dBXh6).     BI?s\6|.

Hi John,
for the process of time dependent publishing look here: http://help.sap.com/saphelp_ep60sp2/helpdata/en/e8/a9a76828b8dc469969ff450ec81ced/frameset.htm
I just also tried to bind the VALIDFROM and VALIDUNTIL properties to some input fields within a form of the form builder, but it seems to be a question of the right timestamp format (which I don't know). Every time I try to put in some values, they are not accepted and the fields are rendered in red...
Nevertheless, hope it helps
Detlev

Similar Messages

  • How implement (Forms Builder ) Calculation Item in JDeveloper ADF?

    How implement (Forms Builder ) Calculation Item in JDeveloper ADF?
    (Forms Builder ) Property
    Calculation -> Calculation Mode=Summary
    Calculation -> Formula -> Summary Function=Sum
    Calculation -> Formula -> Summarized Block=Block Name
    Calculation -> Formula -> Summarized Item=Quantity Item

    You can have transient attributes in your VO that do calculations.
    http://download.oracle.com/docs/html/B25947_01/bcentities010.htm#BABHGCAH
    For summaries here are a few other options:
    http://www.freewebalbum.com/blogs/faces/bjanko/blogs.jsp?blog=bjanko20070725180020
    http://andrejusb.blogspot.com/2008/01/complex-calculated-values-in-oracle-adf.html

  • Hierarchical Tree Items question, in Oracle9i forms builder ^^;

    Hi,I'm kind of new to using the Hierachical Tree item in Oracle9i Forms builder. so anyway,in the book it was explaining how it's done clearly,but, what I want to do using that item is kind of different;
    in the book it has the way of making it like a navigator for the items/fields/tables in the database,either by creating a view for those fields by using Select Statements or using the whole table itself.
    however,what I'm trying to do is to have that tree list the names of Forms I have already created and probably the list of Reports I got,so it would sort of like a Menu and I could add a trigger to open the form/report once an item in the tree is double clicked on
    here's an example of what I'm talking about :
    http://i7.photobucket.com/albums/y264/_Crzy_Chck_/Htree.jpg
    sorry the screen shot isn't the best ^^;
    that's from a company my friend works at,they have that tree as a menu for their forms and reports,once u double click on a form name or a report,it opens up ^^;
    I tried google/yahoo,I got the same info I found on the book.

    Or you may want to check out this code:
       PROCEDURE next_menu(
          menu_in                                        IN OUT   NUMBER
        , master_menu_in                                 IN       NUMBER
        , master_name_in                                 IN       VARCHAR2
        , context_menu_in                                IN       VARCHAR2
        , node_in                                        IN       ftree.node
        , no_rows_out                                    IN OUT   BOOLEAN )
       IS
          CURSOR c_menu(
             b_master_menu                                           NUMBER
           , b_prev_menu                                             NUMBER
           , b_context_menu                                          gba_tpivmnu.kmenu%TYPE )
          IS
             SELECT   p.ofnk MASTER
                    , m.ofnk
                    , m.napp || m.kfnk_sub napplus
                    , m.rid
                    , m.rid_mas
                 FROM gba_tpivmnu p                                             -- parent menu
                    , gba_tpivmnu m                                                    -- menu
                WHERE m.rid_mas = p.rid
                  AND m.kmenu = b_context_menu
                  AND (
                          m.rid_mas = b_master_menu
                       OR (    b_master_menu IS NULL
                           AND m.rid_mas IS NULL ) )
                  AND (   m.rid > b_prev_menu
                       OR b_prev_menu IS NULL )
             ORDER BY m.rid;
          r_menu                                       c_menu%ROWTYPE;
          l_prev_menu                                  tmenu.kode%TYPE;
          l_teller                                     PLS_INTEGER := 0;
          new_node                                     ftree.node;
          this_node                                    ftree.node;
          tree_itm                                     item := FIND_ITEM( tree_item );
          l_top_node_name                              VARCHAR2( 512 );
       BEGIN
          IF master_menu_in IS NOT NULL
          THEN
             IF node_in IS NULL
             THEN
                /* eerste keer, dus dit wordt de bovenste node */
                l_top_node_name := master_name_in;
                glob.set_current_menu( context_menu_in );
                new_node :=
                   ftree.ADD_TREE_NODE(
                      tree_itm
                    , ftree.root_node
                    , ftree.parent_offset
                    , ftree.last_child
                    , ftree.expanded_node
                    , master_name_in
                    , 'favorites'
                    , master_menu_in );
             END IF;
             LOOP
                r_menu.rid := NULL;
                OPEN c_menu(
                       master_menu_in
                     , l_prev_menu
                     , context_menu_in );
                FETCH c_menu
                 INTO r_menu;
                CLOSE c_menu;
                l_teller := l_teller + 1;
                l_prev_menu := r_menu.rid;
                EXIT WHEN r_menu.rid IS NULL;
                this_node :=
                   ftree.ADD_TREE_NODE(
                      tree_itm
                    , NVL( node_in, new_node )
                    , ftree.parent_offset
                    , ftree.last_child
                    , ftree.expanded_node
                    , r_menu.ofnk
                    , NULL
                    , r_menu.napplus );
                next_menu(
                   menu_in                                 => menu_in
                 , master_menu_in                          => r_menu.rid
                 , master_name_in                          => r_menu.ofnk
                 , context_menu_in                         => context_menu_in
                 , node_in                                 => this_node
                 , no_rows_out                             => no_rows_out );
             END LOOP;
             IF l_teller = 0
             THEN
                no_rows_out := TRUE;
             END IF;
             IF l_top_node_name IS NOT NULL
             THEN
                set_tree_item_top_node( l_top_node_name );
             END IF;
          END IF;
       END next_menu;tree_item contains the name of the tree item you are using. the select statement is based on a table that is like EMP, where one EMP van be another EMP's manager. In this table a menu-option can be another menu-option's master.
    this is a recursive function that keeps calling itself untill the query finds no more record.
    Good Luck!

  • I want  to design a News like the *LInklist* by XML Form Builder

    Hello:
       Everyone!
       Now I have another problem about XML Form Builder
       I want  to design a News like the LInklist by XML Form Builder
       I want the result,For Example
    SAP News
           1news1
           2news2
           3news3
    who can give me some adviseon about how to disign the Edit, Show and Renderlistitem in XML
    Thanks a lot
    Hope your help!

    Hi,
    In XML Form
    1) Edit form is used for designing the user interface.
    2) Show form is used for displaying the xml form to the end user
    3) RenderListItem is used for  rendering the xml form into a small description like 1News1, 2news2  etc..
        Here you need to display only the heading of the xml form
    After you create the xml form
    Create Layout set  where you need to give the proerties like xml renderer form , no of items to display etc...
    Thanks&Regards,
    Raghu

  • Creating a .fmb with out using form builder

    Hi
    I am having a template to create form modules in the forms builder, for the most of the forms I need not change any
    of the PL/SQL code provided by the template. (All my business logic and information regading items in object navigator resides in the database) The only thing that I need to do is creation of fields in object navigator and provide the
    sub class information for it. So I felt that It's better to have a tool which generats the requried .fmb file if the all
    field details are stored in a table.
    While expermenting on that we came to know that there are some functions provided by Oracle Developer6.0 that creates all
    objects in the object navigator using a C program. These programs requires some header file, most of which are provided by
    Oracle developer6.0 and some are missing.
    Pls. let me know if any one experimented
    Thanx & Regards
    ([email protected])

    u have 2 options
    create  amterial master with price control indicator standrd and maintin the price of mateirial in account view now create a po with free line itme and do the gr now in this case sytem will create a accounting document and it post the amount to the stock account Dr.
    and no gr/ir  account hit will happen as it is a free itme so there is no question of paying any amount to vendor
    u can also use movement type 511 to do the gr for that free good
    option 2  create  am material with moving average price in this case if u do the gr then  system will not create any account document but point to note here is the price will become then zero in material master as map means latest price is updated in matreial master

  • How to insert special character from Oracle form builder 10g

    Dear all,
    I need help. how to insert special character like 'Superscript or Subscript ' from oracle form builder 10g. I had try in Oracle form builder 6i with press ALT+ASCII code in the text item and it work, but in the oracle form builder 10g this method doesn't work... would you like to help me...somebody please...
    Best Regard,
    Dedy P.T.

    What do you mean by insert ... from Forms Builder? Do you mean you want to add it as text in a string of pl/sql code or as part of boiler plate text (label) or a value on the Property Palette?
    For special characters you would need set NLS_LANG to something that would support the characters you want to use. For the Builder to see the change, you would need to set NLS_LANG to something like:
    NLS_LANG=AMERICAN_AMERICA.UTF8
    This can be done in the Windows Registry or system. As I mentioned, this will only apply to the Builder and will have nothing to do with a running form. For running forms you would need to set this in default.env. As for things like super and sub scripts, these are font formats and not necessarily characters. For the most part, I don't believe these are supported in Forms.

  • XML Form builder - Issue with Reset button

    Hi Experts,
    Using xml form builder I have created a project.In the show form I have added the "Reset" button.
    This reset functionality is working fine during creation of new xml file item.
    But when I am editing the existing xml file ,  onclick of the "Reset" button it is not clearing all the data fields instead it is clearing the newly added data.
    Please sugguest me how to achieve this functionality of clearing the fields during editing existing file item.
    Thanks,
    Regards,
    Rudradev Devulapelli.

    Hi Rudra,
    Try writing custom java script and call the same in the button click.
    ~Priya

  • Error writing output with iview for xml form builder

    Hi,
    I created a Xml Form Builder's project in which I developed an "Edit" and "ListEdit" sheet.
    I also created an iview for theese in which the code link is:"com.sap.km.cm.xmlform",and the field for Style Sheet for List and for single item are set up correctly,but when I tried the preview the following error message happened:
    com.inqmy.lib.xsl.xslt.XSLOutputException: Error writing output. -> org.w3c.dom.DOMException: Root Element is already present, cannot be appended as a child.
    could someone help me?
    thank's a lot!
    Nick.

    Hi,
    Now I'm confused,what do you mean with create new data? Are users editing existing documents
    (as if they go to a document example.xml > edit) or they are creating new documents (as if they go
    on folder > new > forms)?
    The problem is, in both cases a user would need read/write permissions.
    The normal flow content (data) is created in KM is as follows:
    1. user is assigned to a role
    2. role contains KM Navigation iView
    3. KM Navigation iView executes com.sap.km.cm.navigation component
    4. user chooses New > Form UI command (edit_xml_forms)
    5. edit_xml_forms UI command executes its code (com.sapportals.wcm.rendering.uicommand.cm.UIXMLFormsCreateCommand) and open xml edit for the user
    6. user fill the form and click Save, form is created into folder
    For what I understood so far, your requirement basically asks you to go directly to step 5, it is
    possible to pass a URL that goes directly to step 5, the UI command button, but if you do that
    you won't have a context, so chances that it will work are slim, since a context is required to
    fill the parameters asked by the app (like folder, user, permissions, etc). Even though, in some cases you can
    still pass the parameters via post in the URL but you must know which service/parameters the
    app asks for it, also a URL is static...
    That was the create scenario, I think it's more cons than pros, users would still be
    able to bypass the URL iView created for that, I'd suggest evaluating again if it's really
    a problem having users access cm to manage data
    kind regards,
    Rafael

  • Oracle Forms Builder Customization

    Hi all,
    I am beginning a software integration project and would really appreciate it if you could give me some guidance. Is it possible to customize the Forms Builder IDE and create menu items or buttons with scripts behind them to support something like automated storage and build functions that are linked to Subversion? Alternatively, is anyone aware of a third-party plug-in or application for Forms Builder that will support this? Thanks in advance.
    -S

    Because you have not offered details about which product versions, platforms, or hardware you are using, I can only offer some generic information. However, for the most part, the same concept will apply to all versions and platforms.
    It sounds like what you are looking to do is fairly simple and there may not be a need for using something as complex as the Forms API. Correct me if I am wrong but this is what I understand... you want to:
    1. Generate multiple executable files (FMX, MMX, PLX) from source files (FMB, MMB, PLL)
    2. Copy or relocate the latest source files
    3. Copy or relocate the latest executable files to a production environment
    All of the above can be fairly easy to accomplish with simple scripts. For example batch files on Windows (shell scripts on Unix).
    Generate executable files*
    See My Oracle Support Article 955143.1 for some example code of how to compile with a script.
    Copy or relocate the latest source files*
    Examples of how to determine the newer of two files can be found all over the Internet, but I foudn the following to be quite clear (these are Windows batch examples):
    http://forums.techguy.org/dos-pda-other/835496-solved-how-compare-2-file.html
    This information along with the copy or xcopy command (Windows) can be used to move the latest files to a new location.
    Copy or relocate the latest executable*
    The same as above can be used for these files, however if the production server is a remote machine and not the same machine, some permissions handling may be necessary.
    This search will expose information about copying across network share (mapped drives)
    http://www.google.com/search?q=copy+file+network+share

  • Login Screen in Oracle forms builder 6i

    Hello everyone
    I am trying to create a canvas with a login screen and password in oracle forms builder 6i.
    So far I have create the following table:
    CREATE TABLE PASSWORD
    (USER_ID NUMBER(3)
    CONSTRAINT PASSWORD_USER_ID_PK PRIMARY KEY,
    PASSWORD VARCHAR2(20) NOT NULL);
    Inserted the following values:
    INSERT INTO PASSWORD (USER_ID,PASSWORD)
    VALUES (1,1010);
    INSERT INTO PASSWORD (USER_ID,PASSWORD)
    VALUES (2,2020);
    Created a MENU canvas with a LOGIN button TI_USER_ID and TI_PASSWORD text boxes.
    In the LOGIN button i have inserted the following WHEN-BUTTON-PRESSED trigger:
    BEGIN
    SELECT USER_ID
    INTO :GLOBAL.USER_ID
    FROM PASSWORD
    WHERE USER_ID = :LOGIN.TI_USER_ID
    AND PASSWORD= :LOGIN.TI_PASSWORD;
    GO_BLOCK('PASSWORD');
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    :GLOBAL.COUNT := :GLOBAL.COUNT + 1;
    IF :GLOBAL.COUNT = 1 THEN
    MESSAGE('wrong');
    MESSAGE('wrong');
    ELSIF
    :GLOBAL.COUNT = 2 THEN
    MESSAGE('wrong');
    MESSAGE('wrong');
    ELSIF
    :GLOBAL.COUNT = 3 THEN
    EXIT_FORM;
    END IF;
    END;
    When i try to compile that it gives an error Bad bind variable LOGIN.TI_USER_ID
    Bad bind variable LOGIN.TI_PASSWORD
    What am i doing wrong?

    989056 wrote:
    Ok i changed the button to contain only the following:
    BEGIN
    SELECT USER_ID
    INTO :GLOBAL.USER_ID
    FROM PASSWORD
    WHERE USER_ID = :PASSWORD.TI_USER_ID
    AND PASSWORD= :PASSWORD.TI_PASSWORD;
    GO_ITEM('GO_REVIEWS');
    END;
    when i now press login it gives an error FRM 40735: WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-01403
    i tried to reffer to several items in several blocksi suspect that when you removed the exception it ends up with the no data found error. you need not to remove the exception clause try to bring that back. then try in SQL*Plus to see if your query returns any rows with the same data that you are attempting to use in your TI_USER_ID and TI_PASSWORD block item. if it does not return that is the cause of your issue it will not execute the GO_ITEM() command it will simply go to the exception clause.

  • Form Compiles in Forms Builder but not Unix?

    I have a form that compiles fine in Forms Builder (Version 6.0.8.11.3). When trying to compile the form on a Solaris Middleware Server it fails and gives several errors similar to the following:
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block...
    Compilation error on WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block:
    PL/SQL ERROR 201 at line 4, column 37
    identifier 'SATURN.SFTREGS' must be declared
    PL/SQL ERROR 0 at line 4, column 4
    SQL Statement ignored
    I realize that these same errors in Forms Builder if I have not connected to the database (Version 9.2.0.4.0) before compiling so I'm guessing that there is some environment variable set incorrectly on the middleware server. I'm quite new to Unix and am not sure what variables I should be looking at...any thoughts?

    We have tried both commands as indicated. We get the same errors that were in the original post as outlined below;
    Compiling PRE-INSERT trigger on form...
    No compilation errors.
    Compiling WHEN-NEW-FORM-INSTANCE trigger on form...
    No compilation errors.
    Compiling POST-QUERY trigger on SPRIDEN data block...
    No compilation errors.
    Compiling POST-BLOCK trigger on SPRIDEN data block...
    No compilation errors.
    Compiling KEY-NEXT-ITEM trigger on SPRIDEN_ID item in SPRIDEN data block...
    No compilation errors.
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block...
    Compilation error on WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block:
    PL/SQL ERROR 201 at line 4, column 37
    identifier 'SATURN.SFTREGS' must be declared
    PL/SQL ERROR 0 at line 4, column 4
    SQL Statement ignored
    PL/SQL ERROR 320 at line 4, column 11
    the declaration of the type of this expression is incomplete or malformed
    PL/SQL ERROR 0 at line 13, column 7
    SQL Statement ignored
    Compiling WHEN-VALIDATE-ITEM trigger on SFTREGS_TXT_TOTAL_BILLING_HOUR item in SFTREGS data block...
    Compilation error on WHEN-VALIDATE-ITEM trigger on SFTREGS_TXT_TOTAL_BILLING_HOUR item in SFTREGS data block:
    PL/SQL ERROR 201 at line 2, column 6
    identifier 'SATURN.SFTREGS' must be declared
    PL/SQL ERROR 0 at line 1, column 1
    SQL Statement ignored
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SYSMUSA data block...
    No compilation errors.
    Compiling PRE-INSERT trigger on SYSMUSA data block...
    No compilation errors.
    Compiling POST-UPDATE trigger on SYSMUSA data block...
    Compilation error on POST-UPDATE trigger on SYSMUSA data block:
    PL/SQL ERROR 201 at line 3, column 6
    identifier 'SMLOCAL.SYSMUSA' must be declared
    PL/SQL ERROR 0 at line 1, column 1
    SQL Statement ignored
    Compiling ON-ERROR trigger on SYSMUSA data block...
    No compilation errors.
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SGRSATT data block...
    No compilation errors.
    Compiling POST-QUERY trigger on SGRSATT data block...
    No compilation errors.
    Compilation errors have occurred.
    Any further thoughts?

  • Creating dynamic LOV in form builder 6i

    Hi All,
    I am new to form builder.
    I want to create dynamic lov, means
    Project type
    Client
    Work_type(thsi is also lov) ->> 1) Billable
    Reason (this is also lov) ->> 1) Billable
    Work_type(thsi is also lov) ->> 2) Non-Billable
    Reason (this is also lov) ->> 1) Fresher
    2) Project Manager
    As shown above, Suppose the project type is client then I will select either "Billable" or "Non-Billable" value.
    If I am selecting Work_type LOV as "Billable" then it should display "Billable" value in reason LOV
    or if I am selecting Non-Billable value from Work_type LOV then reason LOV will display the list of value as Fresher and Project Manager.
    Please help me, its very urgent.
    Thanks in advance.
    Regards,
    Bluetooth

    Bluetooth,
    This can be accomplished by creating two seperate record groups; one for Billable and one for Non-Billable. Then - in the WORK_TYPE When-Validate-Item (WVI)trigger - when the value is "Billable" you assign the Billable Record Group to your LOV or if the value is Non-Billable, then you assign the Non-Billable record group to your LOV. Your Record Group queries must return the same number of columns and the column names must match. If your record groups need to have a different number of columns and column names, then I would just use two seperate LOV's and assign them to the item accordingly. For example:
    /* Sample WVI trigger */
    DECLARE
      lov_id    LOV;
      item_id   ITEM;
    BEGIN
      lov_id := Find_LOV('YOUR_LOV_NAME');
      /* Option 1: Change Record Group of LOV */
      IF ( :YOUR_BLOCK.WORK_TYPE = 'BILLABLE' ) THEN
        IF ( Get_LOV_Property(lov_id, GROUP_NAME) != 'BILLABLE_RG' ) THEN
          Set_LOV_Property(lov_id, GROUP_NAME, 'BILLABLE_RG');
        END IF;
      ELSIF ( :YOUR_BLOCK.WORK_TYPE = 'NONBILLABLE' ) THEN
        IF ( Get_LOV_Property(lov_id, GROUP_NAME) != 'NONBILLABLE_RG' ) THEN
          Set_LOV_Property(lov_id, GROUP_NAME, 'NONBILLABLE_RG');
        END IF;
      END IF;
      item_id := Find_Item('YOUR_BLOCK.REASON');
      /* Option 2: Seperate LOV's */
      IF ( :YOUR_BLOCK.WORK_TYPE = 'BILLABLE' ) THEN
        IF ( Get_Item_Property(item_id, LOV_NAME) != 'BILLABLE_LOV' ) THEN
          Set_Item_Property(item_id, LOV_NAME, 'BILLABLE_LOV');
        END IF;
      ELSIF ( :YOUR_BLOCK.WORK_TYPE = 'NONBILLABLE' ) THEN
        IF ( Get_Item_Property(item_id, LOV_NAME) != 'NONBILLABLE_LOV' ) THEN
          Set_Item_Property(item_id, LOV_NAME, 'NONBILLABLE_LOV');
        END IF;
      END IF;Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • JavaBean in Form Builder 6

    Dear Sirs,
    to enhance an old Forms 6 application I want to use the JavaBean Area- item of Form Builder 6.
    I´ve developed a Java Bean which I did export as JAR file.
    In later Form Builder versions this JAR file has to be included in formsweb.cfg. But since Form Builder 6 does not have this config file where do I have to register my JAR?
    It is already included in classpath environment variable but this does not seem to be enough. Form Builder throws the following error: "FRM-13008: JavaBean mit dem Namen 'oracle.forms.fd.GetCanvasProp' nicht gefunden" (meaning: Form Builder is not able to find the class of JavaBean Area item)
    The class was compiled as Java 1.1 class.
    Thanks in advance for any hints.
    Best regards
    Janek

    Hi!
    Do you use forms 6i on the web?
    You find the formsweb.cfg in %oracle_home%\forms60\server folder
    But the builder does not read the formsweb.cfg.
    Try to expand the FORMS60_BUILDER_CLASSPATH registry key
    in hkey_local_machine\software\oracle.
    Gruesse ...

  • Form Builder 6.0 object library

    Hello,
    I created an object library in Form Builder 6.0, which I have
    used to develop two forms.
    The other member of my team wishes to use the same object
    library. When she loads it from my directory, it loads OK, but
    when she subclasses any of her objects nothing happens. I can
    see the red arrow on the object indicating that it was
    subclassed but the changes are not registered on the layout
    editor nor the form when it runs.
    Can anyone help?
    null

    double click the read arrow and it should turn black. A black
    arrow is a sub-classed item with the sub-class applied, red
    indicates sub-classed item with the sub-class not applied.
    Rasheed Ghany (guest) wrote:
    : Hello,
    : I created an object library in Form Builder 6.0, which I have
    : used to develop two forms.
    : The other member of my team wishes to use the same object
    : library. When she loads it from my directory, it loads OK, but
    : when she subclasses any of her objects nothing happens. I can
    : see the red arrow on the object indicating that it was
    : subclassed but the changes are not registered on the layout
    : editor nor the form when it runs.
    : Can anyone help?
    null

  • Problem creating a hierarchical tree in forms builder[issue with the query]

    Hi all,
    I have 2 tables.
    box (box_id, box_name)
    item(item_id, item_name, box_id)
    In a box there are several items.
    I want to create a hierachical tree to display items that are present in each box.
    LIKE:
    |---BOX1
    | |----ITEM 1
    | |----ITEM 2
    |
    |---BOX2
    | |----ITEM 1
    | |----ITEM 2
    Currently i am trying this query:
    SELECT -1 state, box_name, 'icon' icon, box_id val
    from box b, item i;
    I don't know what value to put for level, i don't know how to code the 'connect by prior' part.
    Could you please advise me?
    Michaël.
    PS. Then i will eventually use this query in forms builder.

    Hi MichaelR
    i get the FRM - 47321 error in forms builder ..
    Hence In order to populate a tree, the Select order must retrieve 5 columns:
    STATUS, LEVEL, LABEL, ICON, VALUE u should notice this orders in ur Query this will solve the error and pls notice that the...
    My advice is to use the On Line help in ur forms builder to help u in this ...
    Initial state : number
    Node tree depth : number
    Label for the node : varchar2
    Icon for the node : varchar2
    Data : varchar2This should be in WHEN-NEW-FORM-INSTANCE-trigger in order to populate ur tree...
    another thing why don't u think of building ur tree as i did here in the following example...Pls have a look here ....
    Hope this helps...
    Regards,
    Amatu Allah.

Maybe you are looking for

  • I have two iTunes account.  How do I delete one?

    When my husband purchased an iPod, I downloaded an iTunes account for him.  Now that we both have iPhones, my account comes up with his name.  Is there anyway to delete and start over with two individual accounts?

  • Running 17" MacBook Pro with 10.6.8 and 10.9.4, but recently unable to star up on 10.6.8 please help.

    I have a 17" mid 2010 macbook pro . I have been running two partitions one with Mavericks 10.9.4 and one with snow leopard 10.6.8. I have recently lost the ability to startup on the snow leopard partition. When booted to mavericks all seem to be fine

  • First bluray - share, compressor or DVD SP4?

    Want to create my first bluray - have an internal bluray burner in my early 2008 Mac Pro...have a pro res timeline in FCP 7. Not yet rendered. So if I go to share, bluray, do I have to first render the timeline? Or does it just do it for me? How can

  • Can we deploy both BPM and Webcenter on same weblogic domain?

    Hi, We have a clustered environment with two managed servers configured for SOA. Now, we are looking to integrate BPM worklists into custom webcenter portal app. In this process, can we create and deploy custom webcenter portal app on the same SOA se

  • Lines over watermark

    Hello, Is there anyway, using Crystal Reports designer, to have a watermark that appears below the boxes and lines in a report ? When I try to add lines or boxes in the watermark report sample given by Crystal, lines are always displayed under the wa