Discussions
Categories
- 196.9K All Categories
- 2.2K Data
- 239 Big Data Appliance
- 1.9K Data Science
- 450.4K Databases
- 221.7K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 550 MySQL Community Space
- 478 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 546 SQLcl
- 4K SQL Developer Data Modeler
- 187K SQL & PL/SQL
- 21.3K SQL Developer
- 295.9K Development
- 17 Developer Projects
- 138 Programming Languages
- 292.6K Development Tools
- 107 DevOps
- 3.1K QA/Testing
- 646K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 155 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 18 Java Essentials
- 160 Java 8 Questions
- 86K Java Programming
- 80 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 204 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 442 LiveLabs
- 38 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 171 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 232 Portuguese
FRM-41351 Cannot navigate out of current form
Hi,
I user Designer 6i and Forms 6i (patched to patch 9) and Headstart 6.5 to generete forms and menus in client server mode.
I have generated two forms. Form A is calling form B using a button (created via calling module functionality in designer) on form A. When i use the button on form A to go to form B, exit form B again and then when i exit form A i get the message FRM-41351 Cannot navigate out of current form.
I have checked metalink and it seems to be a known bug (nr. 871936) raised in apr-99 (??????). I can't find a solution at all. It is not listed in the patch-lists. It seems that this is still an open bug? Can someone help me with this??? Maybe someone had the same problem and managed to create a workaround!!!
Gr.
Louk Dirken
I user Designer 6i and Forms 6i (patched to patch 9) and Headstart 6.5 to generete forms and menus in client server mode.
I have generated two forms. Form A is calling form B using a button (created via calling module functionality in designer) on form A. When i use the button on form A to go to form B, exit form B again and then when i exit form A i get the message FRM-41351 Cannot navigate out of current form.
I have checked metalink and it seems to be a known bug (nr. 871936) raised in apr-99 (??????). I can't find a solution at all. It is not listed in the patch-lists. It seems that this is still an open bug? Can someone help me with this??? Maybe someone had the same problem and managed to create a workaround!!!
Gr.
Louk Dirken
Comments
-
I also logged a bug for this some weeks ago (2211453) and here is the workaround :
1) Set the preference NAVCCF=NO for the calling form
or
2) Copy the code generated by Designer and comment out some lines
below the CALL_FORM statement :
form_id.id := to_number(name_in(':global.CGNV_child_form'));
IF(CGNV$.nav_close_forms = TRUE) THEN
...
set_group_char_cell(gc_parent, rowcount, 'WINDOW');
END IF; -
Okay! This is a solution, but then my form is not 100% generated from Designer.
Is there a way to influence to code generated by Designer during the generation process. Change templates of whatever? Maybe this piece of code is somewhere visible in a way i can change.
Gr.
Louk -
Why shouldn't your form be 100% generateable ?
Generate your form without the corrections. Open the form and locate the code in the when-button-pressed trigger.
Now go back to Designer and locate the button that calls the other form. Create the when-button-pressed trigger if needed and override the part "Perform Navigation for selected action item" with the code you located in Designer.
Now comment out the lines I mentioned above and you have a 100% generateable form without the FRM-41351. -
I also use a method given by Vincent.
-
Okay guys, you are right. This will give me 100% generated code.
I will do it as you have described!!
Gr.
Louk
This discussion has been closed.