FRM-40735 / ORA-06508 when you call procedure of a fastened package

Hi all
I have a problem when you call a procedure in one of my attached libraries. the code is:

When upper (trim (NOT_MSG_NAME)) = "REN_MSG_REQ_REG_PERMENANT" then SERV. CLFRM_PBL_NRQP_F(:Parameter.NOTIFICATION_ID);

and it gives me FRM-40735 indicating that an ORA-06508 has occurred during the call to the procedure.
Important and funny thing is when I add the path to the library, it works very well!
When I join, remove the path, it won't as I said...

the location of the library is: D:\DevSuiteHome\cgenf61\ADMIN, the path is added in the FORMS_PATH and all others
libraries attached to the form in the same way are working well!

I use the Forms 10.1.2.0.2 generator and the platform is windows and I migrated forms 9.0.4.0.19
anyone with any ideas what may be the problem?

Hello

Please check the path again and also to create working directory by modifying formsweb.cfg.

hope this helps you.

Sarah

Tags: Oracle Development

Similar Questions

  • 11.5.10.2 to R12.1.1 update: error loading of seeds for GL_DEFAS_ACCESS_SETS data: DEFINITION_ACCESS_SET = SUPER_USER_DEFAS, ORA-06508: PL/SQL: called program unit is not found

    Hello

    Version of the EBS: 11.5.10.2

    DB version: 11.2.0.3

    Version of the OS: AIX 6.1

    Under 11.5.10.2 R12.1.1 update, while implementing a merger 12.1.1 upgrade driver (u6678700.drv), we got below error:

    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

    ATTENTION: All workers have failed or are pending:

    IMPOSSIBLE: folder glsupdas.ldt worker 3.

    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

    drix10: / fmstop/r12apps/apps/apps_st/appl/admin/FMSTEST/log > tail-20 adwork003.log

    Restart the task that failed and has been corrected.

    Time, when the worker restarted job: Wednesday, August 7, 2013 10:36:14

    Loading data using FNDLOAD.

    FNDLOAD APPS / * 0 DOWNLOAD @SQLGL:patch/115/import/glnlsdas.lct @SQLGL:patch/115/import/US/glsupdas.ldt -.

    Connecting to applications... Successfully connected.

    Call the function FNDLOAD.

    Returned by the function FNDLOAD.

    Log file: /fmstop/r12apps/apps/apps_st/appl/admin/FMSTEST/log/US_glsupdas_ldt.log

    FNDLOAD of error function call.

    When the worker has no time: Wednesday, August 7, 2013 10:36:14

    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

    drix10: / fmstop/r12apps/apps/apps_st/appl/admin/FMSTEST/log > tail-20 US_glsupdas_ldt.log

    Current system time is sea Aug 7 10:36:14 2013

    Download from data file /fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/import/US/glsupdas.ldt

    Changing environment NLS_LANGUAGE AMERICA database

    Dumping from the LCT/LDT files (/ fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/import/glnlsdas.lct(120.0), fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/import/US/glsupdas.ldt) to the staging tables

    Dumping file fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/import/glnlsdas.lct(120.0 LCT) in FND_SEED_STAGE_CONFIG

    Dumping LDT file /fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/import/US/glsupdas.ldt in FND_SEED_STAGE_ENTITY

    Dumped the lot (GL_DEFAS_ACCESS_SETS SUPER_USER_DEFAS, GL_DEFAS_ACCESS_SETS SUPER_USER_DEFAS) in FND_SEED_STAGE_ENTITY

    Download of the staging tables

    Error loading of seeds for GL_DEFAS_ACCESS_SETS data: DEFINITION_ACCESS_SET = SUPER_USER_DEFAS, ORA-06508: PL/SQL: called program unit is not found

    Simultaneous request ended

    Current system time is sea Aug 7 10:36:14 2013

    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

    Hello

    Please, recreate the specification and body of the respective package and try:

    -Navigate to $GL_TOP, patch, 115, sql

    -Connected as a user of the applications.

    sqlplus Oracle@Amazon sql apps]

    SQL * more: version 10.1.0.5.0 - Production Wed Aug 7 13:53:33 2013

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

    Enter the password:

    Connected to:

    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production

    With partitioning, OLAP, Data Mining and Real Application Testing options

    SQL > @glistdas.pls

    Addition of PL/SQL package for gl_defas_access_sets_pkg specifications

    Package created.

    Validation complete.

    ...

    ..

    SQL > @glistdab.pls

    Addition of the PL/SQL package for gl_defas_access_sets_pkg body

    Package body created.

    Validation complete.

    See if this helps you, validation of the object.

    Better subject.

  • ORA-00900 when you use the command COPY with dynamic SQL

    Helllo,
    I created the following procedure:

    create or replace procedure copyTable (pSourceTableOwner IN varchar2
    pSourceTableOwnerPasword IN varchar2
    pTargetTableOwner IN varchar2
    pTableName IN varchar2
    pDatabaseLink IN varchar2)
    as

    vStatement varchar2 (250): = null;

    Start

    vStatement: = "copy of". pSourceTableOwner | '/' || pSourceTableOwnerPasword | '@' || pDatabaseLink |
    "Insert" | pTargetTableOwner | '.' || pTableName | ' using select * from '. pTableName;

    immediately run vStatement;

    end;
    /

    The generated command (variable vStatement) looks like this:
    "Insert a copy of O_GLCEN/o_glcen@SELLENTW o_jh. "X_PLZ_CD_MERGED_CTIS using select * from X_PLZ_CD_MERGED_CTIS".

    When you call this procedure as "exec copyTable ('O_GLCEN', 'o_glcen', 'o_jh', 'X_PLZ_CD_MERGED_CTIS', 'SELLENTW');" the following lifts:

    FEHLER in line 1:
    ORA-00900: invalid SQL statement
    ORA-06512: at "SYSTEMTECHNIK". COPYTABLE", line 20
    ORA-06512: at line 1

    But when you call the command COPY directly from SQL prompt the statement runs without error.
    Is in general not possible to use the dynamic COPY with SQL command? If it is possible does anyone has an idea what I am doing wrong?

    Any help will be appreciated...

    Rgds
    JH

    I would like to use something like

    vStatement: = ' start in f (select * from ' | pSourceTableOwner |) '.' || pTableName | '@' || pDatabaseLink | Insert loop ') in ' | pTargetTableOwner | '.' || pTableName | "f-values; end loop; end; »
    immediately run vStatement;

  • "ORA-06508: PL/SQL: called program unit could not be found.

    Hi all

    I'm not able to run a map after deployment. It is said "ORA-06508: PL/SQL: called program unit is not found" any help is greatly appreciated.

    Also I get the error message of smart recovery: orphan treats when I m trying to log on in the morning. It is said to kill the process using Alter kill, but the problem is not resolved. Kindly help me.

    Thank you

    Hello

    Without the instructions I canoe tell u anything. But that is the problem, why you have found a problem in the map. The package must be corrected first. I think it is just a syntax issue anyway. Try to use PL/SQL expert to get this resolved or mailed the package here, and I'll have a look.

    Concerning
    Bharath

  • URGENT, URGENT - "APP-FND-01926, WHEN-LOGON-CHANGED, ORA-06508" when trying

    Hi all;

    When I try to open forms I have this error:

    "APP-FND-01926, WHEN-LOGON-CHANGED, ORA-06508" when trying to connect.

    Anyone have idea?

    Thank you

    Double wire...

    URGENT, URGENT - "APP-FND-01926, WHEN-LOGON-CHANGED, ORA-06508" when trying
    URGENT, URGENT - "APP-FND-01926, WHEN-LOGON-CHANGED, ORA-06508" when trying

  • Synchronize data when you call another VI

    Saying: I A.i and B.vi called B. I want to display a waveform to A and B collects data in a while loop.

    The question is how the waveform is updated in real time, then B is running? I tried global variables, but looks A.i isn't in the thread when you call B, so the data may not switch to A real-time.

    Any suggestions?

    You want to search for ' Producer/consumer' of info on this design pattern. It consists of a producer who share data using a Motor of Action or a queue to pass data between threads.

    Another approach might be to use a control reference for waveform display (table or graph) and use 'the 'Value' property to write to the display in a manner SIMILAR to the writing comes to the Terminal.

    Ben

  • Pass a function when you call onClick for a button (UI)

    Hello

    I m now studying and I adventure in the creation of the user interface of the Script. I m enjoy!

    I m having the following problem: I have added a button in a dialog box and want to tell script to execute some commands when users click the button. It is therefore a simple (bad example):

    var DLG = new window ('dialogue', 'My dialogue box', [0,0,0,0])

    DLG. Size = [500 500]

    DLG. Location = [300 300]

    var b = dlg.add ("button", [0,0,0,0], "Run")

    b.Location = [20, 180]

    b = [80, 30]

    DLG. Show()

    b.onClick = test () //the problem is here

    function test() {}

    Alert ("test")

    }

    -------

    All is fair. But the onClick event fails the test of the function I m passing! What Miss me?

    I know if I'm using

    b.onClick = function () {}

    ...

    }

    It works... but I´d as the function to call when you call the onClick instead of directly created. Do not know if I m able to explain it better.

    Thank you for the help

    Best regards

    Gustavo.

    The standard would be...

    var dlg = new Window ("dialog", "My dialog", [0,0,0,0])
    dlg.size = [500,500]
    dlg.location = [300,300]
    var b = dlg.add("button", [0,0,0,0], "Run")
    b.location = [20, 180]
    b.size = [80, 30]
    b.onClick = function(){ //the problem is here
    test();
    }
    dlg.show()
    function test(){
      alert("teste")
    }
    
  • ORA-06508: PL/SQL: called program unit is not found

    I found this error in a project and I was confused as the program unit is there, but the error indicates the program unit is not found. So I'm googling and find an answer here oracle - ORA-06508: PL/SQL: could not find program unit called - Stack Overflow where a packet can be stateless or stateful after recompilation. I wonder, the idea of the package is we can change the package body and compile without the need to compile the package specification if the specification is not changed. If I compile them both, it will be fine, no more error, but I need compile the client application - form of Oracle.

    My question is:

    1. as the variables, constants, and the sliders that declares a package create the State (as explained in the link above), when should I use?

    2. why the error information correctly? I mean why not... say something like... "the package is with State..."

    Thank you

    regard, ib

    1 use them when you need to use - that is what really you ask?

    2. like the other article says that you probably never gave us the last exception to a trace. What does "I found this error in a project" mean? You won't "find" exceptions - Oracle reports. If show details of how the code was executed and all of the exceptions as Oracle supplied ALL participate.

    Package plug most will include the constants and cursor statements. That rarely only functions/procedures will be declared. In General, do NOT recomiling/change packages in production environments.

    But if you do then you'll probably apps that do not as you describe. As doc says Oracle quotes will be implicitly recompile time code first (although still have reported that initial exception) so that the references are not lacking.

  • Error: ORA-06508: PL/SQL: called program unit is not found

    Hello

    I was surprise issue while testing my code from Oracle. Let me explain first of all the details of the environment. Our application built
    Java/J2EE (Weblogic) and backend is Oracle 11 g re2. Calling Java call through different users who have been providing
    synonymous with option and running for corresponding procedure.
    I created the EXTRACT_CUSTOMER_INFO_PK package which exract data from file text with UTL_FILE (direcory, UTL_FILE grant is provided to the user to DB).
    Now this package was called rp_execute_procedure_pr - I have here is the code
    CREATE OR REPLACE PROCEDURE RP_EXECUTE_PROCEDURE_PR
    (
    i_atlas_job_schedule_fk IN atlas_job_schedule.atlas_job_schedule_pk%TYPE,
    i_job_id IN atlas_job.job_id%TYPE,
    i_parm_value IN atlas_job_schedule.parm_value%TYPE,
    o_status_code ON the NUMBER,
    o_status_mesg OUT VARCHAR2
    )
    IS
    -Other older code that is not relevant to this problem-

    -Other older code that is not relevant to this problem-

    -The code below, I added-
    ELSIF l_job_id = "CUST_EXTRACT" THEN


    EXTRACT_CUSTOMER_INFO_PK.customer_report (i_parm_value,
    o_status_code,
    o_status_mesg);


    -o_status_code: =-99999999.
    -o_status_mesg: = "PARTHA PARTHA PARTHAcess arrested!";

    ON THE OTHER
    o_status_code: =-20300;
    o_status_mesg: = ' Job Id: ' | l_job_id | ' Not found. Process is completed!';
    END IF;

    update_log_auto
    (
    ajs_rec.atlas_job_schedule_pk,
    ' Treatment time (GMT) of the end: '
    );

    EXCEPTION
    WHEN eProcError THEN
    o_status_code: = SQLCODE;
    o_status_mesg: = SUBSTR(vMsg ||) e -'|| SQLERRM, 1, 200);

    WHILE OTHERS THEN
    o_status_code: =-20300;
    o_status_mesg: = SUBSTR (SQLERRM, 1, 200);

    update_log_auto
    (
    ajs_rec.atlas_job_schedule_pk,
    ' Error: '. SQLERRM | » '
    );

    update_log_auto
    (
    ajs_rec.atlas_job_schedule_pk,
    ' Treatment time (GMT) of the end: '
    );
    END RP_EXECUTE_PROCEDURE_PR;


    Now he compiled sucesfully. And while I SAT RP_EXECUTE_PROCEDURE_PR then run fine and extracted txt file. But while I called him procedural Java it gives us the error as
    Error: ORA-06508: PL/SQL: 13:16:51 August 2, 2012 called program unit could not be found.

    Like I said RP_EXECUTE_PROCEDURE_PR old proc and used by the other proc, so I first think question is newly added code or maybe a few grants or synonym (although it should not be)
    So I created public means amd gave run grant to my public pkg.
    But he repeated the same mistake.
    I have a lot of R & D on my package but nothing happen. Finally I have my new pkg RP_EXTRACT_CUSTOMER_INFO_PK remane and it works fine

    I need to know what is the RCA for her. I donot think any problem as renaming pkg dependecy works very well.

    NB my user DB iATLAS and Javauser is SUDEEP


    Thanks in advance

    Martin Paiva

    Name conflict usually occurs because there is another object with the same name: could be it is even a java package name and plsql package package or could be same name from a different scheme.

    First of all, try to use the fully qualified name: myschema.mypackage.myprocedure

  • FRM-40735 ora-06502

    Well, I m back with a problem with my tabular presentation. :)

    The thing is after compiling everthing works well... .use the search button to search for postions from wiith HP, CC, WJ, WX, SN, SJ, RR, are all works fine but when I try to search using CR positions I get this message FRM-40735-POST-QUERY TRIGGER RAISED UNHANDLED EXCEPTION ORA-06502'


    That's what I wrote in the post QUERY terms

    Start
    * Select stlename in: location *.
    * from systab. *
    * where stappcode = 'MS' and stoffcode = 'C32' and stcode =: ecost. *
    exception
    * When no_data_found then: location: ='* '; *
    end;


    Here I m not assign NULL to any value that is NOT NULL then why this error. ???

    Hello
    It seems that the records being retrieved by your query in this recording "stlename" is larger and then the character you
    specified in the text field you ': location...

    Action: Increase the size of character in the item property... it should work.

    -Clément

  • Error frm-40735 ora-01403

    I read that it is a mistake of general use for forms, but I couldn't find an answer to my situation. I have a datablock based on views and a command button that has a trigger to select values in the block when one of the fields of blocks corresponds to these records. The following pl/sql code for trigger when-button-pressed the button:

    BEGIN
    SELECT SHOW. ATTRIBUTE1, VIEW. ATTRIBUT2
    IN: DATABLOCK. TEXTFIELD1,: DATABLOCK. TEXTFIELD2
    VIEW
    WHERE: DATABLOCK. TEXTFIELD = VIEW. ATTRIBUT3;
    END;

    When I try to run it in the forms, I get the error ora-01403 frm-40735. I can run a similar code of sqlplus. I would really appreciate the help.

    concerning

    First of all, I would say that you are missing a join in your query between DEPT and LOCATION, so if there are data in the table you should get a TOO_MANY_ROWS exceptions or ORA-01422.

    If you get the ORA-01403 simply means that your query does not return a value.

    Published by: Andreas Weiden 16.01.2009 at 22:43

  • ORA-01789 - when you use the operator of TABLE and SEM_MATCH

    Client version: 11.1.0.7 on Windows 7 (32 bit)
    Server version: 11.2.0.3 on Windows 7 (64-bit)

    I am model prototyping a simple RDF, and I'm getting a ' ORA-01789: block has an incorrect number of columns in query results "when you use the SEM_MATCH with the SCOREBOARD operator.

    I can run this:
    select id, a.triple.GET_TRIPLE() from drik.rdf_data a
    and the first line is:
    (<http://www.ihc.com/drik/term#2>, <http://www.w3.org/2000/01/rdf-schema#subClassOf>, <http://www.ihc.com/drik/term#1>)
    Now, I want to use the TABLE like this:
    select
      c
    from 
      table(sem_match('{ <http://www.ihc.com/drik/term#2> <http://www.w3.org/2000/01/rdf-schema#subClassOf> ?c . }', 
            sem_models('Prototype'),
            sem_rulebases('RDFS'),
            sem_aliases(sem_alias('rdfs','http://www.w3.org/2000/01/rdf-schema/')),
            null
            ))
    But this performance gives the ORA-07189. Even try SELECT * gives the same error.

    I expect to get a refund:
    <http://www.ihc.com/drik/term#1>
    How should I approach troubleshooting this?

    Thank you, Steve

    Thanks for posting the script. I was able to reproduce the error locally.

    The problem is the use of the sem_apis.create_rules_index () procedure, which has been deprecated:
    http://docs.Oracle.com/CD/E11882_01/AppDev.112/e25609/sdo_rdf_newfeat.htm#autoId26

    Please use sem_apis.create_entailment () instead, and the error should disappear.
    http://docs.Oracle.com/CD/E11882_01/AppDev.112/e25609/sem_apis_ref.htm#CHEHDGBD

    Thank you
    Matt

  • When you call sub-panels in an exe file, some to run correctly and some don't work at all.

    Hello

    I use LabVIEW 2009 and display various screws in a secondary (one at a time) into an executable.  A few screws properly load and run, while others do not work.  All the screws called VI properties are the same.  When I run into the development system, the code runs successfully.  I don't get any errors during the call to the screw - screw display all their facades like they should, but only a few actually deliver, while others do nothing.  Any ideas would be very appreciated!

    Thank you

    Jason

    Are you running VI separately, or you use the method run a VI?

    If you use the method run a VI, check out error and see if you get an error.

    If you are running separately, make sure that this area of the code actually runs (from your description, it looks that BT is).

    If all screws are supposed to be in the app, I would say that, given the static references for them and having a node property to one of the controls in each VI you want to display in the secondary, which will ensure the that LV will not remove its FP when you build the exe. Looks like this is your case, since you say that you see the FPS.

    If the screws are not in the application (that is, you run live recorded separately), you will need to ensure that they have all the dependencies that they need, because it is possible that they you are missing the vi.lib screws or your own screws not built in the app (since there was no static reference to them). The easiest thing is to build a distribution for each other while giving it a name space. You can do this by using the OpenG constructor, although I've never needed to. The main problem with this is that it will explode the size of the code, because each VI will need a copy of the common stuff.

  • BlackBerry smartphones HELP! contacts not found, after importing SIM but names appear when you call...

    I JUST got my blackberry and am so confused.  There is so much to learn... but first, I need to know how and where my contacts because they don't show in my address book.  When I type in the actual call numbers and the press, the name of the contact but when I try and text someone, there is no name in my address book to send text to!

    Please HELP as soon as possible.  I consider myself very good w / technology, but I'm having difficulties with this.

    Thank you!

    So when you go into the address book, display the menu, select SIM Phone Book. All the names are actually after it is loaded. If so try to display the menu and select copy all to the address book. If you have already done this the and address book is displayed check empty and make sure that no filter is enabled. In the address book displays the menu and select filters and make sure nothing is checked

  • Apex question 5.0 when you call the modal page

    Hello world

    I started work with apex 5.0 and I had a problem when I call a modal page; I have an interactive relationship with this query:

    WITH expert LIKE)

    Select user_id usr, LISTAGG(expert_designation,':') WITHIN GROUP (ORDER BY user_id) wording

    of t_utilisateur, t_expertise, table (xmlsequence (xmltype ('< a > < b >' | replace (user_expert_id, ':', '< /b > < b >') |.extract('/*/*') "< /b > < / a >"))) x

    where extractvalue (value (x), ' / b') = expert_id

    Group of user_id

    )

    Select USER_ID,

    USER_PASSWORD,

    USER_TUSER_ID,

    USER_NOM,

    USER_PRENOM,

    USER_DATE_NAISS,

    USER_DATE_RECRUT,

    USER_DATE_DEPART,

    USER_FONCT_ID,

    Libelle,

    USER_MGR_ID,

    USER_DEPT_ID,

    sys. DBMS_LOB. GetLength (USER_CV_FILE) CV,

    sys. DBMS_LOB. GetLength (USER_CV_CNFCPP_FILE) as CV_CNFCPP,

    ' < a class = "T-t-button - hot" href = "javascript:ajoutCertification('||)". USER_ID |') ; ' > Add < /a > '

    T_UTILISATEUR, expert of t

    where T_UTILISATEUR.user_id = t.usr;


    ajoutCertification() is a javascript function that calls the modal page and pass as a parameter the user id, the body of this function is:


    function ajoutCertification (user_id) {}

    document. Location.href ='f? p = & APP_ID.:19: & SESSION. : & DEBUG. : 19:P19_USCER_USER_ID: "+ user_id +":'

    }

    When I click on the button in the interactive report to call the modal page, I got this error message:

    102 page 19 application dialog box cannot be made successfully. Make sure that the page model used on page 19 is of type template

    'Page of dialogue', with appropriate initialization dialog JavaScript, the dialog box is closed and the dialog cancels code defined.

    any ideas on this problem and I thank you for your answers

    Hello

    See the Notes button which I created declaratively and it works very well.

    I would like to know if you have any questions now

    -Sunil Bhatia

