SEO Oracle Forms program units from a library

Hello
IM using Oracle Forms 10.1.2.0.2. I stated a procedure in several forms that runs a query and then enables or disables certain elements according to the number of occurrences of the query. The procedure is always the same and it is something like this:

PROCEDURE QUERY (prBlock IN VARCHAR2, prQuery IN VARCHAR2) IS
BEGIN

SET_BLOCK_PROPERTY (prBlock, ONETIME_WHERE, prQuery);
GO_BLOCK (prBlock);
EXECUTE_QUERY();

ENABLE_ITEMS (GET_BLOCK_PROPERTY (prBlock, QUERY_HITS) > 0, prBlock);
REQUEST TO END;

Problem is that I want to add this procedure in a library, but I can't find a way to call ENABLE_ITEMS so that each shape activates / deactivates their items appropriate. Is it possible to call a procedure declared in a unit of program forms in a library?

Thank you.

Try this

create an ENABLE_ITEMS() with the same parameters of the library, your code can be

Start
null;
end;
the procedure should be exactly in the parameters and types that each of them to each shape

you compile the library
then attach to the form

When the library call a procedure forms program units have preference and turn the shape program unit and the ENABLE_ITEMS() of the library is never called

Tags: Oracle Development

Similar Questions

  • Sometimes my forms saved disappear from my library. Why? Is it possible to recover?

    A few times I created forms, named and operated to save, then the app goes back in my opinion. of library and form is not there. They are gone forever, or can I recover any other way?

    Logan, we have not seen that happen before.  You can check that the forms are not saved to another library?  (In the Gallery of the form, press the menu at the top of the screen option.  This will show a menu of the libraries you CC, you can select the libraries or create new ones from here.  Unless you have created several libraries, you should see a library there.  If you have mutiple libraries, type on each to see if your forms have been registered in this folder.)

  • Pd0-ppu017 source of program unit must define a body of subprogram or package

    Hello
    IAM new in oracle l and to try to teach myself
    My problem is when I compile all the functions in the forms program units,
    received the following error message:
    Pd0-ppu017 source of program unit must define a body of subprogramme or packaging.
    for example, this feature ready that I just copied, pasted

    CREATE or REPLACE FUNCTION TestTrig_body() RETURNS TRIGGER as $$
    DECLARE
    v_TempRec insert_table % ROWTYPE;
    BEGIN
    INSERT INTO report_table (num_col, old_val, new_val)
    VALUES (NEW.num_col, OLD.char_col, NEW.char_col);
    BACK AGAIN;
    END;
    What is the reason why please?
    Windows OS
    Database Oracle 10 g
    Oracle 6i developer
    concerning

    VDH,
    It seems that you mix sytax. The syntax used in a database trigger (for example, before inserting, after insertion, etc.) is specific to database triggers. Referring to: NEW and: OLD is specific to triggers in database and cannot be used as you use them, unless you have the data names NEW and OLD blocks. Furthermore, when you refer to an element in a block, you must precede the name of block or the element with a colon ': '. Also, as aweiden pointed out, you define your type of data returned as a "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, to name a few. From the looks of your code, your function simply returns a value to indicate that the INSERT succeeded. Therefore, you can 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;
    

    In addition, there is a particular reason that you insert manually a recording versus leaving Oracle Forms to handle this for you?

    I hope this helps.
    Craig...

    -If my answer or the answer of another useful answers your question please note the response accordingly. Thank you!

  • Did someone from Oracle Forms to APEX

    Curious of APEX and if anyone out there has successfully migrated to oracle forms apex?

    Thank you
    Jim

    To answer your question from forms to APEX vs go to Java:

    Forms and APEX use PL/SQL as underlying coding language.
    This means a very small learning curve for developers of forms, where to spend in Java is a learning curve that is massive if you do not already have the skills.

    Code reuse must also compare.
    The APEX forms conversion utilities produce pages of the APEX forms-based and can work well for you.
    The APEX team say utilities give you an advance on the conversion, but additional work is needed.
    Similar products for the forms to Java applications on the market.

    My point of view on such tools is your duty generally better rewrite the application from scratch.
    Your use of a different technology with different requirements of the user interface and is also interesting update to use the features available today.
    Of course, this can be cost-prohibitive.

    What features of the user interface, you can do much more in APEX or Java forms because you have much more control over the output.
    If you wanted to match the function for the feature with the shapes, you may need to do a little extra work.
    APEX 4 presents the Plugins, allowing you to develop your own custom components if necessary.

    Ultimately, the question on migrating to Java or APEX boils down to the strategic direction for your company and your developers skills.

    For me the forms to APEX was extremely easy, APEX felt immediately familiar.

    Concerning

    Mark

    Demo: http://apex.oracle.com/pls/otn/f?p=200801 |
    blog: http://oracleinsights.blogspot.com.
    Book: https://www.packtpub.com/oracle-application-express-4-0-with-ext-js/book

  • Unable to connect to the database from Oracle Forms server

    Hello

    I installed Oracle Forms on top of Weblogic server. When I try to connect to an Oracle Forms home by TNS naming database, it returns error "ORA-12504". It works fine when I use EZConnect.

    D:\Oracle\Middleware\FRHome\BIN >. \sqlplus myuser/mypass@auhdb2

    SQL * more: version 11.1.0.7.0 - Production on Sun Sep 28 10:28:34 2014

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

    ERROR:

    ORA-12504: TNS:listener did not have the SERVICE_NAME in CONNECT_DATA

    D:\Oracle\Middleware\FRHome\BIN > @//auhdb2/auhdb2 mypass/myuser mypasssqlplus

    SQL * more: version 11.1.0.7.0 - Production on Sun Sep 28 10:28:55 2014

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

    Connected to:

    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

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

    SQL >

    Here are the specifications of the environment:

    Server operating system: Windows 2008 R2 64-bit EA

    WebLogic: Weblogic Version 10.3.6

    Forms and reports: 11.1.2.2

    Database, I am trying to connect to: Oracle Database 11 g Enterprise Edition Release 11.2.0.1.0 on Windows 2003 Server

    Tnsnames configuration in D:\Oracle\Middleware\FRHome\network\admin:

    AUHDB2 =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = auhdb2) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = auhdb2)

    )

    )

    Thanks in advance.

    I want to update this post because I understood what was the matter.

    The TNSNAMES file. ORA file must be created in ORACLE_INSTANCE/config, not in %ORACLE_HOME%\FRHome\network\admin

    It was interesting for me!

  • Oracle forms 11g can be deployed on the WebSphere from IBM server?

    I found the following paragraph regarding the Middleware components that are supported on IBM WebSphere, but this list does not specifically mention the Oracle Forms or Oracle reports.  Does anyone know if Oracle Forms and reports works OK on the IBM WebSphere server?   Thank you!

    You can configure the following Oracle Fusion Middleware components on the servers of third-party application support:

    • Oracle SOA Suite
    • Oracle WebCenter Portal
    • Oracle WebCenter content
    • Oracle Data Integrator
    • Oracle Business Intelligence
    • Oracle Application Development Framework (Oracle ADF)
    • Oracle Application Developer Runtime

    For this release of Oracle Fusion Middleware 11g, Oracle supports only IBM WebSphere Application Server as an application server third-party for these products to Oracle Fusion Middleware.

    Oracle Forms/Reports 11 is not supported with WebSphere.  Its installation requires the deployment in Oracle WLS 10.3.x.

  • Switch from Oracle Forms to ADF - bandwidth

    Hello, to a project that I am, we are to modernize Oracle Forms (11g on the web) to ADF Jdeveloper 11. XXX - we are looking at keeping the same server or to go to a new server with more basic, but which would increase our license costs.

    The question I would like to know is if ADF requires a faster server get the same service. I ask this question because I noticed that it takes longer to open ADF created forms etc. with Oracle Forms.

    Any suggestions? Stories of misfortune?

    Thank you
    Stuart

    Hello

    I migrate an application Forms FAD, and a conclusion: we need more memory on your servers. Just a little, but you know Oracle ADF consume more memory than FORMS, because it is full JAVA.
    You can contact Oracle support for more information.

    Paul

  • How to post several lines in oracle FORM

    Hello

    I created a custom form that has a header block and a block of retail. the retail block can have multiple lines. I have a requirement that lines (multi-line) block detail data will be validated during the recording of the record. Please indicate how we can do?

    Please note that the data are not saved and yet, it will be validated during registration or any click of a button.

    Please notify. It is urgent.

    Thank you

    Pirre

    Make the echo of Christian question... What do you mean by "validating"?  You have not yet defined what it means in your scenario!

    Is your retail block a block of the base table, or a control block?  Rather than the trigger key - Commit, you could use the triggers we insert or we--update since these will be triggered for each line that oracle Forms will insert or update.  If you want to keep your validation in the trigger key code - Commit, you will need to loop through all the rows in your detail block and validate each line manually.  If the validation logic is the same for inserts and updates - you can put this logic in a unit of program (procedure) and then call this procedure in the Insert and update triggers on.

    What about using the trigger when-validate-Record?  This trigger fires as you navigate from one line to the other, but it will save a loop block (if you continue to use the "enter" key).

    Craig...

  • Oracle form functions and procedures in the APEX, how?

    I'm working to recreate in the APEX, already existing read only forms in Oracle Forms. Report features interactive APEX among other things, in fact worth as well as to target a different audience than utilizies versions of Oracle Form. Versions of Oracle Forms use a lot of pre and post query triggers, PLSQL functions.

    In Oracle Forms that places, these functions can be found in the "Units of program" section of the form. A feature typical of this kind, based on a particular Mission ID route, collecting names of regular passengers, is shaped with a comma and a space after each of them, in a single string that is returned and displayed the list of passengers of a line.

    I have all of this written code so I can move most of the main request of the Oracle form in an interactive report. These functions and triggers called in the form of the "Units of program" section of the Oracle form rather than stored in the database schema in a package, where they would go inside the APEX? Can I create a 'shortcut' in the APEX and call it from the interactive report "Source Région"? I can create the PLSQL function at the level of the region of the interactive report or page level? Or, my best bet creates a package that is stored in the database, all these functions and/or proecedures I might need the original form of Oracle?

    Some advice would be greatly appreciated.

    RLBickham wrote:
    I don't think I've been pretty clear in the description of the specific thing I want to do, simply, it does not reach the level of forms of conversion of the APEX. It is basically a problem of PLSQL function.

    I have an interactive report which is currently 90 percent of what I want however, each line, which represents a Mission may have several feet. Each arm has two places or ICAO codes attached to it. Based on the number of Mission, I want to loop through the array of leg, collect all the codes of ICAO for this Mission, put them together in 1 variable separated by a coma and add this variable to display the columns in this interactive report as the last column.

    In Oracle Forms, I have a function registered in the database, which is called in the main query. Maybe I ask a question that does not need to be asked, but anyway my question is can I put this function currently in the database somewhere within the interactive report and somehow reference it via Http, or should I just stick with set of functions and procedures in the packages stored in the database and called the conventional way?

    You could switch the function to the database and call it from the report query, but it sounds as if it were superfluous. In the report query using any form of Re: 4. How can I convert rows to columns? is appropriate for your version of the (unspecified) database.

    -----

    When you have a problem, you will get an answer faster, more efficient including information as much information as possible from the outset. This should include:

  • Full version of APEX
  • Complete operating system DB, version, edition, host
  • Architecture of Web server (EPG, SST or APEX listener/host operating system)
  • Browser (s) and version (s) used
  • Theme
  • Model (s)

  • Region/section type (s) (particularly as to distinguish if a 'report' is a standard report, an interactive report, or indeed a 'update report' (i.e. a tabular presentation))

    With APEX, we also had the chance to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproduce things is the best way to solve most of the questions, particularly those relating to the layout and Visual formatting. If you expect a detailed response it is appropriate that you take on an important part of the effort by getting as much as possible with an example of the problem on apex.oracle.com before asking for help on specific issues, then we can see firsthand.

  • Problem in importing JavaClass in oracle forms

    Hi gurus,
    I have

    I use

    Forms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
         With the Partitioning, OLAP and Data Mining options
    Oracle Toolkit Version 10.1.2.0.2 (Production)
    PL/SQL Version 10.1.0.4.2 (Production)
    I try to import the java class in the form designer. I am doing this for the first time.
    for this, I did...
    I made a simple class of jDeveloper for practice with the simple output line
    public class getSystem {
     
         public String var ="thistext";
        
        /**
         * @param args the command line arguments
         */
        public String get_text() {
    
         return this.var;
    }
        
        public static void main(String[] args) {
           System.out.println("this is test");
        }
    }
    Then, I made this file as SAM. JAR (using the deployment method)
    set the path of the directory of this SAM. Forms_builder_path JAR in regedit,
    then import this class in the form Builder using program > import java class

    have the following code in program units
    PACKAGE getSystem /* getSystem */ IS
    
      -- 
      -- DO NOT EDIT THIS FILE - it is machine generated!
      -- 
    
    
      -- Constructor for signature ()V
      FUNCTION new RETURN ORA_JAVA.JOBJECT;
    
      -- Method: main ([Ljava/lang/String;)V
      PROCEDURE main(
        a0    ORA_JAVA.JARRAY);
    
      -- Method: get_text ()Ljava/lang/String;
      FUNCTION get_text(
        obj   ORA_JAVA.JOBJECT) RETURN VARCHAR2;
    
    END;
    -----------------------------------------------------------------------
    PACKAGE BODY getSystem IS
    
      -- 
      -- DO NOT EDIT THIS FILE - it is machine generated!
      -- 
    
      args   JNI.ARGLIST;
    
      -- Constructor for signature ()V
      FUNCTION new RETURN ORA_JAVA.JOBJECT IS
      BEGIN
        args := NULL;
        RETURN (JNI.NEW_OBJECT('getSystem', '()V', args));
      END;
    
      -- Method: main ([Ljava/lang/String;)V
      PROCEDURE main(
        a0    ORA_JAVA.JARRAY) IS
      BEGIN
        args := JNI.CREATE_ARG_LIST(1);
        JNI.ADD_OBJECT_ARG(args, a0, '[Ljava/lang/String;');
        JNI.CALL_VOID_METHOD(TRUE, NULL, 'getSystem', 'main', '([Ljava/lang/String;)V', args); 
      END;
    
      -- Method: get_text ()Ljava/lang/String;
      FUNCTION get_text(
        obj   ORA_JAVA.JOBJECT) RETURN VARCHAR2 IS
      BEGIN
        args := NULL;
        RETURN JNI.CALL_STRING_METHOD(FALSE, obj, 'getSystem', 'get_text', '()Ljava/lang/String;', args); 
      END;
    
    
    BEGIN
      NULL;
    END;
    ----------------------------------------
    I made a simple form with one button, the shutter button when button pressed, I wrote this code
    declare
           Jvar ORA_JAVA.JOBJECT;
           Fvar varchar2(100);
           ex varchar2(5000);
           javaException ORA_JAVA.JOBJECT;
    begin
           Jvar := getsystem.new();
           Fvar := getsystem.get_text(Jvar);
           message('this is outcomes from java'||Fvar);
    EXCEPTION
           WHEN ORA_JAVA.EXCEPTION_THROWN THEN
             message('Java Exception');
           WHEN others THEN
             message(sqlerrm);
       END;
    ---------------------------

    It shows me message 'java exception', which means that something is wrong...
    When I used this code from the form builder help
     EXCEPTION
           WHEN ORA_JAVA.EXCEPTION_THROWN THEN
             javaException := ORA_JAVA.LAST_EXCEPTION;
       
             -- Print out the Exception by using the toString()
                -- Method of the exception Object
             message(Exception_.toString(javaException));
          -- and clean up
          OR
    to catch the exception, it shows toString should be reported...



    Once I know how to get the value of the java methods on the forms I could countinue my practices using java please guide me on the forms

    Thank you

    When you import a java class using the java importer, you have an integration SERVER side of your java code. It's not a java bean. So, you must include your jar-no file in the formsweb.cfg, put it in the classpath setting in your ENV file.

  • Called program unit is not found

    We are facing a problem of development, which, while it is not preventing us from working, but it is seriously slow our progress. It goes something like this...

    We have a ColdFusion to an Oracle PACKAGE, 'package A' interface ' Package has "called"package B"and"plan B"called"C package ". We are working actively on the "C package", the last of the string and then by testing these changes to the ColdFusion interface.

    Whenever we run a CREATE or REPLACE on C 'package (we tried the two compilation as the BODY, and the SPECIFICATION and BODY), we get the following ColdFusion error when we test from the interface:
    ORA-06508  PL/SQL: Could not find the program unit being called
    If we wait a bit, everything starts working again. Note that while we wait, "Plan C" is not be recompiled. While it works fine. Our best guess is that there is something that past due the connection pooling of the processes in place. Maybe... If you are lucky enough to lock onto a new connection, the error does not appear? But, if you connect to a session which was present at 'C 'package has been recompiled, you will then get the ORA-06508? These connections use a JDBC driver.

    I guess that I expected to get the error ORA-04061 ("current state of the package has been abandoned"), and which is more rarely than the ORA-06508, but the "could not find program unit" coming is just to stop our efforts until everything starts to work again.

    I found some suggestions online (http://www.orafaq.com/forum/t/14555/2/) who claim that the SHARED POOL must be rinsed and that will help with this error, but I'm not sure that I have to wear an atomic bomb to a fight. In addition, these PACKAGES are not huge, so I'm not sure that we will meet the limits of memory is is concentrated on the other posts:

    package A: 1533 lines
    package B: 1015 lines
    c packaging lines: 1842

    Anyone has a suggestion for us to follow-up on? As I said, we're not dead in the water, but it becomes quite frustrating.

    Thank you
    -= Chuck

    Have you tried to compile the procedures A & B after changing C?

    When you edit a dependent object, Oracle marks the invalid calls objects. When these objects are called, Oracle compiles and runs. Normally, this is all transparent to the user.

    However, the problem comes when your framework / library / etc. Decides to be a little too clever and try to describe the object before calling the procedure. Oracle compiles not a not valid object when describe you it, so the framework can incorrectly conclude that there is no A valid procedure when he sees that A is invalid. If blindly, he attempted to call A, on the other hand, Oracle would compile it and run might work.

    Justin

  • Console debugging Oracle forms 6i

    Hello

    where the Oracle forms 6i debug console?

    There is no 'Debug' menu, and I can't find the debug anywhere console.

    Forms 6i debugger is not the Debug Console with the form window values (for poster modules currently loaded and the item values and parameter),

    window spy (to specify the variables you want to monitor when your application debugging)...,.

    but we can get such information (in the ugliest way) in the pane Navigation Debug Forms 6i.

    We also use debugging triggers which are a general form of debugging action involving a block of PL/SQL code with a specific line within a program unit.

    See, for example. This using Forms 6i:

    Debugging triggers are particularly useful as conditional breakpoints.

    You can throw the exception of DEBUGGING. Break UP with a trigger.

    For example, the trigger for debugging below sets a conditional breakpoint on line 10 of my_proc, which will be achieved only if the my_sal local variable NUMBER exceeds 5000:


    PL/SQL > line 10 is

    + > IF Debug.Getn ('my_sal') > 5000 THEN

    + > Lift Debug.Suspend;

    + > END IF;

    Kind regards

    Zlatko

  • Oracle Forms and reports 12 c (12.2.1.0) Installation

    Hello

    I had downloaded a file of

    Oracle Forms and reports 12 c (12.2.1.0)

    Published on 23 October 2015

    http://www.Oracle.com/technetwork/developer-tools/forms/downloads/index.html .

    Now, I am trying to install, but its not install on the computer. can guide you how to install it.

    Sandy

    Two things:

    1. you didn't did not read carefully my last update.  I said that you need to install JDK 8 (more precisely 8U51 or newer).  Which suggests that you installed and that he tried to use Java 7 with that statement that you answered:

    C:\Program Files\Java\jdk1.7.0_79\bin>java-jar fmw_12.2.1.0.0_infrastructure.jar

    You must UNINSTALL 7U79 (which you cited above) and install the last v8, which is 8U66.

    http://www.Oracle.com/technetwork/Java/javase/downloads/index-JSP-138363.html

    2. you have not share of details necessary to understand what could happen.  For example:

    • On what platform and the version you install?
    • Have you reviewed the matrix of product Certification to ensure that this platform is certified for use?
    • Is your Windows user, a member of the Windows Administrators group?
    • The machine has at least 6 GB of RAM?
    • Is the installer staged locally or are access you it from a network share?
    • Did you review the Setup logs?  If this is not the case, do, as they will probably tell you what is happening.  They are located in:

      C:\Program Files\Oracle\Inventory\logs

    I highly recommend that go you through the documentation (Setup Guide, Sys requirements, etc.) before you install or use the product:

    http://docs.Oracle.com/middleware/1221/formsandreports/index.html

  • 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.

  • 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.

Maybe you are looking for

  • After you delete Places.Sqlite FF starts with CPU full gel

    I found that I could just get rid of the history by removing places.sqlite NOTE: cleaning historic makes MY FF hang, then don't suggest that BUT places.SQLite has my 1000000 favorites too, but just before backup bookmarks and restore them on own plac

  • 'Stay offline' button mail does not

    Hello I use the Mac mail for multiple accounts, one of them being my professional e-mail account. Professional e-mail account can be reached via a VPN connection. Whenever I don't have my continuous VPN Mac Mail connection to ask 'Change Password Req

  • Search 1 table D work does not double

    Can anyone tell why search 1 table D function does not work as expected in the attached VI?

  • Unable to set my HP6632B supply voltage of 12 v with the hp66xxbc

    Hello: I use the IVI hp66xxbc driver to control a power supply DC HP6632B, and I get an error when I try to set the voltage of 12V.  I can adjust the tension manually on the front panel and using the option "Contact instrument" in the tool "Measure a

  • can not turn on windows update on the computer or windows update site

    I am running windows xp. tried to start bar of tasks with pc Security Center. I tried to get the updates of the automatic windows update site, but apparently if you do not have automatic updating enabled you cannot run the software on your computer