FRM-30312: unable to compile the library in R12

Hi all

I want to compile a library of custom in R12. After that I have compiled, a strange error has occurred... Some packages are not available. So I decided to compile a standard library (JE.pll) and the error occurred again. If I wrote $FORMS60_PATH echo nothing appeared. I have to add the path that contains the libraries?

This is the command I executed
---------------------------------------------------

frmcmp_batch ${1} .pll userid = module_type output_file=/u01/oracle/DESA/apps/apps_st/appl/xbol/12.0.0/resource/${1}.plx APPS/APPS = LIBRARY

This is the error:
-----------------------

10.1 forms (form of the compiler) Version 10.1.2.3.0 (Production)

10.1 forms (form compiler): Release-Production

Copyright (c) 1982, 2005, Oracle. All rights reserved.

Oracle Database 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
With partitioning, OLAP, Data Mining and Real Application Testing options
PL/SQL Version 10.1.0.5.0 (Production)
Oracle V10.1.2.3.0 - Production procedure generator
Oracle 10.1.2.0.0 graphic virtual system Version (Production)
Oracle Multimedia Version 10.1.2.0.2 (Production)
Oracle tools integration Version 10.1.2.0.2 (Production)
Common tools Oracle area Version 10.1.2.0.2
Oracle CORE Production 10.1.0.5.0
Compile the library I...
Compile the package Spec JEZZ_GL...
Compile the package Spec JEZZ_AR...
Compile the package Spec JEZZ_AP...
Compile the package Spec JEZZ...
Compile the package Spec JESK_AP...
Compile the package Spec JERU_SH...
Compile the package Spec JERU_GL...
Compile the package Spec JERU_CE...
Compile the package Spec JERU_AR...
Compile the package Spec JERU_AP...
Compile the package Spec JEPT_AR...
Compile the package Spec JEPL_AR...
Compile the package Spec JEIT_AP...
Compile the package Spec JEHU_AP...
Compile the package Spec JEES_AR...
Compile the package Spec JEES_AP...
Compile the package Spec JECZ_AP...
Compile the package Spec I...
Compilation of the Package JEZZ_GL body...
Compilation of the Package JEZZ_AR body...
Compilation of the Package JEZZ_AP body...
The body of Package JEZZ compiling...
Compilation of the Package JESK_AP body...
Compilation of the Package JERU_SH body...
Compilation of the Package JERU_GL body...
Compilation of the Package JERU_CE body...
Compilation of the Package JERU_AR body...
Compilation of the Package JERU_AP body...
Compilation of the Package JEPT_AR body...
Compilation of the Package JEPL_AR body...
Compilation of the Package JEIT_AP body...
Compilation of the Package JEHU_AP body...
Compilation of the Package JEES_AR body...
Compilation of the Package JEES_AP body...
Compilation of the Package JECZ_AP body...
Compilation of the body of Package I...
FRM-30312: unable to compile the library.

Thanks Mariano. -.

Hello

What do you mean ¨instead¨? That it is not necessary to set the FORMS60_PATH?.

If you're on 11i, you must check the value of FORMS60_PATH

If you're on R12, you must check the value of FORMS_PATH

In addition, I sent an email to DBA in order to know if we have invalid objects, but I need to insist that the library is standard (JE.pll).

Just make sure you can get this error FRM if you have invalid objects that may apply.

Thank you
Hussein

Tags: Oracle Applications

