Migrating Forms 61 to 10g - Forms Builder Crashing

We are migrating from Forms 6i to 10g. The application works on a HP-UX box, and since we do not have the necessary setup done in the Unix box yet, we are trying to compile the forms in Windows before-hand to see if we can pre-empt some errors.
I have written a batch command to compile the 6i forms in windows (Windows XP) by invoking the 10g Forms Builder.
While it works like a charm for most of the forms (we have around 500 forms), there are a few forms for which the compiler/builder simply crashes. The .err file created for this form has absolutely nothing, it is a 0KB file.
When I try opening such forms in Forms Dev 10g, and then compile them, the Dev crashes. It gives no indication of the error.
By crashing I mean that windows throws the error message saying "Application has to be closed. Send error report: yes/no"
Can someone please tell me if you faced such a problem, and how you went about solving it?

Try a Compile All ( Ctrl - K ), then Ctrl - T.
Not sure about XP, but in Vista, the 10g Builder and batch compiler will crash if a PLL Library is not available when the form is compiled.
Make sure the PLL Library is available, and all its objects compile in the 10g setup.
If that does not help, then try a semicolon-to-semicolon replace all, then save the fmb. Then restart the Forms Builder, and open the fmb again, and try compiling.
Here is an old link describing the issue:
    Re: FMB size shrinks dramatically

