Error PDE-PLI011

when i try to open a form in form builder 6i. it gives an error message pde-pli011
which means"A common oracle tools schema is missing from your object store .
kindly help me and email me at [email protected]
thanks

I don't understand why you don't have metalink access when you're working with Oracle tools...
But here it is:
Problem Description:
====================
PDE-PLI011 "A GUI common schema is missing from the object store" when user
attaches a library.
or
PDE-PLI011 A tools common schema table is missing from the object
store
1.) Attached Library
Solution Abstract:
==================
Log in SQL*Plus as SYSTEM and run DEBILD.SQL and DEGRNT.SQL. Before doing this,
check the existence of DE objects in the database by type the following as
SYSTEM in SQL*Plus:
select owner,object_name,object_type from sys.dba_objects
where object_name like 'DE_%';
Solution Explanation:
=====================
DEBILD.SQL and DEGRNT.SQL are in %ORACLE_HOME%\dbs (Windows) or
$ORACLE_HOME/guicommon/de/admin/sql (Unix).
2.) Error on opening a form in Builder
SOLUTION
========
An FMB file used as a reference form had its extension changed from .FMB to
.PLL. Changing the file extension back to .FMB corrected the problem.
or
Form Source File FMB has reduced in Size
cause: Unknown Corruption in Form.
fix:
Revert to a back up of the form
3.) Reasions for this problem
A) FTP of FMB/MMB/PLL was done in ASCII mode, and should have been done in
BINARY mode
2) The FTP did not complete, and the FMB/MMB/PLL was only partially transferred
(To check, compare the byte sizes of the files on win32 against Unix.
If these are the same and the problem persists, a checksum
(crc32/MD5/SHA etc) of the file on the 2 systems can be generated on the OS,
and be compared to see if the files are truly identical.

Similar Messages

  • PDE-PLI011

    I am trying to open a form but it is giving me this error
    "PDE-PLI011 A tools common schema table is missing from the object store"
    Any suggestions ?
    Capri !!!
    Message was edited by:
    Capri

    try a search on google with the error code. Probably you will find some that resolve your problem.
    Here is a link to someone that has got your error:
    http://www.orafaq.com/forum/t/32299/2/
    Fabrizio

  • Solution for PDE-PLI011 Error.

    Hi buddies....I've a form with an attached PL/SQL Library which is placed on a network shared drive. Last day, when I opened my form in Form Builder-6i, it gave an error and closed the form builder application. And since that time whenever I try to open that form, it gives the following error and doesn't open:
    PDE-PLI011 A tools common schema table is missing from the object store.
    I think attached library has created errors in that form and doesn't let it open. However same PL/SQL library is working well with other forms. So have u peeps any solution for this problem???

    I don't understand why you don't have metalink access when you're working with Oracle tools...
    But here it is:
    Problem Description:
    ====================
    PDE-PLI011 "A GUI common schema is missing from the object store" when user
    attaches a library.
    or
    PDE-PLI011 A tools common schema table is missing from the object
    store
    1.) Attached Library
    Solution Abstract:
    ==================
    Log in SQL*Plus as SYSTEM and run DEBILD.SQL and DEGRNT.SQL. Before doing this,
    check the existence of DE objects in the database by type the following as
    SYSTEM in SQL*Plus:
    select owner,object_name,object_type from sys.dba_objects
    where object_name like 'DE_%';
    Solution Explanation:
    =====================
    DEBILD.SQL and DEGRNT.SQL are in %ORACLE_HOME%\dbs (Windows) or
    $ORACLE_HOME/guicommon/de/admin/sql (Unix).
    2.) Error on opening a form in Builder
    SOLUTION
    ========
    An FMB file used as a reference form had its extension changed from .FMB to
    .PLL. Changing the file extension back to .FMB corrected the problem.
    or
    Form Source File FMB has reduced in Size
    cause: Unknown Corruption in Form.
    fix:
    Revert to a back up of the form
    3.) Reasions for this problem
    A) FTP of FMB/MMB/PLL was done in ASCII mode, and should have been done in
    BINARY mode
    2) The FTP did not complete, and the FMB/MMB/PLL was only partially transferred
    (To check, compare the byte sizes of the files on win32 against Unix.
    If these are the same and the problem persists, a checksum
    (crc32/MD5/SHA etc) of the file on the 2 systems can be generated on the OS,
    and be compared to see if the files are truly identical.

  • ERROR - PDE-PEP006 ENCODED PROGRAM UNIT HAS A UNKNOWN FORMAT

    I am learning Developer 2000. After attaching talbotstandar.pll library, when I try to expenad Set_Up_List procedre, I am getting this error "ERROR - PDE-PEP006 ENCODED PROGRAM UNIT HAS A UNKNOWN FORMAT". Because of this I am not able to proceed, please give me soution to get rid of this problem as soon as possible.
    My email is [email protected]

    ERROR - PDE-PEP006 ENCODED PROGRAM UNIT HAS A UNKNOWN FORMAT
    Hai friends
    i have a form developed in forms 10g and reports 10g.
    the same form when i when iam trying to open in forms 6i/reports6i,everything is getting(layout) but when i am trying to see code it was blank. why.
    can anybody help to solve this problem or can any body give me the solutions to my email
    thanks
    vas
    E-mail :[email protected]

  • Error PDE-PPU017: "The program unit source must define a Subprogram Body or Package."

    Hi,
    Wonder what the error means? I've tried to add package specs and body but still can't resolve.
    Any help will be great!
    THANX
    irene

    VANPERSIE,
    It looks like you are mixing sytax. Some of the Syntax used in a Database trigger (such as Before Insert, After Insert, etc) is specific to database triggers. Referring to :NEW and :OLD are specific to database triggers and can't be used as you are using them, unless you have data blocks names NEW and OLD. Also, when you refer to a item in a block, you must prefix the block or item name with the colon ":". Also, as aweiden points out, you define your return data type as "TRIGGER". The return type of a Function must be a valid Oracle data type. Therefore, your function should return a BOOLEAN, NUMBER, VARCHAR, or even a Ref Cursor, just to name a few. From the looks of your code, your function would simply return a value to indicate that the INSERT was successful. Therefore, you could rewrite your function something like:
    CREATE OR REPLACE FUNCTION TESTTRIG_BODY() RETURNS BOOLEAN AS
    BEGIN
       /* This example assumes you have data blocks in your form called:  NEW_BLOCK and OLD_BLOCK. */
       INSERT INTO REPORT_TABLE
          (NUM_COL, OLD_VAL, NEW_VAL)
       VALUES
          (:NEW_BLOCK.NUM_COL, :OLD_BLOCK.CHAR_COL, :NEW_BLOCK.CHAR_COL);
       RETURN TRUE;
    EXCEPTION
       WHEN OTHERS THEN
          RETURN FALSE;
    END;Also, is there a particular reason you are manually INSERTing a record versus letting Oracle Forms handle this for you?
    Hope this helps.
    Craig...
    -- If my response or the response of another is helpful or answers your question please mark the response accordingly. Thanks!

  • Error PDE-PSD001 in Contains clause in Form

    PDE-PSD001 Could not resolve reference to <progunit name> while loading <progunit name>.
    Cause: You attempted to load a program unit, but a program unit or database object that it references could not be resolved.
    Action: The unresolved object may reside in a library to which are not attached, or in a database to which you are not connected. Retry the operation after attaching the necessary library or connecting to a different database, as appropriate.
    I have tried this particualr solution but its not working.Kindly provide me with alternate solution as early as possible.
    Waiting for your positive reply
    Regards
    Vishal Chaudhry
    null

    What are you trying to do?

  • PDE-PLI011 A tools common schema table is missing from the object

    Hi all,
    i have a problem this error was came when i am trying to open a form .
    Form version -10g Database version -10GR2
    pls help me out on this regards

    when running degrnt.sql and debild.sql file it given eroor
    SQL> @e:\DevSuiteHome_2\tools\dbtab\degrnt.sql
    Grant access to user: web_users
    grant select, insert, update, delete on de_attached
    ERROR at line 1:
    ORA-00980: synonym translation is no longer valid
    Grant succeeded.
    SQL> @e:\DevSuiteHome_2\tools\dbtab\degrnt.sql
    Grant access to user: web_master
    grant select, insert, update, delete on de_attached
    ERROR at line 1:
    ORA-00980: synonym translation is no longer valid

  • Error: PDE-PER001 Internal error (deprn 2)

    When stepping trough my code in debug mode I got the above error while opening my cursor. When running this code from my form, it is not working either, but it is giving me no messages.
    All my other cursors are working fine.
    Here is the code i am using:
    PROCEDURE Facturatie (vergdatum in DATE, grondkamer in NUMBER)IS
    verzoek_rec NUMBER(10);
    datum_klaar DATE;
    rb_datum DATE;
    cursor facturatie_cur (fa_begindatum in date, gk in number)
    is
    select verzoek.verzoek_id
    from ovg.ovg_verzoek verzoek
    , ovg.ovg_behandeling behandeling
    where behandeling.datum_gereed is null
    and behandeling.begindatum = fa_begindatum
    and verzoek.verzoektype IN ('toetsing eenmalige pacht', 'registratie teeltpacht')
    and behandeling.behandelstap = 'RB'
    and behandeling.verzoek_id = verzoek.verzoek_id
    and verzoek.ins_relatie_nr = gk;
    BEGIN
    datum_klaar := TRUNC(SYSDATE);
    rb_datum := vergdatum + 1;
    IF NOT facturatie_cur%ISOPEN THEN
    OPEN facturatie_cur (trunc(rb_datum), grondkamer); -- This line gives the error
    END IF;
    LOOP
    -- Haal record op
    FETCH facturatie_cur into verzoek_rec;
    exit when facturatie_cur%NOTFOUND;
    END LOOP;
    CLOSE facturatie_cur;
    END Facturatie;
    Somebody saw this before???
    thanks in advance,
    Axel

    This rather cryptic message is rare I have found that it means either
    The cursor either didn't return any rows
    or
    There is a permissions problem on one of the tables
    or
    There is a problem with the argument you are passing to the cursor
    This last looks most likely - Could you be getting precision or conversion errors...?

  • Can I use a Forms as a Library to other Forms?

    I am converting our Forms 3.0 Application to 9i. I am currently looking to convert via the easiest path so we can start developing with the new technology.
    In Forms 3.0, we have a Library of common procedures which is actually a Form. In Forms 3.0, other forms can then call procedures in the Form, similar to the librarys in Forms 9i, 6i etc. I would rather not convert this to a library manually because our Forms 3.0 "Library" is constantly changing. (unless there is an automated way of converting a Form to a 9i Library (.pll)... Even the 9i XML-2-Forms procedures can't handle libraries so I can't even write a Perl Script to do it...)
    It looks as if it will let me reference a Form as a library but then I get the following error:
    "PDE-PLI011 A tools common schema table is missing from the object store."
    Cause: You attempted to create or access a library stored in the database, but the operation failed because a table was missing from the Oracle Tools Common Schema.
    Action: Contact your DBA and insure that the Oracle Tools Common Schema is installed properly.
    How do I fix this? How do I install the Oracle Tools Common Schema? I cannot find any information on this problem anywhere on the Internet / Oracle Documentation / Forms Help / OTN. Please help if you can...
    Cheers,
    Tim.

    I haven't found the solution to the error message, however, I have found a way to convert my forms 3.0 .inp files to .pll's :)
    1. I use a perl script to convert the *.inp to a .pld format (text version of .pll)
    a) strip out the Forms 3.0 specific stuff and replace it with procedure headings in a package
    b) massage the older Forms 3.0 code such as replace :GLOBAL.dummy with name_in('GLOBAL.dummy')
    2. convert pld to pll as follows:
    ifcmp90 module=V3FORM_UTIL userid=scott/tiger@orcl module_type=library parse=yes
    as for the PDE-PLI011 error... Please reply if you know a fix for this one. It will be useful to know...
    Cheers,
    Tim.

  • PDE-PER001 INTERNAL ERROR while generating pdf

    Hello,
    I am tryin to generate a pdf file from a report attached to menu.
    But every time its showing me this error
    PDE-PER001 INTERNAL ERROR
    unhandled internal CA Error
    But when i generate the same through report builder, pdf file get genrated.
    I dont have any idea to how to resolve this problem.
    Kindly suggest me some solution.
    Thank you!

    There are a lot of things that you do to try and fix strange errors like these.
    1) NOT FORWARD COMPATIBLE
    I think I have seen this error when you save a file in a newer version (Forms 9)
    and then try and open it in an older version (Forms 6) - rather than the other way round
    that you are describing.
    Please provide the two versions of forms that you are dealing with.
    2) TOO MANY FILES OPEN
    This error can occur when you have too many files open in Forms Builder at once.
    Does the problem occur when you only have one file open ?
    Does the problem occur when you have started Forms Builder, then opened a single file ?
    3) LOG OFF / ON
    Strange errors like this can often be fixed by logging off, then close the file, then open it,
    then logon, then do a compile all code (CTRL SHIFT K), then save.
    After that you can do a compile (CTRL T) to create the runtime FMX
    4) COMPILING
    Files can be dependent on other files, so make sure you
    Upgrade and Compile the files in the following order.
    * PLL Libraries
    open each library
    Make sure you do this in the correct order.
    the highest level libraries first as libraries can be attached to other libraries.
    do a full compile (SHIFT CTRL K)
    then an incremental compile (CTRL K)
    - this second compile often fixed problems in the past, probably not needed now but worth a try
    save.
    * Referenced forms *.FMB and object libraries *.OLB
    To upgrade these open each one, then save
    You dont need to compile these.
    * The actual form
    disconnect, open file, connect, full compile code (CTRL SHIFT K), generate FMX (CTRL T), save, close, open
    5) CONVERT TO TEXT, THEN BACK TO BINARY
    File corruption problems can often be fixed by converting the file to a text file, then back to binary. In Forms 6 use "File -> Administration -> Convert" Forms 9 and 10 use "File -> Convert". Convert Forms from FMB to FMT and back to FMB again. For libraries use PLL > PLD > PLL. Object Libraries Same OLD > OLT > OLB. Also do the same for any referenced forms.

  • Error message PDE-PLI018 .....while opening library

    Hi,
    I am trying to migrate form 6i into forms 10g, for this I had to change libraries which are build up in forms 6i,for this i have open two libraries i.e SF4LIB.PLL and ACLOG.PLL. in Forms 10g developer Suite, SF4LIB.PLL is opened easily and compiling while opening ACLOG.PLL I am getting error message: PDE-PLI018 could not find library SF4LIB.PLL.
    I had also made changes in the FORMS_PATH.
    Can anybody share their ideas in resolving this error.
    Regards,
    Ashutosh

    Migration of forms 6i library to form 10g library, getting error PDE-PLI018

  • PDE-PER001 internal error(deplu3)?

    when I compile the form,this error[PDE-PER001 internal error(deplu3)] happens.
    why this error happens?
    How to correct it?
    Thanks in advences!

    Thank you!
    Sometimes re-open the form and compile,no error!
    Sometimes re-connect database,no error!
    And sometimes compile the form many times,no error too!
    How strange it is!
    But why happened this error?
    What is the reason on earth?

  • PDE-PEP006 Error Unable to open laf.pll file

    I have downloaded laf.pll and all corresponding packages from blog of Francois Degrelle related to Oracle look and feel. when i am opening laf.pll it is giving error PDE-PEP006 Encoded program unit has unknown format iam opening file in oracle forms10g on windows 2000.

    <p>You can download the complete project zipped file.
    It contains text files to reconstruct the pll on any version.</p>
    Francois

  • PDE-POC004 general oci error

    Hi,
    When i try to connect with reports6i designer to the oracle 8.1.7 database i get the following error: PDE-POC004 general oci error. An error message with more detailed information is supplied.
    I have no problems connecting with forms6i or other tools.
    There is absolutely no information available on this error number. Any one knowing what is the problem here. Where can i find the "more detailed information"
    Thanks,
    Ame

    This looks like a bug in the Procedure Builder component and/or may have something to do with the database you're connecting to (you didn't mention the database version info). You could try to see if you are getting the same issue when connecting using the Procedure Builder executable (de60.exe).
    The error could also be a "warning" in the sense that you may be able to continue creating and running a report despite the error.
    In any case, you should follow up with Oracle Support about possibly filing a bug for this.
    Hope that helps...

  • Error while executing a stored procedure from forms6i

    When I execute a STORED PROCEDURE from ORACLE DB 10g this procedure works perfectly fine.
    But when I execute the same from the FORMs 6i I get the following error:
    PDE-PLU022 Don't have access to the stored program unit
    XMLPARSERCOVER in schema CARE.
    where XMLPARSERCOVER is the class and
    CARE is the schema.
    Regards,
    Jignesh S

    I have tried this with both the owner of the schema and the intended user, -from both forms and directly.
    All rights was granted on the stored procedure. Since posting I have found that one of the tables that the procedure might insert into, was not explicitly granted to the intended user, and after rectifying that the error message went away.
    -however, the procedure now silently "finishes" without any evidence that it ever ran, if invoked from the forms application. When invoked from SQL Plus (or JDev, or Toad) it runs as expected.
    I have no public synonym for the procedure, -is that necessary?
    The stored procedure in question is implemented in java, and published as a stored procedure. It does rather heavy lifting, when running, using a view against another server , updating local tables and quite a lot of data validation/cleansing, and logging. All recourses are within the same schema.
    Any ideas?

Maybe you are looking for

  • Terminate messages without using BPM?

    Hi, Does anybody know if you can terminate messages with content based routing without ending up with messages in error state. example I receive IDOCs from R/3 where some should be handled and sent to a receiving system and some should not be handled

  • WVC80N recording on a MAC

    Can someone please tell me how to record on my MAC. I have the camera connected wirelessly. I can not find a utility on the CD that came with the camera. It is sold as compatible with a MAC but I can not record. Only using Quicktime to record screen

  • Account Group Table ?

    Hi, What is the table name for Account Groups? The reference Tcodes is KDH1 / KDH2 / KDH3. Here we make our account groups and assing GLs to that group. Thanks & Regards, Dhanunjaya Reddy.

  • Smartform name for Order confirmation?

    hi people,     Can anyone tell me the <b>name of the smartform for orderconfirmation</b> Regards Rajasekaran.

  • My iphone 5 is shutting down with 30% battery remaining

    My iphone keep shutting down with approx. 30% battery remaining, sometime 18%, I have to plug it to turn it on again, it is very frustrating. I did reset the phone and it still doing it.   PLEASE HELP!