Similar Questions

  • Error message: FRM-1808: unable to load the following items

    Hi gurus

    I copied the forms of my server on my local machine and got the following message when I try to open this form:

    Message

    FRM-1808: unable to load the following items.

    Source Module: test_property_class.fmb
    Source object: J_OBJ_GRP

    After that, I see another message to fix some PL/SQL libraries, now I have a plan to fix the missing library, but I don't know how to get rid of the message above...

    Appreciate your help. Thanks in advance.

    Concerning

    Muzz

    Forms is unable to find your form tamplate and your PLL.

    Check FORMS_PATH (in the registry) and add the appropriate paths where to find them.

  • FRm-40741: unable to locate the plug on block 11

    Hi all

    I use this custom property defined when press the button Search "FRm-40741: unable to locate the plug on block 11" error getting.

    If: XXEAM_SHUTDOWN_DETAILS. WF_STATUS = "Not sent yet!" then
    Set_Custom_Property('XXEAM_SHUTDOWN_DETAILS.) WORK_ORDER_NO',: SYSTEM. TRIGGER_RECORD, "ENABLED", TRUE);
    Set_Custom_Property('XXEAM_SHUTDOWN_DETAILS.) ESTIMATED_START_DATE',: SYSTEM. TRIGGER_RECORD, "ENABLED", TRUE);
    end if;


    Please give me any other property for record wise work instead of Set_Custom_Property.

    Kind regards
    Maha

    Finally, I had a few minutes to play with my sample form and found out that Andreas is correct when he said:

    SET_CUSTOM_PROPERTY does not have the number of the logical record as a parameter, but 'the physical line number' in the layout.

    In my example of form, as I scrolled items folders "Enabled" has not changed with the records.

    *@Maha,* my apologies. In order to apply the desired effect, you will have to imitate the enabled property for each record by using a combination of the Set_Item_Instance_Property() WATERWAY integrated, INSERT_ALLOWED, UPDATE_ALLOWED and VISUAL_ATTRIBUTE (optional) properties. Because you change many properties, I so wrap it in a procedure called ENABLE_ITEM and past the point, the file number and activate settings. For example:

    /* This procedure assumes you have a VISUAL_ATTRIBUTE                 */
    /* created called 'ENABLED' and 'DISABLED'.  In my example,           */
    /* I created the DISABLED visual attribute with following properties: */
    /*  Foreground Color = DarkGray                                       */
    /*  Background Color = gray12                                         */
    /* The ENABLED visual attribute does not specify any properties so it */
    /* sets the above properties back to                     */
    PROCEDURE enable_item (inItem VARCHAR2, inRecord NUMBER, inEnabled BOOLEAN )IS
         paramCount     NUMBER := 0;
    BEGIN
         IF ( inEnabled ) THEN
              Set_Item_Instance_Property(inItem, inRecord, INSERT_ALLOWED, PROPERTY_TRUE);
              Set_Item_Instance_Property(inItem, inRecord, UPDATE_ALLOWED, PROPERTY_TRUE);
              Set_Item_Instance_Property(inItem, inRecord, NAVIGABLE, PROPERTY_TRUE);
              Set_Item_Instance_Property(inItem, inRecord, VISUAL_ATTRIBUTE, 'ENABLED');
         ELSE
               Set_Item_Instance_Property(inItem, inRecord, INSERT_ALLOWED, PROPERTY_FALSE);
              Set_Item_Instance_Property(inItem, inRecord, UPDATE_ALLOWED, PROPERTY_FALSE);
              Set_Item_Instance_Property(inItem, inRecord, NAVIGABLE, PROPERTY_FALSE);
              Set_Item_Instance_Property(inItem, inRecord, VISUAL_ATTRIBUTE, 'DISABLED');
      END IF;
    END enable_item;
    

    You then call the ENABLE_ITEM procedure in your code, passing the name, registration number and activate (true or false) disable your element. For example:

    If :XXEAM_SHUTDOWN_DETAILS.WF_STATUS = 'Not Submited Yet!' then
       enable_item('XXEAM_SHUTDOWN_DETAILS.WORK_ORDER_NO', :SYSTEM.TRIGGER_RECORD, TRUE);
       enable_item('XXEAM_SHUTDOWN_DETAILS.ESTIMATED_START_DATE',:SYSTEM.TRIGGER_RECORD, TRUE);
    end if;
    

    Options François and Steve mentioned are also good ways to do this as well.

    Sorry if I confused the issue earlier.

    For those who suggested to use SET_ITEM_PROPERTY('BLOCK_NAME.) Nom_element', ACTIVE, PROPERTY_FALSE), do not forget the cascade effect of assigning false to the ENABLED property of an element. When you ACTIVATE your story later, you must also set the properties MODIFIABLES NAVIGABLE, UPDATE_NULL, true.

    Craig...

    Published by: Silvere on 16 January 2013 14:15

  • Compile the library program

    Is it possible to compile a program as a library in Eclipse?  If so, how I would include it in my application?

    To edit a project in a library right click on the project in Eclipse and select Properties.  Then click on the BlackBerry JDE project properties, select the Application tab and set the type of project to the library.

    To specify that a project is based on a library of right click on the project in Eclipse, then select Properties.  Then click on project references check your library project.

  • Windows Media Player is unable to update the library.

    I ripped several CDs and I still have to go into the music folder to play instead of them showing upward in the library. I spent 2 weeks trying to get this answer. Keep saying Windows contact Dell and Dell says that they have nothing to do with it. Someone please help?

    Hello

    1. What is the model number of the computer?

    2. What is the security software installed on the computer?

    3. have you made changes on the computer recently?

    4 is that the problem is specific to Windows Media Player?

    Method 1.

    I suggest you to refer to this article.

    Open the troubleshooter in the Windows Media Player library: http://windows.microsoft.com/en-US/windows7/Open-the-Windows-Media-Player-Library-troubleshooter

    Method 2.

    To resolve this problem, delete the Windows Media Player database. To do this, follow these steps:

    1. exit Windows Media Player.
    2. click on start, run, type %LOCALAPPDATA%\Microsoft\Media Playerand then click OK.
    3. Select all the files in the folder and then click on Delete on the file menu.
    Note: You don't have to remove the folders that are in this folder.
    4. restart Windows Media Player.

    Note Windows Media Player automatically rebuilds the database.

    If this does not resolve the problem, disable the Windows Media Player database cache files. To do this, follow these steps:

    1. exit Windows Media Player.
    2. Click Start, click Run, type %LOCALAPPDATA%\Microsoftand then click OK.
    3. Select the Media Player folder, and then click on Delete on the file menu.
    4. restart Windows Media Player.

    For more information, see these links:

    Add items to the Windows Media Player library: http://windows.microsoft.com/en-US/windows7/Add-items-to-the-Windows-Media-Player-Library

    I hope this helps.

  • Unable to update the library item make mistake, & quot; There is no error produced & quot;

    Dreamweaver will not update to library items in any profile and generates an error "no error occurred" message when I try to update a page with an existing library item or try to recreate it. If I rename the library item in the components window, that the name of the item is modified on each page, the item exists.

    I deleted the files for a couple of profiles .dws, but this makes no difference.

    Anyone shed some light on why this is happening?

    I worked on the issue.

    I had recently changed a network connection for the files in the site of a unc path to a mapped directory, but has not changed the local path in site definitions. This doesn't seem to affect access to files for DW or update the model. Seems THAT XP/DW could solve the location very much. But the updates of the library had a problem with that. Once I changed the local path to the directory mapped correctly updated the library items.

  • Unable to save the library brush in Illustrator CS5

    I want to save my library of brush. I try to save as (Mac OS) / Library/Application Support/Adobe/Adobe Illustrator CS5/forms. In the Adobe folder there is no list of Adobe Illustrator CS5. And it is not listed in Adobe Creative Suite 5.5 either. What do you think I can hurt?

    In your applications folder, another folder that contains the files you specify more the application itself there. So, looks like you got the wrong icon in the dock. The window with this Configuration, Cool Extras, legal, Presets, etc contains also "Adobe Illustrator CS5"?

  • Error oracle FRM-40505 unable to execute the query

    Hi gurus,

    When query the values in host order of Super order management user

    The following error is displayed:

    FRM-40505: ORACLE error: cannot perform the query

    What is the solution for this error?

    Concerning

    SBJ *.

    Take a look at Metalink Note: "Troubleshooting FRM-40505 [ID 1004134.6].

    Khan

  • FRM-40105 unable to resolve the reference to the parameter.webutil config element

    Hello.
    I have a form(10G) that uses webutil and the system returns this message, but I have other forms which works very well.
    I just copied all the objects of webutil to a form that is ready to this new form work.
    Someone already had this problem.
    Best regards.

    HI, when you copied objects, do you have sheet group WEBUTIL object to the new form of objects group? If you don't you should have all the components required for webutil. Oh. less the most important one... webutil. PLL :-)

  • Unable to authenticate the session in r12 when connecting from the browser.

    Hello

    I use oracle apps r12. I checked the availability of everything from the back-end that all work fine.
    Listed below:
    -All the concurrent Manager processes
    Opmn - process
    -Apache process
    -Forms service
    -Listener status

    But, when I try to open a session of front end of Mozilla Firefox and internet explorer as well. I get an error below:

    * "Impossible to authenticate the session" * "

    Could you people suggest the origin of it.

    Salvation;

    Start > Control Panel > Java > Temporary Internet Files

    If its does not work then I suggest to uninstall java and try to connect to EBS, it will install java again when you try to connect to ebs first time

    Respect of
    HELIOS

  • frmcmp cannot compile the modules containing SQL code that connected to the database

    Hello

    I checked several hundred messages of the forum on the net without finding a solution.

    I have a Linux server with 11.1 WebLogics (11 GR 1 material) and FormsRuntime installed.

    I am logged in as root.

    I put all the environment variables based on the values in default.env.

    In addition, I updated TERM and ORACLE_TERM vt220. And TNS_ADMIN to the location of the sqlnet.ora and tnsnames.ora.

    I compiled a simple .pll containing only the following code:

    IS test PROCEDURE

    an INTEGER: = 0;

    BEGIN

    a: = 1;

    END;

    command:

    frmcmp_batch module = TESTLIBPLAIN.pll userid=myuser/mypassword@mydb module_type = LIBRARY output_file = TESTLIBPLAIN.plx compile_all = Yes = Yes = No. batch connection

    result: successful compilation. generated .plx.

    now, I'm trying to compile an another .pll containing just the following code:

    IS test PROCEDURE

    an INTEGER: = 0;

    BEGIN

    Select 1 in the doubles.

    END;

    command:

    frmcmp_batch module = TESTLIBSQL.pll userid=myuser/mypassword@mydb module_type = LIBRARY output_file = TESTLIBSQL.plx compile_all = Yes = Yes = No. batch connection

    result: error:

    "

    11 forms (form of the compiler) Version 11.1.1.3.0 (Production)

    Copyright (c) 1982, 2010, Oracle and/or its affiliates.  All rights reserved.

    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production

    With partitioning, OLAP and Data Mining options

    PL/SQL Version 11.1.0.7.0 (Production)

    Oracle V11.1.1.3.0 - Production procedure generator

    Oracle virtual graphics system Version 11.1.1.3.0 (Production)

    Oracle Multimedia Version 11.1.1.3.0 (Production)

    Oracle tools integration Version 11.1.1.2.0 (Production)

    Common tools Oracle area Version 11.1.1.3.0

    Oracle CORE Production 11.1.0.7.0

    Compile the library TESTLIB.

    Invalidate the body TEST procedure...

    Compilation of body TEST procedure...

    ERROR on line 5, column 1 0

    Ignored SQL statement

    Library TESTLIB closing...

    Errors on TEST:

    PL/SQL ERROR on line 5, column 1 0

    Ignored SQL statement

    Could not generate the library.

    FRM-30312: unable to compile the library.

    "

    the two libraries differ by having used SQl commands or not.

    I tried to compile some more complex .pll and .fmb containg the SQL code. I get similar error messages. The messages that I receive for each module are the same, I would get when compiling the module with FormBuilder 9i (Windows) without being connected to the database.

    So my first thought was, this frmcmp_batch is unable to connect to the database.

    BUT:

    From frmcmp_batch with an invalid user, password, or database name not existing (resp. not in tnsnames.ora), results in appropriate error messages (not found TNS, refusal to sign etc.).

    With myuser/mypassword@mydb I don' t get this kind of messages.

    sqlplus myuser/mypassword@mydb works.

    myuser can access all objects in the database mydb.

    mydb tnsping works.

    When I check v$ session on mydb while (!) frmcmp_batch is running, I see that it is in fact a db session, created from myuser: DB-User = myuser, terminal = myappsever, osuser = root, remote process = frmcmp_batch.  And State of the current session of the db is ACTIVE.

    As a result, frmcmp_batch fails with error messages that I expect that when there is no connection to the base, if it is connected!

    Any ideas what could be wrong with my setup?

    Help appreciated.

    Jean

    I found the solution. Seems, fmrcmp 11g can connect to, but compiles not on the 9i database. With the help of a Database 11 g resolves the problem :-)

  • Compiler error of the library for QuickTest Pro automation Plugin files

    I'm trying the Flex Automation Package in the Flex 3 beta (because you do not have to have a license of data services to try it)

    I installed flex 3 beta and the package automation that accompanies it, but when I try to compile the library files, I get "an internal error has occurred. Please consult the error log"and"Unable to load SWC automation.swc.
    The log file has. MESSAGE Uncaught in the compiler exception"as well as all sorts of other info.
    I am trying to use the project > properties > Flex compiler method.

    A strange thing is that I can not reference the swc libraries locally. Flex Builder is installed here: C:\Program Files\Adobe\Flex Builder 3 and the SWCs are here: C:\Program Files\Adobe\Flex Builder 3\sdks\moxie\frameworks\libs, so I tried it - include-libraries "sdks\moxie\frameworks\libs\automation.swc" "sdks\moxie\frameworks\libs\automation_agent.swc" "sdks\moxie\frameworks\libs\qtp.swc" and I always get the error "can't open ' sdks\moxie\frameworks\libs\... '. ' CFC ' "if I put the whole path, the error continues, but I see (listed at the beginning of my post) internal error messages.

    for what it's worth: I tested with http://examples.adobe.com/flex2/inproduct/lcds/flexstore/flexstore.html, QTP and QTP is grateful for the elements in the flex... So I'm sure that the side test is set up right, I can not just to compile libraries in my own projects to test.

    If anyone has had this problem?... or someone can see where I am screwing things up?

    Well... in case that everyone scrolls on this problem, I finally understand how to make it work.

    I was adding only libraries in the section 'Compiler' project > properties. I found that libraries should also be added in the "Library Path" (go to project > properties > Flex Build Path > library path)

    I can now test my projects with QTP.

    However, I do not understand why I can't relatively reference libraries in the compiler section. I always have to enter the full path to the library.

  • How to correctly compile the form under Linux

    Hello
    I have a form that is called: TESTFORM.fmb

    I tried to compile this form by using the following command: export
    LD_LIBRARY_PATH=/u0/oracle/prodora/8.0.6/lib
    f60gen module=/u0/oracle/prodappl/ar/11.5.0/forms/US/TESTFORM.fmb USERID = apps/password
    good fmx is created successfully, the following error is also encountered during compilation:
    FRM-18108: unable to load the following items.
    Source Module: APPSTAND
    Source object: STANDARD_PC_AND_VA
    Source Module: APPSTAND
    Source object: STANDARD_TOOLBAR
    Source Module: APPSTAND
    Source object: STANDARD_CALENDAR

    I'm looking for APPSTAND.fmb and I found it here: /u0/oracle/prodappl/ar/11.5.0/forms/US/

    So then I tried to compile again with the following command, but the problem is always occurred: export
    LD_LIBRARY_PATH=/u0/oracle/prodora/8.0.6/lib
    export forms_path=/u0/oracle/prodappl/ar/11.5.0/forms/US/
    f60gen module=/u0/oracle/prodappl/ar/11.5.0/forms/US/TESTFORM.fmb USERID = apps/password
    my question is how to compile this form correctly?


    Any input would be helpful. Thank you

    Jimmy;

    Using a WebLogic Server?

    If so, you must use the compiler of forms frmcmp.sh

    #! / bin/sh

    file in *.fmb
    do
    frmcmp_batch.sh module = $file userid = compile_all = yes
    fact

    Tested on WebLogic and work, your paths will be different

    #! / bin/sh
    Export ORACLE_HOME = / u01/app/oracle/product/fmw/oracle_pfrd
    Export FORMS_PATH = / u01/app/oracle/product/fmw/fr_inst
    export PATH = $PATH: $ORACLE_HOME/bin: $FORMS_PATH/bin
    Export TERM = vt220
    Export ORACLE_TERM = vt220
    Export TNS_ADMIN = / u01/app/oracle/product/fmw/oracle_pfrd/network/admin

    file in *.fmb
    do
    module frmcmp_batch.sh = compile_all = yes $file userid=scott/tigersy@dev2

    fact

    Published by: mseberg on March 2, 2011 08:57

    script executed since then are the .fmb directory in

    Should also work on iAS

    Thank you!!

    Published by: mseberg on March 8, 2011 05:22

  • Unable to see Dimendion library

    Hi all

    I installed EPMA 11.1.1.3 on windows server 2003. But I am unable to see the library of Dimension in the workspace. There is no option for the EMPA even in shared Service. Here are the steps or messages that I got while configuration

    (1) connection to the base
    Deploy server applications-> Embedded Java container

    (2) deployment of Embedded Java container application servers
    EPMADATASynchronizer
    EMPAWebTier

    (3) performance Management architect
    -> Register with SSP = completed
    -> set up the completed = database
    -> deploy to the application server = completed

    Configured without any error.

    In the services window, I see the following services running

    Hyperion EPM architect - NYI Bridge .net
    Hyperion EPM architect - Manager of engine
    Hyperion EPM architect - Manager of the event
    Hyperion EPM architect - Job Manager
    Hyperion EPM architect - process manager
    Hyperion EPM architect - Web Application
    Hyperion EPM architect - Web Application data synchronization

    I also tried to start the server of Dimension in the start menu, but it just flashes and disappears.

    Please suggest how to solve this problem

    Thanks in advance

    You may need to configure the web server workspace once again, it's because you have installed EPMA after configuring it the first time.
    Launch the Configurator, select foundation, workspace, configure the web server, make sure of course EPMA is checked and click Next so that it configures, can't remember if you need to recycle the services of the workspace.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Error FRM-30312 when compiling to a custom library pll on forms 11 g weblogic

    Hi just posted a thread here:
    Error FRM-30312 when compiling to a custom library pll on forms 11 g weblogic

    Help, please.

    Run_product is used inside the RP2RRO_RUN_PRODUCT procedure. You can open the pll in Forms Builder and see for yourself.
    Maybe the form 11g has a new rp2rro.pll. In this case use this pll instead of upgrading the 10 g version.

