Form with Hierarchical tree in Windows gives error in Linux

We have a Windows Forms 10g Release 1 form with a H. Tree item. We want to port it to Linux. We open the Form in Forms 10g Release 2 and compile and save it. Then we move the .fmb to the Linux machine, open it in Linux Forms 10g Release 2 and deploy.
When we run the form we get an error and form is existed. There is no error message. Form is just existed.
The versions of Forms 10 Release 2 in Windows and Linux are the same.
What could be the problem?

CraigB wrote:
Then we move the .fmb to the Linux machine, open it in Linux Forms 10g Release 2 and deploy. Why do you need to open the form on Linux in order to deploy it? Why not just use the Form Compiler (frmcmp userid=user/pw@db module=<form_name> module_type=form). If you try to just compile the form do you get any errors?
Craig B-)
If someone's response is helpful or correct, please mark it accordingly.
Yeah we did that way as well. but same problem comes.

Similar Messages

  • Connect by prior working in sql but not in forms 10g hierarchical tree

    Hello Friends,
    I have the following connect by prior example which is working in sql command prompt but not in Forms 10g hierarchical tree item type. Can you please let me know why ?
    configuration: Forms 10g patchset 10.1.2.0.2 and oracle 11g database on windows 7
    SQL> SELECT 1 InitialState,
    2 level Depth,
    3 labeller NodeLabel,
    4 NULL NodeIcon,
    5 to_char(reportno) NodeValue
    6 FROM reports where formname = 'billinin.fmx' or reportno > 9999
    7 start with reportno > 9999
    8 CONNECT BY PRIOR reportno = labelno
    9 /
    INITIALSTATE DEPTH NODELABEL N NODEVALUE
    1 1 FIRST 10000
    1 2 report1 UD Label 1
    1 2 report2 UD Label 2
    1 2 report3 UD Label 3
    1 1 SECOND 10001
    1 1 THIRD 10002
    If I write this command in forms hierarchical tree, then it is working, why not the above code ?
    SQL> SELECT 1 InitialState,
    2 level Depth,
    3 labeller NodeLabel,
    4 NULL NodeIcon,
    5 to_char(reportno) NodeValue
    6 FROM reports
    7 start with reportno > 9999
    8 CONNECT BY PRIOR reportno = labelno

    Thanks Room,
    This command worked ! I will put the sample working code here. It will help you to filter the records in a tree in sql command prompt as well as in forms hierarchical tree 10g.
    SELECT 1 InitialState,
    level Depth,
    labeller NodeLabel,
    NULL NodeIcon,
    to_char(reportno) NodeValue
    FROM reports
    start with reportno > 9999
    CONNECT BY PRIOR reportno = labelno
    AND FORMNAME = :reports.testitem

  • How to call forms using Hierarchical Tree in Forms 10g?

    I know how to call forms from menu that attached to a top form.
    I would like to call forms using Hierarchical Tree. Does any one know how where I can find some instructions on using Hierarcical Tree to call other forms? Any discussion is welcome. Thanks.

    Thanks to Francois.
    The exampe with clear instructions and I can build tree that calls forms now.
    I add a OPEN_FORM statement in WHEN-TREE-NODE-ACTIVATED trigger
    Declare
         LN$I Pls_integer ;
    Begin     
    :Ctrl.Node_Activated := Ftree.Get_Tree_Node_Property('BL_TREE.MENU', :SYSTEM.TRIGGER_NODE, Ftree.NODE_VALUE) ;
    If :Ctrl.Node_Activated IS NOT NULL Then
         Set_Alert_Property( 'AL_CALL_FORM', ALERT_MESSAGE_TEXT, 'Calling module : ' || :Ctrl.Node_Activated ) ;
         LN$I := Show_Alert( 'AL_CALL_FORM' ) ;
         open_form(:Ctrl.Node_Activated);
    End if ;
    End ;
    Or call physical form path by:
         open_form('c:\tree\'||:Ctrl.Node_Activated ||'.fmx');
    I enter the VALUE of MENU as the Form fmx name and it works very well.
    Thanks so much.

  • Robo-form toolbar add-on causing windows shortcut error messages

    Robo-form Toolbar Add-on causing Windows Shortcut error messages! HELP

    The local PC needs the
    u2022 CRRuntime_12_2_mb.exe
    u2022 SAPCrystalSetup.exe
    and dot net 3.5 installed.
    There are very good install instructions in the package, it installs differently to other add ons on the client side.

  • Forms Builder-hierarchical tree(expanding and collapsing nodes)

    hi friends,
    can anyone help me with populating my hierarchical tree form by using codes for collapsing and expanding?
    for instance when_button_pressed:
    tree_control.expand_all(tree_control.v_item_name); //this is for expanding all the nodes in the tree structure
    well, i have an sql statement in my record group which in turn defines the structure of the hierarchical tree.
    Is it possible to just use the codes 'tree_control.expand_all(tree_control.v_item_name);' like that in the when-button-pressed trigger?
    Thanks for any help :)

    Hi
    can anyone help me with populating my hierarchical tree form by using codes for collapsing and expanding?
    Pls have a look here ....
    Hope this helps...
    Regards,
    Amatu Allah.

  • Forms 6 hierarchical Tree

    I would like to Know concept of Hierarchical Tree of forms 6i. What query should be written in the record group to populate the tree and how to implement hierarchical tree to make the form act like Windows Explorer .
    Thank You.

    Read the documentation. Here is a sample query to load the record group.
    PROCEDURE prc_populate_record_group
    IS
    CURSOR g IS
    SELECT groupnum,
    groupnm
    FROM merch_group
    ORDER BY groupnm;
    CURSOR c (l_groupnum NUMBER) IS
    SELECT categorynum,
    categorynm
    FROM merch_group_category
    WHERE groupnum = l_groupnum
    ORDER BY categorynm;
    i NUMBER;
    l_rg_id RECORDGROUP;
    l_init_state GROUPCOLUMN;
    l_level GROUPCOLUMN;
    l_label GROUPCOLUMN;
    l_icon GROUPCOLUMN;
    l_value GROUPCOLUMN;
    l_node ftree.node;
    l_next_node ftree.node;
    l_tree_item ITEM;
    BEGIN
    l_rg_id := FIND_GROUP('PRC_GROUP_CAT');
    IF NOT ID_NULL(l_rg_id)
    THEN
    DELETE_GROUP(l_rg_id);
    END IF;
    l_rg_id := CREATE_GROUP('PRC_GROUP_CAT');
    l_init_state := ADD_GROUP_COLUMN(l_rg_id, 'init_state', NUMBER_COLUMN);
    l_level := ADD_GROUP_COLUMN(l_rg_id, 'level', NUMBER_COLUMN);
    l_label := ADD_GROUP_COLUMN(l_rg_id, 'label', CHAR_COLUMN, 40);
    l_icon := ADD_GROUP_COLUMN(l_rg_id, 'icon', CHAR_COLUMN, 20);
    l_value := ADD_GROUP_COLUMN(l_rg_id, 'value', CHAR_COLUMN, 40);
    i := 1;
    FOR g_rec IN g
    LOOP
    ADD_GROUP_ROW (l_rg_id, i);
    SET_GROUP_NUMBER_CELL(l_init_state, i, -1);
    SET_GROUP_NUMBER_CELL(l_level, i, 1);
    SET_GROUP_CHAR_CELL(l_label, i, g_rec.groupnm&#0124; &#0124;' - '&#0124; &#0124;g_rec.groupnum);
    SET_GROUP_CHAR_CELL(l_icon, i, NULL);
    SET_GROUP_CHAR_CELL(l_value, i, g_rec.groupnum);
    i := i + 1;
    FOR c_rec IN c (g_rec.groupnum)
    LOOP
    ADD_GROUP_ROW (l_rg_id, i);
    SET_GROUP_NUMBER_CELL(l_init_state, i, -1);
    SET_GROUP_NUMBER_CELL(l_level, i, 3);
    SET_GROUP_CHAR_CELL(l_label, i, c_rec.categorynm&#0124; &#0124;' - '&#0124; &#0124;c_rec.categorynum);
    SET_GROUP_CHAR_CELL(l_icon, i, NULL);
    SET_GROUP_CHAR_CELL(l_value, i, c_rec.categorynum);
    i := i + 1;
    END LOOP;
    END LOOP;
    --Find the tree
    l_tree_item := find_item('CONTROL.TREE4');
    -- Assign record group to item causing the data to display
    ftree.set_tree_property(l_tree_item, ftree.record_group, l_rg_id);
    -- Find the root node of the tree
    l_node := ftree.find_tree_node(l_tree_item, '');
    END;
    null

  • How to build a form with a tree component

    Hi, i'd like to know if it's posssible to build a form with
    the Flash 8 Tree component.
    My menu looks like a tree but the childnodes of this tree are
    some form criteria that you can aditionate and post to a serveur.
    I try to use the accordeon menu, and it works but my menu
    must have dynamic heigth, and open all the boxes like the tree
    component...
    I'm in a hole... please healp me...
    Thinks

    Sans,
    I am no Apex expert, but with a situation as "complex" as yours, have you thought about creating a VIEW that joins these 7/8 tables, placing an INSTEAD OF trigger on that view to do all the business logic in the database, and base your application on the view?
    This is the "thick-database" approach that has been gaining momentum of late. The idea is to put your business logic in the database wherever possible, and let the application (Form, Apex, J2EE, whatever) concentrate on UI issues,

  • Unable to open same form with Multiple logins on Windows IE8

    Hello All,
    We recently upgraded our instance from Jinitiator to Java Plugin Version 1.6 U18.
    After that we are unable to open same form from different logins on a same windows machine.
    the following is scenario.
    1) Login as X user into EBS and open a sales order form. -- Every thing is fine.
    2) On the same machine in another browser window, login as X user again and open Sales order form. --- No issue here also,
    3) On the same machine in another browser window(Keeping the above forms open), login as Y user and open sales order form ---> Form opened from Y user is fine, but, both forms of X user are exiting Oracle applications with message" Your logon session become invalid. Exiting Oracle applications".
    we have encountered issues with opening an attachment from a form, and it is resolved by Unchecking "Enable the next generation java plugin" option in Java control panal --> Advanced -> Java plugin. This workaround done according to note: 290807.1
    But the multiple login issue is not resolved.
    THis isssue is in our PROD and we are loosing customers. Please Advice ASAP.
    THanks.
    Rama Krishna N K J

    Hi Rama;
    It was working before? If yes what have you been changed on your system?(patch etc) You have same error on IE 7 or firefox? Did you check apache log file for more details? You have any FRM error code?
    Please check those settings on your IE8:
    1 - Go to Tools > Internet Options > Security > Select Sites > click on button "Sites": add the url of ebs.
    2 - Go to Tools > Internet Options > Security > Select Sites > Custom Level > Disabled XSS filter.
    Also check:
    Recommended Browsers for Oracle E-Business Suite 11i [ID 285218.1]
    Regard
    Helios

  • Hard drive replacement with recovery disc problems - Windows Troubleshooter Error 0x8E5E0247

    I have a 2009 Satellite A505 laptop
    64-bit Operating System with Windows 7 Home Premium, 4 gigs of RAM, and Intel Duo CPU, 2.20GHz
    The original Toshiba 500 GB Hard drive finally gave up the ghost and I replaced it yesterday with a WD Scorpio Blue HD Model WDBABC500ANC-NRSN (SATA 8 MB :Mo Cache 5400 RPM)
    Easy, straight forward replacement.  No problems.
    I got out my Recovery Discs which I created using the Toshiba recovery disc utility back in 2009. As I remember, at the time, the process of creating these discs was easy, and it was the first thing I did after registering my computer.
    The process created 5 discs, which the last, number 5, is the Applications and Drivers.  I have done this process before on other computers (Gateway and Toshiba) and it is usually pretty straight forward and problem free.
    Not so this time, and have to wonder about the Toshiba Recovery Discs that were created!  Why aren't these working correctly?
    I followed the normal process to boot the new Hard Disc on the DVD Recovery Disc 1, and everything seemed to work normally.  I followed every "next" prompt, and installed each new Disc 2, and 3 as prompted.
    After Disc 3, it said it was finished, and then went throught the Toshiba unpacking and the Windows installation process with multiple re-starts and Window start ups.  Again, everything seemed normal, except I wondered why I never received a prompt for Dsc 4 which was unused in the recovery process.  Is that normal? 
    During the Toshiba automatic unpacking and installation process, where various drivers were being installed, Windows errors began returning that said something like this, "Windows requires a digitally Signed driver, and the driver is unavailalbe and could not be activated in Windows 7 . Programs relying on them may not work. "  
    The problem drivers included the Realtek RTL8191 SE Wireless Lan 802.11n PCWE, the Richo pcle memory stick, Realtek High Definition Audio, Video Controller, Richo PCLe SD/MMC Host Conroller. and a few others....
    I did not touch the keybroad or intervere in anyway, and let the installation process proceed until everything was installed.  I then went through the first Windows start up process where you set the region, time and create the USER ID, set the adminstrator rights and even got the Toshiba Registration prompt.
    When finished, I noticed that the sound was not working, nor was the Wireless Network Connection, and when I attempted the usual Windows network Trouble Shooting process, it returned a Windows Error which said "A problem is preventing the troubleshooter from starting"  
    I then viewed the error details.  They said...
    Package ID:  Unknown
    Path:           C:\windows\diagnostics\system\networking
    Error Code:  0x8E5E0247
    USER:          mvh-PC\mvh
    Context:      Restricted
    I then went to MS Windows 7 Troubleshooting forum on the internet using another computer. 
    I followed all the 'cmd' processes for "supposedly" solving these problems by running System File Checker [SFC] scan on the computer which was supposed to replace the missing or corrupt files.
    Well, no joy.  The issue presists.
    After some problems accessing the CBS log, I was able to view it, and it provides no useful information as to why the errors where unable to be corrected.  
    I tried following everything on this MS How to Use File Checker document:
    In my CBS file I got a lot of SQM  "Failed to start" and "Failed to read" and "Failed to upload" and CSI "Repair results created"....
    but did not get any "Cannot repair member file" type of messages to use the 'cmd'
    takeown /f Path_And_File_Name function 
    I then started over.  Rebooted the computer again, starting with Recovery Disc 1 and several hours later was back to the same problem.  Geeze
    I have checked all the various Device drivers that are shown as not working in the Device Manager.  I have tried uninstalling them all, and then re-installing them both automatically during Windows 7 start up, and also from the Recovery Disc 5 which had the original drivers.  Nothing works.
    When I clicked on "Connect to the Internet" on the Windows Control Panel, I am returned a prompt that says "Windows did not detect any networking hardware" and so,even with a direct Ethernet connection to my cable modum, I was unable to download any Windows updates or new drivers to see if that fixes anything.
    I am stumped. 
    Any suggestions out there?  I don't want to waste a lot of money paying for more technical help for an aging laptob.  If this is beyond a simple fix, then I think I will just go and buy a new cheap computer from Asus having wasted the ~$70 bucks for the hard drive for this one.  
    It shouldn't be this hard, should it?  
    I have considered buying new recovery discs directlly from Toshiba, but if the process that came with the computer can't create correct discs that work the first time, what promise do I have that another $29.95 won't just be a waste of money too?
    Thanks for any helpful hints about what I may be missing or overlooking.   
    Regards
    Marvin Van Horn
    Solved!
    Go to Solution.

    Jerry...
    I think we can close this one out as 95% solved.  I did get the Intel (R) Rapid Storage Technology loaded after installing the Intel (R) Chipset Software Installation Utility.   The instrustions were not the simpliest for the novice, and it took me a while to figure out if my system was running in RAID or ACHI mode.  I decided that it was ACHI, so could proceed, even though I did NOT find this information in the Device Manager where they said I should have...
    Also, it was a little confusing on the Intel site which file to download.  I first did the zip file, (f6flpy-x64.zip) but could not figure how to execute it or put it on a disc, so downloaded the (iata_enu.exe) and hope it was the right one for a 64 bit system.  
    Anyway, I am now connected via Ethernet cable to my modem, and down loading 126 Windows Updates which should take a while.
    My only other issue, that I am aware of is that I do not seem to have any Wireless Lan software, and even though I have added Lan drivers via the recovery Disc, they do not show up anywhere.. Will have to figure out what is going on here, and why it isn't working...
    Maybe it is related to something in the Device Manager called
    "Other Devices"  Under that I have 4 items not working.  They are listed like this...
           Base System Drive,
           Base System Drive (a duplicate?)  
           Network Controller
           Video Controller.  
    I have tried uninstalling them, and allowing Windows to reinstall, but they still are not activated.  Not sure what this is for, and how to update it, but will search some more on another forum thread for these issues.  Maybe I will try again after all my Windows updates are done and see what happens.  
    Thanks again for your help.  If you have any other insights on the Wireless issue, that would be great.  It is turned on, but in the Windows tray, I only get the Ethenet Icon option, and it does not see or present wireless connection options like before.  I am sure this is something simple.  
    cheers
    mvh

  • I am trying to create a fill form with acrobat and I keep getting error

    I need to chat with customer service

    Hi osheady,
    If there's something that I can help you with here, I'd be happy to. What are you using the create the form, and what error are you receiving?
    I look forward to hearing back from you.
    Best,
    Sara

  • Form with only 1 text field + ENTER: Error 404

    I have several JSP pages with forms to enter/edit data. As long as I use the mouse to click the submit buttons, I get no errors. If the form has more than 1 text field to enter, i can also edit one of these text fields and press the ENTER/RETURN key which has the same effect as the submit button clicked with the mouse. But if a form just has 1 text field, I get the following error when I press the ENTER/RETURN key (instead of clikcing the submit button with the mouse):
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    This is the same case on all JSP pages that only has 1 text field: they work when using the mouse by pressing the submit button but fail when using the ENTER/RETURN key.
    Is this a known bug? Is there a workaround for this?

    I believe that text inputs can have their own action
    attribute, so providing the same value there as in
    the form may help (though by default it should defer
    to the form's action).
    So try something like:
    <form action="x.jsp">
    <input type="text" name="..." action="x.jsp"/>
    </form>
    That doesn't help. The addresss bar is also always the same as the jsp pages are displayed in a html frame.

  • Problem with Hierarchical trees (get_tree_node_property)

    Hi All,
    Hope someone can solve this. I am working with developer 6.0 .
    When I try to use get_tree_node_property I get a compile error 201 get_tree_node_property must be declared
    trigger text :
    declare
    test_node Ftree.Node;
    label varchar2(30);
    begin
    test_node:=:SYSTEM.TRIGGER_NODE;
    label := get_tree_node_property('nav_display', test_node,ftree.NODE_icon);
    end;
    it's same with ftree.node_label property
    thanks
    null

    try qualifying the get_tree_node_property with ftree.get_tree_node_property.
    Here is a example
    DECLARE
    htree ITEM;
    node_value VARCHAR2(100);
    BEGIN
    -- Find the tree itself.
    htree := Find_Item('tree_block.htree3');
    -- Find the value of the node clicked on.
    node_value := Ftree.Get_Tree_Node_Property(htree, :SYSTEM.TRIGGER_NODE, Ftree.NODE_VALUE);
    END;

  • **Urgent**: GO_ITEM to pop-up CANVAS with IMAGE in Sun JRE gives error

    Our Forms 10g Environment is this: Forms [32 Bit] Version 10.1.2.0.2 (Production) using Sun JRE i.e. Java Plug-in 1.6.0_06
    Problem is that when we try to navigate to a canvas (from a Button) which has an IMAGE ITEM the form is exited. This happens in every form which has a canvas with an image.
    i.e. In Button, we have code: Go_Item('block123.button1'). Button1 is also in that pop-up canvas.
    Even GO_BLOCK gives the same result.
    If the image is in the same canvas as the button which has GO_ITEM code, then it works.
    Of course this whole things works fine in JInit. But we need to run in Sun JRE.
    Is this a Bug?? Any help would be greatly appreciated.

    christian erlinger wrote:
    Well, as you are on 10.1.2.0.2 I strongly suggest that you apply the latest Patchset (10.1.2.3) the latest CPU Patches and the latest merge Patches. A lot of focus related things are fixed in those patches.
    cheersI will do this and let u know thans.

  • Using a datepicker with format mask MM/YYYY gives error on submit

    I'm trying to use a datepicker with the format MM/YYYY.
    The item is linked to a database column of type DATE.
    The items displays correctly (month and year), but when submitting the page, I get an "ORA-01843: not a valid month" error from the built-in DML process.
    Shouldn't Apex apply the same date format mask to the item value when trying to save it to the database?
    - Morten
    http://ora-00001.blogspot.com

    Hi Mike,
    I can/need to do that for my own PL/SQL processes, but the problem is with the Built-In DML Process....
    - Morten
    http://ora-00001.blogspot.com

  • While networking with labview 8.5 it gives error"not enough memory for this operation" ??

    hi
    i m working with the labview networking for the first time, when i ran my code it worked well 4 sometime . but after some days, it started giving error " not enoug memory for this operation" when the data reaches at 'typecast' tool (refer my code). my OS is winXP and RAM is 496MB. how to solve this problem?please reply soon .

    Hi JAhmed,
    Looking at your code, there may be a memory issue with the way you are type casting the string output from your TCP Reads. Since you are type casting a string to a number or array, you are not giving an indication of how much memory to allocate for this data, and I would suggest instead using an Unflatten From String VI. Use this VI the same way as your Type Casts, but for the input that reads "data includes array or string size?" create a false constant value because your data does not include this information.
    Regards,
    Stephen S.
    National Instruments
    Applications Engineering

Maybe you are looking for