Impossible to recompile the application Summit in the form of 11g

Hi gurus,

I try to install the application of top in the 11g version. Try to recompile all the objects (.pll, .mmb, .fmb) but all not able to compile .fmb.

Here are the steps I did:

1 extract the app from top to c:\summit

2. create the schema of Summit by running the script

3. set the FORMS_PATH registry and windows variables env FORMS_PATH to c:\summit

4 compile the .pll, the .fmb and the .mmb

Appreciate any help.

Kind regards

Ferrere

I just tested this in forms 11.1.2.2 (x 64) and it works properly.  I am able to open all the files.  That said, if you do not correctly set FORMS_PATH, you will get an FRM-18108 error that says it cannot locate a required library.  It is expected, because the shape has a dependency on an OLB and therefore it must be included in FORMS_PATH.

So, that means one of a few things:

1. you do not actually use the version of forms, you believe that you are using

2. you have multiple installed versions of forms and the system path points to a very old version of the constructor

3. the error message you get is not one that suggests the form cannot be opened, but rather the one I mentioned above

4. the file you download is somehow corrupted.

Tags: Oracle Development

Similar Questions

  • Do I need to recompile the forms if a group of patches a request from the Organization?

    I currently have an application Oracle - Forms and reports only (10.1.2) Server installation and a few forms running on the server applications. I need to at least apply patch 2 (10.1.2.2) group to the Application Server but do not know if we should also apply the Group of hotfixes to an Oracle Developer Suite installation and recompile the forms in the same version.
    Can someone please advise?

    If you would like more information about me or I didn't explain clearly I can provide more information or try to explain better.

    In a major release version you don't need to compile. We guarantee that. Between major releases (9-10 > 10-> 11) you must recompile.

  • Impossible to compile the form

    Hello
    I need compile the form JAIREGIM.fmb

    I followed the procedure to compile the form below, but after compiling it is showing the same old date of compilation.


    CD /apps/visappl/ja/11.5.0/forms/US

    Export FORMS60_PATH = $FORMS60_PATH: $AU_TOP/forms/US

    f60gen Module = JAIREGIM.fmb Userid = apps/systime_cms
    Module_Type = batch FORM = yes Output_File = JAIREGIM.fmx


    Thanks and greetings
    Amith

    but the form JAIREGIM.fmx display of the current time.

    Does this mean that fmx file has been generated successfully? If so, copy the file "/ apps/visappl/ja/11.5.0/forms/US" and try to access the application.

  • Regedit in the form of 11g installation

    Hello

    I recently installed in my Pc Home, GR 11, 2 and 11 g Database forms.
    I have no experience with the forms on the Web, only Client-Server Developer 6i.
    I have a small retail (about 50 FMAS) Application in Developer 6i, and I would like to convert the FMAS to the new version.

    I know that in Developer 6i, in order to start the application and successfully open a fmb in Forms Builder.
    You must configure the regedit.
    There are some variables (FORMS60_PATH...) where we put the executable path for example in 6i

    FORMS60_PATH: C:\Retail\Bin (if we have the .fmx, the .mmx, the .pll)
    REPORTS60_PATH: C:\Retail\Bin (if we have the RDF)
    UI_ICON: C:\Retail\BIN (if we have the .ico files)


    Now, in my regedit, in HKEY_LOCAL_MACHINE--> SOFTWARE--> Oracle--> KEY_OH609856842.
    in the right pane, I see a FORMS_PATH that contains

    C:\Oracle\Middleware\FRMHome\forms; C:\Oracle\Middleware\FrmInst\FormsComponent\forms

    a REPORTS_PATH that contains

    C:\Oracle\Middleware\FRMHome\reports\templates; C:\Oracle\Middleware\FRMHome\reports\samples\demo; C:\Oracle\Middleware\FRMHome\reports\printers

    and a UI_ICON, which contains

    C:\Oracle\Middleware\FRMHome\reports\plugins\resource

    I would like to open a fmb 11 GR 2 Form Builder 6i. What I would do in regedit?

    It's just these variables FORMS_PATH, REPORTS_PATH, UI_ICON
    at the beginning to C:\Retail\Bin;


    Thank you and Merry Christmas.

    The basic features of the 11 manufacturer are the same as in 6. This is why the registry entries are also fundamentally the same. The only major difference is that is no longer a reference version in the entries. Thus, for example the path to your modules is listed in FORMS_PATH. The most important changes associated with execution and the inner workings of the form. I recommend that you refer to upgrade guides to better understand what you need to do to move from 6 to 11.

    http://docs.Oracle.com/CD/E38115_01/index.htm

  • exec_sql. PLL in the form of 11g

    Hi all

    I've struggled for some time with a form of migration problem.

    Reminder: My business is migrating to Oracle 10 g 11 g form through all the screens, libraries and all objects in general. A few days ago, I found a screen which opens a connection to the database and execute instructions (grant privileges, change password), this form uses exec_sql.pll which is apparently a package included in the implementation of forms since version 6.

    The problem begins when I took the current exec_sql.pll of my deposit and try to compile in Builder 11g.

    the main problem is that there is a function that does not compile:

    PACKAGE currconn BODY IS

    -This is the definition of package for currConn

    -For Developer/2000 R 2.x, which makes implementation of the STPROC. HSTDEF

    -procedure.

    FUNCTION get_curr_conn RETURN pls_integer

    IS

    hstdef PLS_INTEGER;

    BEGIN

    stproc.hstdef (hstdef); Obsolete in Forms11g - form of Oracle 11 g Migration

    connection_id: = EXEC_SQL. DEFAULT_CONNECTION;

    Tensioner: = EXEC_SQL.IS_CONNECTED;

    RETURN hstdef;

    EXCEPTION

    WHILE OTHERS THEN

    RETURNS A NULL VALUE.

    END;

    END currconn;

    According to the documentation of oracle forms, this guy here [stproc.hstdef] is now obsolete. Therefore, because that's why I can't continue with the compilation. the logic to connect to the DB and execute some instructions is present across several screens, so ideally, I would like to correct the root cause of which is the library and not apply with a workaround in each single fmb

    Issue.

    1. is there any place where I can download a newer version of exec_sql.pll?

    2. If the answer to #1 is NEGATIVE, is there another way to get around the above function?

    OK, time for me to chime...

    If you need not STPROC so it is not a problem because it no longer exists.  What you need to do, is not to use an old pll.  Since functions supported this old pll are now based in the forms, the library of the add-on should no longer be needed and your form should compile.  If it is not the case, your form code must be updated correctly.

    If your concern is that you have a lot of modules should be updated, you can use the JDAPI or CAPI to perform updates all modules quickly.

    If you do not correct the code at some point, you will continue to have this problem every time you upgrade.  What will happen when you need go to v12?

  • Loading of the icons in the form of 11g

    Hi all

    I develop application using Oracle 11 g Forms.

    I'm loading the icons folder and configured in

    Registry.dat file located in

    %DOMAIN_HOME%\config\fmwconfig\servers\WLS_FORMS\applications\formsapp_11.1.2\config\forms\registry\oracle\forms\registry.dat

    default.icons.IconPath = http:// hostname: porttypes/Icons /.

    default.icons.iconextension = gif

    It works very well...

    My question is

    The case above works in intranet systems.

    If I connect via static server ip, then, I need configuration c:\windows\system32\drivers\etc\host file

    Server_IP_Address nom_hote_serveur

    for each system.

    How to solve this problem?

    Thanks in advance,

    Su.GI

    Then default.icons.iconpath=/Icons/ or default.icons.iconpath=Icons/ should do the trick

    You can also check with a browser to see if it works http://hostname: port/forms/Icons/myicon.gif to see if the url matches.

    Jean-Yves

    must be default.icons.iconpath = Icons (relative way)

  • Impossible to determine the application exit code

    Hi guys,.

    I used the code below at the exit of the application programmatically.

    Application:instance()->requestExit();

    but I get following errors:

    Impossible to determine the application exit code

    Please find the error attatched image.

    Please help me to fix it.

    Application::instance()->exit(0);
    

    Or any code you want to use instead of 0.

  • Hello, impossible to update my applications, error U44M1I210, impossible to extract the files to download, what should I do?

    Hello, impossible to update my applications, error U44M1I210, impossible to extract the files to download, what should I do?

    Hello

    Please see error U44M1I210 | Install updates

    Hope that helps!

    Kind regards

    Sheena

  • Impossible to enter the telephone number during the application free trial

    Hello

    I am applying for the UFT HP (formerly QTP) carry out a feasibility study check on a system at my workplace.

    However, when I reached the part of the form that asks me my phone number, I don't do anything enter successfully without precisely knowing that my number is not acceptable.

    I have tried everything - hooks of the area code, 0 instead of + 44, halves between the 2 dashboard of the number without the dash, a halves to separate the 2 space number - nothing works!

    It's incredibly annoying, because I just want to test the software out, a nd if it works I will get a license.

    Can someone please help me with this?

    Thank you very much

    Hello Basijan,

    You want to ask your question on the HP Enterprise business community which is a forum for the company's products.

    Here is the direct link to the area you want.

    News of functional tests (formerly QTP) unified and Support Forum - HP Enterprise Business Community

    It will be useful. Good luck.

  • Satellite U400-112: impossible to format the local drive (damaged MFT?)

    Hello!

    I had a pretty serious problem with my HARD drive.
    250 GB HARD drive
    C: 116 GB - NTFS - Windows XP (Vista initially)
    D: 1, 5 GB - NTFS - (Vista Recover?..)
    E: 117 GB - RAW (was NTFS prior to crash)

    Local drive E: MFT have been damaged because of the virus attack (I hope not because of my madness!). It's NTFS, now it's RAW. I got all the necessary data partition with program ZAR, but all my attempts to recover or just the format E: remained unsuccessful.
    None of the defective sectors found on the HARD drive. Standard Windows tool to format the disks fails: 'it's impossible to finish the formatting of E:

    Before this problem with the E: drive, I had several problems with HARD drive. I have never divided re discs, to Partition Magic from the beginning he identified incorrectly. I tried Partition Magic 7 and 8.
    Link: [error screensaver | http://cs1498.vkontakte.ru/u169802/154397/x_3a82b4fb.jpg]

    The problem is that the special programs (I tried "find and Mount") also could not identify partitions to correct the defective MFT. I thought that low-level format can help me, but I heard, that the use of all applications for other producers can probably destroy my HARD drive. Are there only special applications of Toshiba developed for such cases? Or you can advice me something else?

    Thanks for your help!

    P.S. These applications did not help me:
    Find and Mount (can't find the HARD drive)
    Acronis Recovery Expert (does not find the HARD drive)
    OnTrack EasyRecovery Professional (does not resolve the error, but help to recovery data)
    HDD Regenerator

    Thus you get back all your important data?

    I would like to just launch Recovery to restore the HARD drive to its factory condition. If the recovery fails, you can try to delete the partitions with FDISK from a startup MS-DOS disk. Free bootdisks can be found at www.bootdisk.com

    FDISK can also repair a Master Boot Record by running this command: FDISK/MBR
    But it is not 100% reliable, it could cause more harm than good.

  • HP OfficeJet Pro 8610: Impossible to activate the scan of the computer, complete the installation of the utility

    I'm not able to activate the analysis of my desktop computer or my laptop. I pedaled power the router, printer and computers, ran disk utility and repair permissions, I uninstalled the printer and reinstalled. I received a message that the installation of the HP Officejet Pro 8610 has been completed successfully, but when he goes then HP utility-Setup-HP Officejet Pro 8610, happens to alerts from HP and I get the error message: "a critical error has occurred. Please restart the application, and then try again ' and I am unable to continue. Download and open HP Easy Start are successful but he opens the HP utility at the end and I get the same message once it arrives to alerts from HP.

    Opening to the high HP utility-HP Officejet Pro 8610 and clicking on scan settings, Scan of the computer initially appears without the box checked to activate this function and the error message: "the computer Scan is disabled. You can always start the scanning of your computer software analysis - for example, HP scanning "." Click on the button to activate the Scan of the computer generates this error message: "error of Communication. Unable to communicate with the device. Check the cables and the connection parameters. If the problem persists, try restarting your computer and the HP device "."

    In the window of the printer, press Scan and the Scan of the computer selection produces the error message: "not found computer. Scanning software HP is required for this feature. If installed, open the HP utility and under settings of scanning, select scan to computer and enable "."

    I tried everything suggested, and what I found online to try.  I'm missing something or not doing something correctly?

    Thanks for any help!

    Hi @3star8,.

    Welcome to the Forums of HP Support! I read your post and see that you are unable to activate the computer option via the software scan. I would like to help you today. If this helps you to find a solution, please click on the button "Accept as Solution" down below in this message. If you want to say thanks for my effort to help, click on the 'Thumbs Up' to give me a Kudos.

    I think that the procedure described in this post, will help solve this problem. Here is the link: Re: impossible to activate the Scan.

    This is the URL of your drivers, e-all-in-one-HP Officejet Pro printer 8610 series full feature software and drivers.

    Please let me know the result and if there is anything else I can help you. Thank you.

  • Impossible to analyze the xml.aspx contained in the main.js.Iam get the following error"could not obtain XML document, and the connection has failed: status 500

    Impossible to analyze the xml.aspx contained in the main.js.Iam get the following error"could not obtain XML document, and the connection has failed: status 500

    My main.js resembles

    xmlDataSource var = {}
     
    URL: 'dcds. - symbianxml.aspx", etc. (sample).
     
    init: function() {}
    URL, successful reminder, the reminder of failure
    This.Connect (this.) (URL, this.responseHandler, this.failureHandler);
    },
     
    /**
    * Analyzes the XML document in an array of JS objects
    @param xmlDoc XML Document
    * @returns {table} array of objects of the device
    */
    parseResponse: {function (xmlDoc)}
        
    var chElements = xmlDoc.getElementsByTagName ("channel");
       
    channels of var = [];
      
    Console.log (chElements.Length);
      
    for (var i = 0; i)< chelements.length;="">
        
    var channel = {};
       
    for (var j = 0; j)< chelements[i].childnodes.length;="">
        
    var node = Sublst.ChildNodes(1).ChildNodes(0) chElements [i] [j];
                
    If (node.nodeType! = 1) {//not an element node}
    continue;
    }
           
    Channel [node. TagName] = node.textContent;
    }
       
    Channels.push (Channel);
    }
    Console.log (Channels.Length);
    return the strings;
    },
     
    /**
    Manages the response and displays the data from device web app
    @param xmlDoc
    */
    responseHandler: {function (xmlDoc)}
      
    var channel = this.parseResponse (xmlDoc);
    var markup = "";
       
    for (i = 0; i< channels.length;="">
       
    markup += this.generateHTMLMarkup (i, channels [i]);
    }
    document.getElementById("accordian").innerHTML = mark-up;
    },
     
    /**
    Generates HTML tags to insert in to the DOM Web App.
    * @index i, index of the device
    @param device, device object
    */
    /*
    generateHTMLMarkup: function (i, channel) {}
      
    var str ="";
    "Str += '.


    ' onclick =-"mwl.setGroupTarget ('#accordian ',' #items_" + i + "', 'ui-show ',' ui - hide');" + ".
    "mwl.setGroupTarget ('#accordian ',' item_title_ #" + i + "', 'ui-open', 'ui-farm'); Returns false; \ » > » ;
    "" Str += "" + channel ['name'] + ' ";
    "Str += '.
    ";
    "Str += '.
    ";
    "Str += '.
    "+" id: "+ channel ['id'] +" ' "
    ";
    "Str += '.
    "+" type: "+ channel ['type'] +" ' "
    ";
    "Str += '.
    "+" language: "+ channel ['language'] +" ' "
    ";
    "Str += '.
    «+ "bandwidth:" + "fast" channel + "»»
    ";
    "Str += '.
    "+" cellnapid: "+ channel ["cellnapid"] +". "
    ";
    "Str += '.
    «+ ' link: '+'start the video »»
    ";
    "Str += '.
    ";
    return str;
    },*/
    generateHTMLMarkup: function (i, channel) {}
       
    var str ="";
    "Str += '.
    ";
    str +=  "" +
    "" + channel ['name'] + ""+""
    ";
    "Str += '.
    «+ ' link: '+'start the video »»
    ";
         
    return str;

    },
     
    failureHandler: {function (reason)}
    document.getElementById("accordian").innerHTML = "could not get XML document.
    '+ reason;
    },
     
    /**
    Retrieves a resource XML in the given URL using XMLHttpRequest.
    @param url URL of the XML resource to retrieve
    @param called successCb, in the XML resourece is recovered successfully. Retrieved XML document is passed as an argument.
    @param failCb called, if something goes wrong. Reasons, in text format, is passed as an argument.
    */

    Connect: {function (url, successCb, failCb)
      
    var XMLHTTP = new XMLHttpRequest();
      
    XMLHTTP. Open ("GET", url, true);

    xmlhttp.setRequestHeader("Accept","text/xml,application/xml");
    xmlhttp.setRequestHeader ("Cache-Control", "non-cache");
    xmlhttp.setRequestHeader ("Pragma", "non-cache" "");
      
    var that = this;
    XMLHTTP.onreadystatechange = function() {}
       
    If (xmlhttp.readyState == 4) {}
        
    If (XMLHTTP. Status == 200) {}
         
    {if (!) XMLHTTP.responseXML)}
    try {}
    If server has not responded with good an XML MIME type.
    var domParser = new DOMParser();
    var xmlDoc = domParser.parseFromString(xmlhttp.responseText,"text/xml");
           
    successCb.call (that, xmlDoc);
           
    } catch (e) {}
    failCb.call (, "answer was not in an XML format.");
    }
              
    } else {}
    successCb.call (that, xmlhttp.responseXML);
    }
    } else {}
    failCb.call (this, "connection failed: status"+ xmlhttp.status ");
    }
    }
    };
    XMLHTTP. Send();
    }
    };

    Please see the content in main.js is fully analyzed.

    Forward for the solution to my request all members of the community...

  • IPS is impossible to pass the signature

    MY client pointed out that IPS modular is impossible to pass the signature in the ASA5510, there already purchase the license.

    Can I upgrade the IOS ASA or do something else?

    What is the formal process to solve this problem?

    the error is as below:

    Cannot upgrade the software on the sensor.

    -This upgrade must be installed on a sensor with 4 engine version

    The currently installed version of engine is 1.

    SLPG-BOH-AIP # show version

    Application partition:

    Cisco Intrusion Prevention System, Version 7.0000 E1

    Host:

    Domain keys key1.0

    Definition of signature:

    Update of the signature S302.0 2007-09-17

    Virus update V1.2 2005-11-24

    OS version: 2.4.26 - IDS-smp-bigphys

    Platform: ASA-SSM-10

    Serial number: JAB09410434

    License expires on: 26-Sep-2011 UTC

    Sensor time is 192 days.

    With the help of 609878016 of 1054670848 memory available bytes (57% of use)

    system is using 17.4 M off 29,0 M bytes of disk space available (60% of use)

    the application data uses 45.0 M 166,8 M bytes of disk space available (28% off

    its use)

    start using 35.2 M off 68.6 M bytes of disk space available (54% of use)

    MainApp to Z-2007_SEP_26_11_54 (press release) 2007-09-26 T 12: 09:32 - 0500 Ru

    nning

    AnalysisEngine-Z-2007_SEP_26_11_54 (press release) 2007-09-26 T 12: 09:32 - 0500 Ru

    nning

    2007_SEP_26_11_54-Z-CLI (release) 2007-09-26 T 12: 09:32 - 0500

    Upgrade history:

    IPS - K9 - 5.1 - 7 - E1 10:24:03 UTC Friday, August 5, 2011

    Version 1.1 - 7, E1 0000 recovery partition

    SLPG-BOH-AIP #.

    You must upgrade the IPS module to the latest version first before that you can update the signature. The current version of 7.0000 E1 software is very old, and the latest available version is now 7.0.5a (E4). E1 engine is very old and is not compatible with the signature that runs on the E4 engine.

    Here are the release notes for 7.0.5a (E4):

    http://www.Cisco.com/Web/software/282549758/50172/IPS-7_0-5A-E4_readme.txt

    You need to upgrade the module running at least version 5.1 (6) E3 before you can upgrade to 7.0.5a (E4).

    Once the IPS module has been upgraded to version 7.0.5a (E4), you can update to the latest signature.

    I hope this helps.

  • Oracle DB 11.2.0.4: Impossible to activate the table lock after having stopped it

    Hello

    I use Oracle Database 11.2.0.4.

    After reading the documentation on how to prevent unwanted table DDL statement.

    I found a way to do this in by issuing 'edit the table < table_name > disable table lock'.

    Turn it off doesn't work, however I can not re - activate.

    The error message is:

    ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired

    I want to activate the lock, because I need to add new columns to this table.

    I was digging on several threads that have the same problem as mine. But none of them gives any acceptable solution.

    Impossible to activate the table lock after disablng it

    ALTER table enable table lock blocking

    However, a poster responds by quoting the documentation that says: (Note: I can't find what doc says)

    'Specify the TABLE LOCK ACTIVATE to activate the table locking, allowing operations on the table DDL. All currently process transactions must commit or roll before Oracle database allows table locking. »


    By the way:

    1. the table is mine and nobody knows there are (therefore, it would be just me which undoubtedly make any DML at it, and I did not).

    2. I've disabled the lock table months ago and tried to turn it back on because I want to add the new column to the table.


    It means that I have to wait for that "ALL transactions running" happening on the current scheme being validated or cancelled?

    The table itself is located on the stops and never schema of production on which transactions take place continuously.


    Is it true that Oracle expects all execute transactions? Is it known bug?

    Why would Oracle wait as all transactions which has nothing to do with the underlying table?

    Is there no workaround solution to solve this?


    Note:

    I tried to deactivate - activate the table locking on the development database (which has less transaction) and it works fine.


    Kind regards


    Buntoro

    Your best option might be suspended from the database. If it is an application of type OTP, it must suspend in some secinds, do your DOF, then get out. Your users should not notice. I have described the mechanism here,

    Quiesce

    --

    John Watson

    Oracle Certified Master s/n

  • Calculation fail with (impossible to rename the outbound log file)

    Hello

    I am running a calculation script that breaks down after running for some time. I see that the problem comes from the entity dimension that has something of 4,000 members. My calc calculation script only a subset of this dimension.   I do see messages of any detail just the message log applications which ends with failure to rename the log file, exit below.

    Impossible to rename the outbound log file [Wed Oct 21 11:25:26 2015]...

    Calculator Information message: run block - [No_Activity], [Deg - 47], [No_Location], [2870], [No_Academic], [D801200], [original], [FY15], [CAD], [F9plus3]

    Cannot rename the outbound log file

    Looks like you are running with SET MSG DETAIL, is that correct?

    Has the potential to create a lot of log entries. Just a guess but you run out of space in your/diagnostics/logs folder?

Maybe you are looking for