Maybe you are looking for

  • Bad language

    I have the UK edition of Thunderbird 24.4.0 When I saw an email or open in a new widow, in the header section where it shows who is the email, it says ' a: "instead of"To"." I think it's by mistake in German instead of English. Is there a language co

  • Servo motor RC directly from sbRIO e/s digital

    Hello I would use a Committee sbRIO to fly a RC servo. A RC servo control is usually reading a signal modulated TTL level pulse width. Calendar will be no problem in using a sbRIO, for the FPGA can manage that. But I am concerned about the level of o

  • Linksys EA6500

    Today I upgraded my router WRT160N at an EA6500 I thought that this would solve my connectivity with some issues devices on my home network. My router (EA6500) is the wire connected to a modem and broadband wireless to my devices via my PC. The devic

  • Cannot download Windows 8.1 update due to unrecognized BIOS version

    Hello I have a SVD13217PAB - aka - Sony Duo 13... I'm trying to download the 8.1 windows update of windows store but I am facing the following problems in chronological order: (1) after the median point in the update download long journey, the comput

  • Blue screen - locale 1033 - BCCode d1

    Hello Out of nowhere I just had a blue screen of death!  I have read a few other threads here and think I understand that I am able to get an analysis of the dump file that would help me to know what went wrong and what (s), maybe I need to update.