FRM-41361 cannot navigate out of current form in Mode Enter-Query

Hi all

I get error FRM-41361 in the background message box when you open a form in the browser to function. The issue does not exist when you open the form from the home page of the application. The form is loaded in query mode enter, and the enter_query command is in the trigger a TIME NEW FORM INSTANCE. I checked all the triggers that fire after this point for any kind of navigation, but do not see. The interesting thing is, if I put a fnd_message.set_string and the fnd_message.show just before the call to enter_query to debug, the problem disappears entirely.

Is it possible there are triggers of safety shot after loading the form in enter query mode which could be the cause and that the fnd_message calls are indeed save time for these triggers end before the call to enter_query?

Any help/advice is appreciated. Thank you!
Dan

try to SYNCHRONIZE before and after

Tags: Oracle Development

Similar Questions

  • Cannot figure out how to put in Mode 'drive '.

    The icon of the little book just don't appear in the title bar, no matter what I do. Tap, hold, double tap, etc. What I did to cause this and how to cope? Moto X, 4.4 Android. Thank you.

    This will depend on the page. Some pages are not able to understand or are too big to be simplified by the mode 'drive '.

    It is not a perfect tool, but will work on many sites of new Commons. Also can be false positives where reader mode is enabled for a page without true main body.

  • FRM-40010: cannot read the form

    Hi all.
    I have a question, I have just compiled my forms on my pc, then I needed to move it to the production server of my client, but I get this error, it is my case:

    my PC:
    Windows xp sp3 x 32
    WebLogic server 10.3.4 x 32
    formulas 11.1.1.4 x 32
    result = MyForm.fmx


    client server:
    Windows 2008 standard x 64 server
    WebLogic server 10.3.4 x 64
    JDK x 64
    formulas 11.1.1.4 x 64
    result = FRM-40010: cannot read the form

    According to the MOS, (ID 299938.1)

    You can also move a FMX created on 32-bit Unix to 64-bit Unix.

    He said about based on unix S.O., did not say that windows o.s. on

    so my question is: is this my problem? even if they do not mention windows?

    Thank you.

    Yes, a form compiled with 32-bit platform must be recompiled against the same platform.eg. production Server 32-bit.

    Therefore, if the production is 64-bit, all forms must be compiled against Production Server 64-bit otherwise you'll receive this error.

    Hope this helps,

    Kind regards

    Amatu Allah.

  • FRM-40010: cannot read the form under Linux

    Hello

    During the race, the f60desm gives error below command

    FRM-40010: cannot read the form /d01/oracle/prodappl/au/11.5.0/forms/US/PROJECT.fmx

    I've defined the following path

    (1) customPROD_A.env

    # Custom top PROJECT #.

    PROJECT_TOP=/D01/Oracle/prodappl/project/11.5.0
    export PROJECT_TOP

    (2) APPSPROD_A.env

    CustomFile=/D01/Oracle/prodappl/customPROD_A.env
    If [f $customfile]; then
    . /D01/Oracle/prodappl/customPROD_A.env
    FI
    . /D01/Oracle/prodora/8.0.6/PROD_A.env
    . /D01/Oracle/prodappl/PROD_A.env


    Environment:

    Oracle Applications: 11.5.10.2
    RDBMS: 11.2.0.1.0
    OS: OEL5


    Please help solve the problem.

    Thank you
    Concerning
    GSM

    Hello

    How to do the same thing in OEL5.

    The above applies to Windows (if you want to open the file on the Windows client machine fmb and compile - generate the fmx file). If you are on Linux, you need not to do the same thing, just the env file source application and compile the form (question "echo $FORMS60_PATH" to make sure that all the relevant directories are in the path).

    I created the directory of the root OEL5 ABC & copied all the pll, TEMPLATE.fmb & APPSTAND.fmb files in $AU_TOP/resources directory ABC but how to add ABC to FORMS_PATH in OEL5?

    As mentioned above, it is not required on Linux. However, if you want to add the ABC directory you issue:

    $ export FORMS_PATH =: $PATH

    Thank you
    Hussein

  • FRM-13008: cannot find javaBean with the name 'oracle.forms.fd.AddItem '.

    Hello

    I have 10 g forms in my pc (windows xp) location. I have jar jar files with me and associated examples.

    1. inside the My E:\DevSuiteHome_2\forms\java copy the additem.jar

    2 inside of the E:\DevSuiteHome_2\forms\server, I found the formweb.cfg file in the place where the first pot.

    serverApp = default
    # Forms applet archive for JInitiator
    archive_jini = frmall_jinit.jar, AddItem.jar

    and save the file.

    Now when I open the form in forms 10g, I get the following error. Please help me.

    FRM-13008: cannot find javaBean with the name 'oracle.forms.fd.AddItem '.

    Please help me how to solve my problem.

    Iqbal

    If it's only a 'Design' error, you can ignore it.

    Yes, but if you want to get rid of this error, include the full path to the jar file in the registry in the FORMS_BUILDER_CLASSPATH parameter

  • FRM-40010 cannot read form while opening the file menu in call_form

    I'm getting "" FRM-40010 cannot read form "everything by opening the file menu in call_form"

    I created a button and writes the following code in what release button.


    call_form ('F:\SS\SOURCE\ERRORS_MENU', Hide, do_replace)

    But I am able to open the file by call_form fmx. I use Form 6i and oracle 8i.


    Concerning


    Sandeep

    You can not call a menu by using the built-in call_form.
    You will have to use one of the methods I described in the previous answer.

  • Cannot navigate back to the previous screen (screen cannot be closed with the ESC key)

    Hi all

    I create simple BB app with eclipse jde 4.6.1, here the code example.

    class myApplication extends UiApplication
    {
        // applicatione entry point
        public static void main(String[] args)
        {
            // create an instance of our app
            myApplication theApp = new myApplication();
            // "run" the app
            theApp.enterEventDispatcher();
        }
        // app constructor
        public myApplication()
        {
         myScreen screen = new myScreen();
            pushScreen(screen);
        }
    }
    

    where my screen is like this

    public class myScreen extends MainScreen implements ListFieldCallback {
    private Vector menu;
    private ListField menuList;
    private MenuItem menuItem = new MenuItem("Details",100,10){
    public void run(){
    int index = menuList.getSelectedIndex();
    if (index == 1){
    Dialog.alert("list  "+index+" selected");
    }
    }
    };
    public void drawListRow(ListField listField, Graphics graphics, int index,
    int y, int width) {
         ListField menulist = (ListField) listField;
         MenuRowManager rowManager = (MenuRowManager)menu.elementAt(index);
         rowManager.drawRow(graphics, 0, y, width, menulist.getRowHeight());
    }
    
    public myScreen(){
    super(DEFAULT_MENU|DEFAULT_CLOSE);
    setTitle(new LabelField("myScreen", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER));
    
    this.addMenuItem(menuItem);
    createListMenu();
    }
    
    public void createListMenu(){
    menu = new Vector();
    menuList = new ListField(){
    protected boolean keyChar(char key, int status, int time){
    if (key == Characters.ENTER){
    // open next window
    int index = getSelectedIndex();
    switch (index){
    case 0: //
    break;
    case 1: //
    break;
    case 2: //
    break;
    case 3: //
    break;
    default: // about
    break;
    }
    }
    return true;
    }
    };
    menuList.setCallback(this);
    menuList.setRowHeight(60);
    menuList.setBackground(BackgroundFactory.createSolidBackground(Color.BLACK));
    
    // first item
    BitmapField mIcon = new BitmapField(Bitmap.getBitmapResource("image1.png"));
    LabelField lblM = new LabelField ("First list item", DrawStyle.LEFT);
    lblM.setFont(Font.getDefault().derive(Font.BOLD));
    MenuRowManager menuM = new MenuRowManager();
    menuM.add(mIcon);
    menuM.add(lblM);
    menu.addElement(menuM);
    
    // 2nd item
    BitmapField tIcon = new BitmapField(Bitmap.getBitmapResource("image2.png"));
    LabelField lblT = new LabelField("Theater Near Me", DrawStyle.LEFT);
    lblT.setFont(Font.getDefault().derive(Font.BOLD));
    MenuRowManager menuT = new MenuRowManager();
    menuT.add(tIcon);
    menuT.add(lblT);
    menu.addElement(menuT);
    
    add(menuList);
    }
    
    }
    

    and the definition of menuRowManager is like that

    public class MenuRowManager extends Manager
    {
        public MenuRowManager()
        {
            super(0);
        }
    
        // Causes the fields within this row manager to be layed out then
        // painted.
        public void drawRow(Graphics g, int x, int y, int width, int height)
        {
            // Arrange the cell fields within this row manager.
            layout(width, height);
    
            // Place this row manager within its enclosing list.
            setPosition(x, y);
    
            // Apply a translating/clipping transformation to the graphics
            // context so that this row paints in the right area.
            g.pushRegion(getExtent());
    
            // Paint this manager's controlled fields.
            subpaint(g);
    
            g.setColor(0x00CACACA);
            g.drawLine(0, 0, getPreferredWidth(), 0);
            //g.drawLine(10, 0, 10, getPreferredHeight());
    
            // Restore the graphics context.
            g.popContext();
        }
    
        // Arranges this manager's controlled fields from left to right within
        // the enclosing table's columns.
        protected void sublayout(int width, int height)
        {
            // set the size and position of each field.
            int fontHeight = Font.getDefault().getHeight();
            int preferredWidth = getPreferredWidth();
    
            // start with the Bitmap Field of menu icon
            Field field = getField(0);
            layoutChild(field, 48, 48);
            setPositionChild(field, 0, 6);
    
            // set the menu title label field
            field = getField(1);
            layoutChild(field, preferredWidth - 16, fontHeight+1);
            setPositionChild(field, 55, 30-fontHeight/2);
    
            setExtent(preferredWidth, getPreferredHeight());
        }
    
        // The preferred width of a row is defined by the list renderer.
        public int getPreferredWidth()
        {
            return Graphics.getScreenWidth();
        }
    
        // The preferred height of a row is the "row height" as defined in the
        // enclosing list.
        public int getPreferredHeight()
        {
            return 60;
        }
    }
    

    the problem is, when the first screen showed (pushed), I cannot "navigate back (close) the screen with ESC, won't my code?" Am I missing something here?

    Thanks in advance

    You want to substitute keyChar() into your custom domain.

    Don't forget that you must re - delegate all keystrokes that you do not consume.

  • FRM-10221: cannot read the file /u02/applfint/apps/apps_st/appl/au/12.0.0/resource FRM-41810-FRM-41067

    Hello Experts,

    I am in the upgrade process 12.1.3 EBS and when you attempt to launch forms to "generate all Business Views", I met three errors of form:

    FRM-10221: cannot read the file /u02/applfint/apps/apps_st/appl/au/12.0.0/resource

    FRM-41810: error creating menus

    FRM-41067: cannot very well the menu: invalid ID

    Back in my shell, I also noticed that some of my environment variable does not work correctly or is missing:

    . /U02/applfinp/apps/apps_st/appl/APPSOFPROD_ofinprod01.env

    or

    . /U02/applfinp/apps/apps_st/appl/OFPROD_ofinprod01.env

    Gives:

    -bash: /usrxit/devenv.env: no such file or directory

    I used adadmin utility and choose the option to recreate grants and synonyms; execution of adautocfg.sh but the problem persists.

    Thank you

    Mathias

    This error was caused by the erroneous entries or the deletion of a line (/ZX_TOP) to $SID_ofinprod01.xml.

    Thanks Hussein

    Mathias

  • FRM-10221: cannot read the file "MN_MENU.mmb".

    I got this error when executing my forms, that is migrated from 6i to 11 g.

    What I've done so far:

    1 > .mmx .fmx files are in the same folder, and this path is added to FORMS_PATH, no space in the path.

    2 > menu name "MN_MENU" is added to the Menu Module of the form property

    3 > run as user 'oracle', have the permission to read the files.

    4 > menus and forms all compiled without errors

    So, why else might be?

    FRM-10221: cannot read the file "MN_MENU.mmb".

    It is usually an error in design compared to a runtime error. In addition to the FMX and MMX files are in the FORMS_PATH, you must, of course, the binary from the source (.) FMB and. MMB files) are also at your FORMS_PATH.

    I got this error when executing my forms...

    Could you please clarify what you mean by that? Are you this error during the execution of the application (on the application server) or when you open and run your form from forms manufacturer?

    In addition, can clarify what FORMS_PATH you have updated? There are two FORMS_PATHs that should be updated on a developer workstation. The first is in the Windows registry. The second is in the default.env file that is used by the form designer when you run your form from the form designer. On the application server, simply change the FORMS_PATH in the default.env.

    Craig...

  • FRM - 18108 cannot load the following object

    When I open forms in a 10G suit, getting below error
    FRM - 18108 cannot load the following object
    source module: template.fmb
    source object: STANDARD

    Please help me

    Looks like you're working with the Enterprise Business Suite (EBS). The error you are getting is because the forms cannot find a referenced object. This is because the directory where your TEMPLATE.fmb (and the objects made reference to the template.fmb form) is not in your FORMS_PATH. If you use Windows, modify the registry and Add the directory where you have your objects of reference to the FORMS_PATH entry. Make sure you add it at the end of the existing value; not to replace the existing value.

    Hope this helps,
    Craig B-)

    If someone useful or appropriate, please mark accordingly.

  • How to navigate to a new form on click of a button in the form builder

    Hi all
    I created a form using form builder and need to navigate to a new form by clicking a button (name: application form) to guess to fill in the details by the applicant. I need the main form must remain open when the new form is opened. This code will be used for this.

    Any idea will be highly appreciated.


    With respect,
    Neelam Krishna

    OPEN_FORM ('formname') matches the when_button_pressed trigger, but in the course of time his message giving "cannot read the form" when that special touch.

    Give something like that.

    Open_form('C:\Form_name.fmx');
    

    If his please correct/good mark thank you.

    Sarah

  • I need to automate the aggregation but cannot figure out how.

    Hello Experts,

    I need to automate the aggregation but cannot figure out how.

    Currently after a cube is responsible for environmental impact assessment, I'm in PARTY, go on my server, go to my cube, go to my database and right click. Choose aggregation design... then "recommended use views materialized aggregation.
    It is all manual steps after the cube is loaded. I want to automate this so it is done either as part of the cube or the next step after the execution of the batch to load the cube, depending on the option is possible.

    Any suggestions would be a great help. Thanks in advance.

    Kind regards
    Jingle

    Hello

    You can use MAXL to automate the aggregation of the ASO cubes.
    Create a maxl [.msh] file with the following command

    Logon 'user' identified by 'password' on the 'server ';
    modify the application of the load system "App1";
    change the database application load "App1" "Db1".
    runs the process of aggregation on the data base "App1". "" DB1 ".
    EXIT;

    Schedule it to run after the refresh of the cube. It will bring together automatically.

    Let me know if it helps.

    See you soon
    RS

  • FRM-10044-cannot create file ERROR:

    Hello

    When I save .fmb trust this message comes frm-10044 cannot create the file.

    -I use forms 6i & database 10g.


    -I changed also attribute of the file to read only, but all in vain.



    Thanks in advance to all.

    & Best regards.

    You should have it does exactly the opposite. The file must NOT be readonly.

  • FRM-41052 cannot find window: invalid id

    Hello

    during execution of form I get the error message frm-41052 cannot find the window: invalid id. Please help me solve this problem.
    I'm using Oracle 10 g and 10g database.


    Thank you
    Sandy

    Ok.

    IF: PARAMETER. P_PACKING_ID is NOT NULL, THEN
    EXECUTE_QUERY;
    END IF;

    Which is the value of: PARAMETER. P_PACKING_ID?
    you do a query to run. I guess that is on the first data_block of navigation.
    In palette property of this block, you set the where condition in some way?
    Because I do not understand this: WHEN the CUSTOMER =: 1. where is setup it?
    Fabrizio

  • FRM-10221 cannot read the file PL000000 - but there is no menu named PL000000! ?

    Hi all!

    I'm having a problem that will make me nervous!

    Here we have a 100% application generated by the designer. The problem is that he began in questionable ways... There are 2 activities to contains all the forms necessary for the application instead of 2 containers in the same activities. The "JD" where we put all forms of utility and activities "PL" where we put all the forms used for the configuration of the application.

    Recently, I have developed a new form in the 'PL' container, but the menu call this form is in the activities 'JD' false copy of the original of the form so that we can return to the menu "JD". When I produced and run applications and I choose my new form in the menu I get the error "FRM-10221 cannot read the file PL000000" 2 times, then forms called and runs correctly. I don't really understand whats going cause it is no menu called 'PL000000' in the activities of 2!

    Everything I've read about this error now say that the menu is not in the path of the form or of alternative, but in my case, I had an error on a menu that does not exist! I know that something is triggering this but I can't find it causes, there is no menu called "PL000000" anywhere in this application! ??

    Is there someone who might have an idea about what is happening here! ??? HELP PLEASE!

    Thank you!

    Open the new form in the form designer and check the menu property, if the value of PL000000.
    try to run your new form of autonomously since the form generator and see if it runs successfully.
    If not then open the form in form builder and check the code in the menu item that calls your new form. Maybe the problem is not in the form called himself.

Maybe you are looking for

  • How can I get the correct AppID is displayed?

    On my iPad, I'm registered on an Apple ID. Then, I signed up with my other. Then, I go to an app, that I bought, on the iPad. When I try to restore the version full that I paid for, the former Apple ID appears, even if I signed on that one and with a

  • I lost iWork?

    So yesterday, I had to reset my MacBook Early 2015 Pro 13 "retina edition, which had started to freeze every so often, it wasn't even when there were 40 to 50 GB of storage left on it. After all night of this download OS X El Capitan, I check on it t

  • I need to convert some "very important electronic documents to Word 2010" How can I do?

    I have some very important electronic documents that I need to convert PDF to WORD 2010.  How can I do so without charge?

  • Windows package install Patch?

    My sister gave me her old computer and it cannot install Microsoft Silverlight updates. It keeps the package install Windows hotfix is not found. I don't know what it is. My computer is a Dell inspiron 531.html any help would be greatly appreciated.

  • Windows xp rp_skt32.sys Securty Services Driver needed

    Windows XP is looking for "c:\program InstallShield installation information\ {c44365d5-634a-4d55-9b9c-346ff6ed76be}. -Then a popup window says: "the rp_skt32.sys file on Securty Services driver is necessary." Where can I download driver? Thank you.