Maybe you are looking for

  • Firfox crashing when you run a game with original by Tridef 3d application

    I have a LG D2342 screen. This screen has 3d Support. I play Battlefield 3. The 3d is running through an application called Tridef 3d. When I start the game with the Tridef he begins to open Firefox, then the firefox would just stop responding and ha

  • Why can I re-size my brower page?-it takes up the entire screen and I can't reduce its size.

    There was a kind of dumpster/handle (small arrows) that would allow me to the smaller browser screen. Now I have it doesn't seem to be something like this. I need to be able to have 2 browser screens side by side on my screen because I used to be abl

  • C3180 bought US prepare for cartridges NL 92/93 > 336/342

    I have an all-in-one photosmart C3180. Bought in the United States with 92 (n/b) and 93 (color) cartridges. Transferred to the NL. Printer worked well. Today I installed new cartridges - would be compatible with my printer have numbers 343 and 338. T

  • Wrt1900ac

    Hello I need help with the router. I had no problem in the past. Last night, the wifi no longer works quite I'm at school right now and I need wifi to work, otherwise I won't be able to get the work of the school. I looked in the smart wifi all my iP

  • Why a lot of these posts in this thread? I don't understand

    MOD. There is a lot of confusion out there, a large number of new messages every day and for the same things and so the info is here and there and you don't understand how to fix something if all the info is in 3 mln jobs... Is this normal?