Similar Messages

  • Do I need to convert 6i form to 10g form

    Hi all,
    I am currently working on a custom form (version 6i). we have a similar standard form in our project where they applied a patch to that standard form in order to convert it to 10g form and so some additional lines has been added to that standard form code in order to sort the data. So I have to make similar changes to the custom forms but i was wondering since the custom form is a 6i form do i need to convert it to 10g form before making any changes to that form and compile it in form builder.
    Can anybody please help me with this.
    Thanks.

    It sounds to me like you are doing this in the context of Oracle Applications? If that is so you should post your question in this forum: OA Framework

  • Query on forms migration 4i to 10g migration approach.

    We are migrating Oracle forms 4.5 to oracle 10g. We have following apporaches.
         1. Oracle 4.5-->6i-->10g, In this what are benefits of migrating into intermediate version.
         2. if we migrating into intermediate version 6i, do we need to fix all the errors before moving to 6i.
         3. if no, do we lose any functionlity while migrating to 10g.
         4. Does Oracle support direct migration to 10g?
         5. if we open oracle 4.5 form in 10g form builder, do we lose any functionality? do we need to lot manual replacement?
    Kindly help me in this regards.

    Balamurugan wrote:
    We are migrating Oracle forms 4.5 to oracle 10g. We have following apporaches.
         1. Oracle 4.5-->6i-->10g, In this what are benefits of migrating into intermediate version.Oracle's migration path is 4.5, 6i, 10g it is more logical to migrate using this path and it is recommended by Oracle, the obsolete built-ins would be pointed out at compilation and fixes would be more automated and simple since Forms 6i was designed to accept migration from 4.5 and the internal design of the forms will be much more adaptable to later releases.
         2. if we migrating into intermediate version 6i, do we need to fix all the errors before moving to 6i.It would be better and easier to fix things in Forms 6i rather than 10g, you can leave them and than you'll have to fix them under 10g.
         3. if no, do we lose any functionlity while migrating to 10g.Functionality built on obsolete built-ins and commands will be lost, you are more likely to face bugs.
         4. Does Oracle support direct migration to 10g?Oracle's official migration path is 4.5 to 6i to 10g
         5. if we open oracle 4.5 form in 10g form builder, do we lose any functionality? do we need to lot manual replacement?It all depends on your application size and features. I suggest you migrate to Forms 6i first and than to 10g although you can do it directly to 10g since Forms 6i is no longer supported.
    I personally rather follow the recommended path and use Oracle support in 10g migration.
    For more Forms migration information check out [Forms Upgrade Center|http://www.oracle.com/technology/products/forms/htdocs/upgrade/index.html] .
    Tony

  • Performace problem with 10g forms

    We have just migrated from 6i forms to 10g forms. The application takes a lot of time to load each form. In the status bar I can see the it is trying to open each gif file of the forms menu.
    one question, if I have created a jar of all the gifs, where will the applet pick it up from. Right now I have a jar that is put in /forms/java as well as a virtual directory pointitn to a path on my hp-ux server which has all the gifs and it seems like the applet picks it up from the virtual directory path.
    Navigating through a hierarchical tree is also much slower.
    Have i missed out something?

    Hello,
    REP-56107: Invalid environment id {0} for Job Type {1} in the command lineCause:
    The envid specified for the job is not defined in the server configuration file.
    Action:
    Specify an envid that is already defined in the server configuration file or define a new envid in the server configuration file and restart the Server.
    It seems that the parameter envid is used in the reports request and this environment is not defined in the reports server configuration file :
    For more details :
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_cla.htm#sthref2786
    Regards

  • How to change 10g forms url ?

    Hello,
    I developed forms in 10g forms developer and I can call my forms from web browser with default url like http://server:port/forms/frmservlet?config=myform.
    Is there anyway the change that url like http://myform.com or something?
    Thank you for your replies :)

    Well, the first thing to understand is that when you call the Forms Servlet (frmservlet) you are calling a java application and not static content like an html page. So, changing the URL isn't exactly as easy as it would be for a simple web page. On the other hand, hiding the the real URL or redirecting to the proper url can be done fairly easily.
    All of these assume you are using Application Server.
    OPTION 1 - Hide The URL +(more information can be found in MyOracleSupport note 300326.1)+
    <blockquote>There are several ways in which you can hide the real url, but probably the easiest will be to use an IFRAME. The only potential problem with this is that some security software or browser security settings may prevent this from working. So, here's what you do:
    1. Using an HTML or text editor, create a static html file with the following code. Replace my Forms url with your own.
    <HTML>
    <HEAD>
    <TITLE>My Application</TITLE>
    </HEAD>
    <FRAMESET  ROWS="100%,*" FRAMEBORDER=NO FRAMESPACING=0 BORDER=0>
    <FRAME SRC="http://someServer:port/forms/frmervlet?config=myconfg" NAME="redir_frame">
    </FRAMESET>
    <NOFRAMES>
    Sorry, your browser does not support frames.  Click <A HREF="http://someServer:port/forms/frmervlet?config=myconfg" TARGET=_top>here</A>
    </NOFRAMES>
    <BODY>
        <!-- ADD ANY EXTRA HTML CODE AS NEEDED -->
    </BODY>
    </HTML>2. In the Oracle home from where OHS is running, find the htdocs directory within the OHS (apache) directories.
    3. Rename "index.html", "index.html_original"
    4. Copy your html file to this directory and name it "index.html"
    It is possible that the html file being used is not "index.html". To determine the correct page, you may need to review your httpd.conf file as this is where the default page is set. Look for DirectoryIndex</blockquote>
    OPTION 2 - Redirect To The Proper URL
    <blockquote>1. Find and open httpd.conf
    2. Within the file, locate this: <Directory />
    3. Just below this line add the following. Use your own Forms url
    RedirectMatch ^/$ /forms/frmservlet?config=somewhere</blockquote>

  • Oracle 10g Forms and Reports documentation

    Hi,
    I need link to oracle docs for forms and reports 10g.
    Looked around at the following link but could not find docs apart from "Release Notes"
    http://www.oracle.com/technetwork/developer-tools/forms/documentation/10g-forms-091309.html
    Since, i have just started working on Forms and reports and have no prior exp. in them, so i wanted link to the whole docs for the forms and reports and not just release notes.
    can anyone please provide link to the docs.
    thanks

    Hello,
    Welcome to OTN
    *Before posting on this forum please read*
    Check this link.
    1. http://www.oracle.com/technetwork/developer-tools/forms/documentation/index.html
    2. http://www.oracle.com/technetwork/middleware/reports/documentation/index.html
    If someone response is helpful or correct, please mark it accordingly.

  • Display Images using READ_IMAGE_FILE in 10g forms

    Hello all, i have a simple question that I'm trying to resolve really quick.
    I've created a field on a form in 10g forms that is of IMAGE type. I've given it a name and has given it a FILE_TYPE of GIF.
    I've put some code in a POST-QUERY trigger of a block that calls the READ_IMAGE_FILE command, where I enter the filename, file_type, and block.item name. When I leave the path off the image name, forms runtime acts like it cannot find it. I get an FRM message displayed at runtime that says it "Cannot read image file". However, if I put the full path (like something pointing to a hard-coded directory on my C drive where the image file resides), the image displays fine at runtime.
    I added the images to my JAR file where I have other images stored so they get opened at runtime under the ORACLE_HOME/forms/java directory. I was thinking that when I gave the filename, runtime would know to pull it out of there. But obviously, that's not what is happening.
    Has anyone got ideas on what I could do to get the READ_IMAGE_FILE to display the image without hard-coding a path in?
    Any help is appreciated!
    Regards,
    Chris

    Here are some things to check:
    1) Alll the images in the JAR file should have the same extension
    2) In formsweb.cfg, include the JAR file in the ARCHIVE parameter and set imageBase=codebase
    3) In registry.dat, leave iconpath blank and set iconextension=gif
    4) In your READ_IMAGE_FILE call, use URL as the file type and don't use the extension on the file name. So if the image in your JAR is my_picture.gif, it would be something like READ_IMAGE_FILE('my_picture','URL','myblock.my_image_item');
    If it still doesn't work, enable the Java console and when it comes up, enter the number 5 in the console to enable the highest level of logging. Then have a look at the console to see if the JAR is getting downloaded and where it's attempting to read the image from.

  • How to convert 6i forms to 10g

    hello,
    please tell me how to convert 6i forms into 10g forms
    i cant find ne way to do that.

    If your forms are not all integrated with each other, in other words some are for Payrole and others are for Inventory, you could maintain an AS 1.0.2 environment for one function and an AS 10.1.2 environment for another. You can access the same database assuming you are running the latest Forms 6i version (unless you are not interested or concerned about using an Oracle Certified configuration). The latest (and last) Forms 6i release supported for non-Oracle Applications customers is 6.0.8.26 (Patch 17) and can be downloaded from Metalink.
    Of course, the above configuration would mean that the URL to each application would differ because they would likely be on different machines and/or use different port numbers. For example:
    http://system1.com:7777/servlet/f60servlet?form=payrole.fmx
    http://system2.com:7780/forms/frmservlet?form=inventory.fmx
    Bottom line is that all forms modules running in a particular AS environment must be of the same version. So, forms running in AS 10.1.2 must be compiled against Forms 10.1.2. Forms running in AS 1.0.2 must all be compiled against Forms 6.0.8

  • Form Builder crashes whenever I try to run form locally

    Hello,
    I am using Oracle Developer Suite 10g (Forms 9.0.4.0.19) on Windows XP SP3, IE8.
    Whenever I try to execute (run) form from Forms Builder locally Forms Builder just crashes (get error: Oracle Forms Designer has encountered a problem and needs to close ).
    Any help please
    Best regards.

    First, the Builder crashing has nothing to do with what browser you are using. The Builder crashing is a Builder issue. It is possible that the Builder is crashing due to a corrupted installation or permissions issue at the OS level. It could also be a bug. So, as I mentioned already, it may be time to upgrade to a more 21st century version of the product or at least consider applying a current patch to what you have. Patches are only available to customers with access to MyOracleSupport.
    https://support.oracle.com

  • Oracle 10g Forms Builder in Windows 7

    Oracle 10g Forms Builder crashes whenever we try to open existing 10g fmb files.
    is Windows 7 certified to run Oracle Dev Suite 10g and/or are there patches required to run this in the said OS?

    Hi,
    Thanks a lot for using our community.
    Please note that your posting has been moved to the "Oracle Developer Suite (Forms、Reports、Designer)" Community to better deal with your topic.
    Thank you and best regards,
    Saravanan - Database Administration Community Moderator

  • Why form builder crashed?

    hi,
    in oracle database 10g i created these types:
    create type obj1 as object
    att1 number,
    att2 varchar2(10)
    create type obj2 as table of obj1;
    create type obj3 as object
    a number,
    b obj2
    in form builder i hadn't any problem with this code:
    declare
    lv_obj obj3;
    begin
    end;
    but i want to create one object that defined under obj3:
    create type obj1 as object
    att1 number,
    att2 varchar2(10)
    create type obj2 as table of obj1;
    create type obj3 as object
    a number,
    b obj2
    ) not final;
    create type obj4 under obj3
    d number
    in this case when i declared a local variable as type of obj3 in form builder, when i compiled it, form builder was crashed and close
    what should i do for this problem
    thanks

    You did not state what version of forms?
    Typically, form's plsql engine is not necessarily the same as the one in the database. So you can have features in the database's plsql
    engine that you cannot use in forms.
    for example when I start up forms6i it says:
    PL/SQL Version 8.0.6.0.0 (Production)
    whereas the database
    select * from v$version;
    PL/SQL Release 10.1.0.5.0 - Production
    because of that I steered clear of using a lot of plsql features like any of the object stuff, since they could not be accessed from
    forms in my experience. But if you're using a setup that goes through some gateway like mod_plsql then that could be version-specific
    also I think.
    So the answer depends on what version of forms you are using.
    I don't know how to figure out what aspect of using those types could cause the problem, if they do.

  • Forms Builder Crashes when converting FMT to FMB

    Has anyone ever encountered this problem? I just installed 10g developer suite and am opening Forms Builder and I am using the Convert function, converting a from FMT to a FMB, and when I select the file and hit the convert button, Forms Builder crashes almost instantly saying Oracle Forms Designed has encountered a problem and needs to close.
    Any ideas? Thanks!

    Forms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Toolkit Version 10.1.2.0.2 (Production)
    PL/SQL Version 10.1.0.4.2 (Production)
    Oracle Procedure Builder V10.1.2.0.2 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 10.1.2.0.2 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.2 (Production)
    Oracle Tools GUI Utilities Version 10.1.2.0.2 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE     10.1.0.4.0     Production

  • Form Builder crashes while saving .fmb file when connected to db

    Hi,
    I am getting error The instruction at "0x679c352c" referenced memory at "0x0000001c". The memory could not be "read".
    Forms version is 6.0.8.11.3 and database version is 10.2.0.3.0
    I am doing the following steps:
    1) Open .fmb file in forms builder
    2) Connecting to database
    3) Making some changes in form
    4) Compiling (Ctrl+Shift+K) and generating form (Ctrl+t)
    5) Saving form <--- Here I am getting the error and form crashes
    If I do not connect to database then builder is allowing me to save the file
    1) Open .fmb file in forms builder
    2) Making some changes in form
    3) Saving form (Successful)
    I did some exercise just as a guess that may some part of the form is causing this error. I full expanded all components of the form i.e. blocks, canvases, triggers etc.
    This exercise produced that 3 program units were giving same error while full expending those. I deleted those 3 program units and re-created them. Now it is not showing me this memory error while full expanding all program units. I can now fully expand my full form.
    But I am still getting this error while saving the changes when I am connected to database.
    Please help.
    Regards,
    Edited by: rawat75 on Sep 2, 2011 7:13 PM

    Hi Experts,
    We are getting the same issue. Our form builder crashes once we open our custom form
    in form builder.
    Server shows:-
    Forms 6.0 (Forms Runtime) Version 6.0.8.28.0 (Production)
    Form Builder shows:-
    Forms [32 Bit] Version 6.0.8.11.3 (Production)
    How to upgrade the form builder version?

  • Forms builder crashes when opening any pll

    Hi,
    I have gotten this problem that my forms builder crashes immediately when I try to open any pll file. (There is nothing wrong with the pll file - my colleagues can open these files with no problems on their computers). It crashes before the pll file is even remotely loaded - almost as if it encounters an error during the parsing of the pll file.
    I have no problem opening and editing fmb files in my forms builder.
    This problem has not always existed but it came all of a sudden one day and since its been impossible for me to open a pll file and its getting annoying :P
    I run:
    - Windows XP SP3
    - Forms builder version info :
    Forms [32 Bit] Version 6.0.8.26.0 (Production)
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.7.0 - Production
    Oracle Toolkit Version 6.0.8.25.0 (Production)
    PL/SQL Version 8.0.6.3.0 (Production)
    Oracle Procedure Builder V6.0.8.21.0 Build #1459 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 6.0.7.1.0 - Production
    Oracle Virtual Graphics System Version 6.0.5.38.0 (Production)
    Oracle Tools GUI Utilities Version 6.0.8.25.0 (Production)
    Oracle Multimedia Version 6.0.8.25.0 (Production)
    Oracle Tools Integration Version 6.0.8.18.0 (Production)
    Oracle Tools Common Area Version 6.0.8.18.0
    Oracle CORE Version 4.0.6.0.0 - Production
    I tried deleting everything under D:\ORA6i where its installed and then reinstalling it - but the problem is still there.
    Does anyone have an idea about what could be wrong - because I am clueless atm. - could it be some registry settings that somehow got changed maybe ?
    Edited by: [email protected] on Sep 3, 2008 5:06 AM

    I have encountered various issues like this with Forms 6i over time and have tried numerous things to fix them - including complete uninstall of all Oracle products and reinstalls and the one thing I found to work best was to run a Registry Cleanup tool. I had the best success with Microsoft's RegClean.exe tool (originally released as a PowerTool), but it is getting harder to find now that Microsoft has desupported it and pulled it from their web site. There are a few places where you can still get it; www.cnet.com, www.zdnet.com, and www.majorgeeks.com just to name a few. Other Registry Tools will probably work fine as well, but this is the one I have history with. I did not have 100% success by cleaning the registry, but 50 to 75% of the time it fixed the issue without having to uninstall and reinstall Oracle Forms.
    Disclaimer: Please exercise caution when doing anything with the Windows Registry. The smallest change could have serious effects. Always backup the registry or create a restore point with System Restore before you make any changes to the Registry!
    Hope this helps.
    Craig...
    If my response or someone else's response answers your question - please mark your question answered. Thanks.

  • Menu in Oracle 10g form Builder

    I Build so many forms in ORACLE 10g form builder.
    Now I want to create a Menu form then i want to run it in Internet Explorer at my own PC at which i have build these forms.
    I also want to run seprate forms in internet explorer; as I can run form in Form builder but can't run then in Internet Explorer manually.
    Please help me to solve this problem

    Try the Forms forum @ Forms

Maybe you are looking for

  • Plugin created using C++ 6 and Acrobat 6 SDK Not Working in Windows

    I have an Acrobat plugin compiled in Visual C++ 6 using Acrobat 6 SDK. The plugin works flawlessly in Acrobat versions 6 to 9 in Windows XP. While the plugin is able to add a menu iterm and tool bar icon in Windows 7, it causes Acrobat to hang everyt

  • BootCamp or Parallels 6? Windows 7 or Windows XP?

    Hello all! I have this question that has been haunting me for a pretty long time, but now that I got a copy of windows XP and windows 7, I've decided to ask and get rid of this dilemma. So, first let me give you the main directions: 1- I have a 15" 2

  • FDK: F_ApiUpdateBook() always results in FA_errno=-1

    Hi, I have seen this posted a couple times with no real solution and I would like to get to the bottom of it. I am trying to automatically update a book before saving as PDF via the FDK. It looks like the function F_ApiUpdateBook(..) should do this,

  • Software management

    new torch owner, previously owned the curve/8900. spend a few too many hours a day scouring blogs for information on my new device. as such, am aware of new software updates/upgrades as they're leaked and, later, released. my service provider, at&t i

  • Table for EBP users

    Hello all, I would like to distinguish EBP users from others sent from HR system. Is there any table where I can match users created in EBP and with their positions from HR. HRP1001 is not sufficient becuse there is no difference between EBP users an