OK to install the pl/sql packages in schema APPS?

What is the schema supported in which I should create my pl/sql packages used in my data models? I'm in EBS and sown reports such as RAXINV, I converted to XML Publisher.

I have converted RAXINV works very well under APPS, but now my admin db suggested I should move "customized" packages to a seeded non - EBS schema (for example, XXABC). I have all kinds of problems to do this work.

When you create the package in another schema, use AUTHID CURRENT_USER.

Tags: Business Intelligence

Similar Questions

  • I am running Vista Ultimate 64 bit and in order to install the internet security package, I need to install SP2. Belongs to this normal windows update or do I have to download it from Microsoft?

    I am running Vista Ultimate 64 bit and in order to install the internet security package, I need to install SP2. Belongs to this normal windows update or do I have to download it from Microsoft?

    Windows Vista SP2 came out mid-2009.  You should have gotten a long time ago.

    How to obtain the latest Windows Vista service pack

  • Create the PL/SQL package in SQL Developer 4.0.0.12

    Hello

    I built a model in SQL Developer 4.0.0.12 and I want to create a PL/SQL package.

    In ODMiner 11.1.0.4 of 'Tools' > 'Create pl/sql package' I can get a script to create the package and every thing is OK.

    but in SQL Developer, I select "Deploy" from the popup menu of each node and it generates a folder containing scripts associated with each node. I don't see any relevant script for creating a package.

    How can I create a PL/SQL package in my workflow?

    Thanks for any help you can provide in this situation.

    Please see this whitepaper to find out how to build the PL/SQL package for deployment of workflow:

    Oracle Data Miner (Extension of SQL Developer 4.0)

    PL/SQL script for the deployment of workflow

    http://www.Oracle.com/technetwork/database/options/advanced-analytics/odmrcodegenwhitepaper-2042206.PDF

  • Windows xp cannot install the msi installation package. An error occurred during the installation of assemblyl HResult:0x800736FD

    I install Msi package under windows xp (msi for windows application). I get the error messages.

    Hi MohitMittal,

    1. Did you the latest changes on the computer?
    2. You are able to install other programs that use the windows service install?
    3. You have security software installed on the computer?

    Method 1

    Check and make sure that the Windows service install is running on the computer.

    (a) click on start toreduce this includes this image, click run , and then type services.msc in the dialog box and then press enter to open Services.

    (b) right click on the Windows Installer service and then click Properties.

    (c) if the box Startup type is set to Disabled, change it to Manual.

    (d) click on OK to close the Properties window.

    (e) right click on the Windows Installer service and then click Start. The service should start without errors.

    (f) click on the file menu, and then click exit.

    Problems installing and uninstalling programs on Windows computers

    http://support.Microsoft.com/kb/2438651

    Method 2

    If the previous step fails, then I suggest that you download and install the latest version of Microsoft Visual C++ on the computer, check if it helps.

    Package redistributable Microsoft Visual C++ 2010 (x 86)

    http://www.Microsoft.com/download/en/details.aspx?ID=5555

  • CAN´t install the Adobe CC package after I created it.

    It s a windows7 pro 64-bit. I have 10 others with the same configuration, and there is no problem with the installation. I tried adobe cleaner, but no result.

    I had no errors, nothing to use to find the reasons why, the installation fails.

    I have another computer, where I install the CC package whitout Acrobat pro and now I need Acrobat pro, but it won't install, and once again no errors, it stops just after 10 sec.

    It s Creative Cloud not the packaging, but the content, for example, Photoshop, illustrator and so on. I have install can´t

    The package is created. One with full programs and the other with only Adobe Acrobat. There is no problem to make the packages. It is with the license number.

    Hello

    Please contact our support team for instant help

    Contact the customer service

  • Node affinity d ' execution for the PL/SQL Packages?

    Colleagues dbas,

    We have a problem of random performance on one of our database RAC 11 GR 1 material due to waiting for IO.

    In fact, we've tracked down the problem and noticed that the sql packages are executed on the bad weather causing node 1 and were executed on node 2 with good results.

    Now the question is how we apply these pl/sql packages, that are called via batch external, must be running on node 2?

    Affinity of the proceeding came to my mind, but I have no idea whatsoever how to apply for parcels and incorporated the pl/sql code.

    Can you please give me an advice?

    Thanks for your comments!

    Best regards

    Sebastian

    You must define a service to run on node 2 with failover to node 1 and give a your batch jobs a string of connection that connects to this service:

    Add srvctl service d a s batchserv - r node2 - a node1

    and in your tnsnames.ora,.

    batchserv =

    (description =

    (address_list =

    (failover = on) (load_balance = on)

    (address = (node1...) (address = (node2...))

    )

    (connect_data = (service_name = batchserv))

    )

    I recorded several demos of this thing of the kind,

    Database Oracle 12 c and g 11 tutorials free for Administration and developers SkillBuilders

    --

    John Watson

    Oracle Certified Master s/n

  • Are constants of body of the PL/SQL Package in the shared or private area

    Based on that it is not clear to me if body Package PL/SQL constants are stored in the shared or private area.

    http://docs.Oracle.com/CD/B28359_01/server.111/b28318/memory.htm

    "PL/SQL program units and the Shared Pool

    Oracle database treats PL/SQL program units (anonymous blocks, procedures, functions, packages and triggers in database) much the same way he treats the individual SQL statements. Oracle database allocates a shared area to hold the shape analyzed, compiled a program unit. Oracle database allocates a private space to hold values specific to the session who runs the program unit, including local, global and package variables (also known as the package is instantiated) and stamps of SQL execution. If more than one user is running the same program unit, a place unique and shared is used by all users, while each user runs a separate copy of his own private SQL area containing session-specific values.

    The individual SQL statements contained in a PL/SQL program unit are processed as described in the previous sections. Despite their origins within a PL/SQL program unit, these SQL statements use a shared area to hold their analysed representations and a private space for each session, who executes the statement. »


    I am also curious to know what are the differences in fine grain in a perspective of memory and performance (multisession) for the two examples below. One is more effective?


    Example 1.

    create or replace
    package body
    application_util
    as

    c_create_metadata constant varchar2 (6000): =...

    procedure process_xxx
    (
    )
    as
    Start
    ...
    end process_xxx;

    end application_util;

    vs.

    Example 2.

    create or replace
    package body
    application_util
    as

    procedure process_xxx
    (
    )
    as

    c_create_metadata constant varchar2 (6000): =...

    Start
    ...
    end process_xxx;

    end application_util;

    881398 wrote:

    But I still have to ask because it seems still more particularly in example 1 that the constant can be attributed to the use that the actual value could be a pointer to a constant string value in a table of symbols or something related to the compilation unit. I'm always curious in a perspective of management of memory if there is a difference between the example 1 and example 2, and if one is better and why.

    The storage is real, references to this storage internal to the PL/SQL engine. And irrelevant to the PL/SQL programmer.

    This question is really a disagreement over the shape is better: example 1 or example 2. I prefer the 1 example, for readability, testability, etc., and so the question is where is the performance of the memory/differences and or is it just preference of developer.

    I agree with rp0428 - he raised a very important point that it is a problem of scope and nothing else.

    Basically is there any trade-off between using one shape on the other insofar as the performance and memory management?

    Not really. Most runtime engines release not just actual system memory when a variable is out of range. the malloc() calls are expensive. Free() calls are expensive (and are not always the result in usable free memory which can be malloc'ed again).

    Several execution engines use what is called a managed heap. A malloc is made of a new process when it is initialized. The heap memory / managed malloc'ed is adjacent. Pointer allocation of memory for this process is initially pointing to the base of the managed heap. As the process allocates / uses memory, the pointer is moved just advance in the managed heap, which indicates the HWM as such - the beginning of the 'free' memory in the heap. Allocation is sequential.

    Reset of your variable execution, or releasing your runtime object, does not reset the HWM as other objects/variables can still be used and located after this place in the bunch. In this case set him free memory by releasing / resetting the language variables does not restore the kernel memory.

    Memory management is a sophisticated process entirely processed by the engine running - and best left to the runtime engine. As you as a programmer do not explicitly control the memory management, it is not a good idea to try to write code that artificially attempt to use 'better' for the runtime engine memory management. The next version of the runtime of that aura of new features, optimizations and so on — and your interference in your code to get the "valorisation" of memory can happen just bite you not bad after an upgrade to execution.

    Regarding the performance aspect - variable initialization is dependent on scope. In order to have a global scope means a one-time initialization, whereas a private scope (created each call) is a multiple unit. If the first is a little faster than the latter.

    However, the performance differences are tiny - IMO too small to justify this as a valid consideration to spend in addition to the decision of functional design on what possibilities a variable or a constant need to have.

    SQL> create or replace package FooLib1 as
      2          procedure Exec;
      3  end;
      4  /
    
    Package created.
    
    SQL>
    SQL> create or replace package body FooLib1 as
      2          const1  constant varchar2(32767) := rpad('-',10000,'-');
      3
      4          procedure Exec is
      5                  var1    varchar2(32767);
      6          begin
      7                  var1 := const1;
      8          end;
      9  end;
     10  /
    
    Package body created.
    
    SQL>
    SQL>
    SQL> create or replace package FooLib2 as
      2          procedure Exec;
      3  end;
      4  /
    
    Package created.
    
    SQL>
    SQL> create or replace package body FooLib2 as
      2          procedure Exec is
      3                  const1  constant varchar2(32767) := rpad('-',10000,'-');
      4                  var1    varchar2(32767);
      5          begin
      6                  var1 := const1;
      7          end;
      8  end;
      9  /
    
    Package body created.
    
    SQL>
    SQL> set timing on
    SQL> exec for i in 1..100000 loop FooLib1.Exec; end loop;
    
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:00:00.28
    SQL> exec for i in 1..100000 loop FooLib2.Exec; end loop;
    
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:00:00.74
    SQL> 
    

    A second difference 0.0000046 in a single execution for FooLib.Exec between the use of package for the constant scope, against increased private. Which means that the issue of the scope is not a decision of the performance. Not when improving performance overhead is 0,0046 millisecs.

  • Cannot install the driver/software package

    HI (sorry for my English, I'm a Spanish speaker).

    I have an all in a psc 1315 and cannot install the software/driver from the site in a new 32-bit Windows 7 PC.

    I tried everything I could find in the forum and on the outside.

    I downloaded the driver from:

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?OS=4062&LC=ES&CC=ar&DLC=es&sw_lang=&product=3745...

    and it can run fine.

    When the instalation starts fine, after the license agreement, when the installation is always "system analysis", he shutdow. Close the installation without an error message. Don't just run the next step.

    So I can't install anything, can not get the HP Solution Center and other software for analysis.

    Is not the antivirus, I tried to close the shields in time, not if.

    I guess the Installer (AIO_CDB_NonNet_Full_Win_WW_130_141.exe) in the site's just failed.

    I extraxt .exe files and tried to install the Solution Center in the "setup" folder inside, don't let me do. And it has a lot of files with configurations of software I don't know what I need those.

    Can I connect the printer without the software, while adding in windows and it works for printing and browse the WIA, but in this way the "Scan" button on the HP psc 1315 do not work.

    Hello

    Still, the installation problem you are facing, in order to avoid any installation problem, please also make sure that the USB printer is disconnected, enter the control panel > devices and printers, remove any printer PSC 1310 listed and restart the PC before the installation.

    And regarding the specific error:

    Start the installation and follow the steps.

    Once reached the license agreement window, click the 2nd link above (using the Internet).

    Make sure that the two options set as No, thank you.

    Accept the license agreementt continue following the install.

    You see a difference by changing these settings?

    Kind regards

    Shlomi

  • Need to call the PL/SQL Package in the group dynamics of approval class that implements IDynamicApprovalGroup

    Hi all

    This is regarding the approval of invoice AP I need in my project where the user selects the users/people approval when creating the invoice based on logic. There may be any number of users who could be part of the approval group.

    Approval users information is stored in a table with a single Bill.

    When the user initiates invoice approval, approval of the Bill should go to all the people/users selected in the invoice.

    I created the dynamic of approval group which is the result of a java class. This java class implements IDynamicApprovalGroup. (what is the oracle Developer Guide).

    I called PL/SQL to java class package to get all the details of users of custom for the current invoice table.

    I used the DriverManager.getConnection method by hard coding (JDBC URL, Username, Pwd) connection details that works perfectly fine.

    But I don't want to hard-code the connection details because it will change in bodies SIT/UAT/PROD.

    Please ask you to guide me if there is no solution for the information of connection without hard coding it.

    Following code used to get the connection details

    try {}

    Class.forName ("oracle.jdbc.driver.OracleDriver");

    System.out.println ("= class loaded");

    }

    catch (ClassNotFoundException ex) {}

    System.out.println ("= class loading error");

    ex.printStackTrace ();

    }

    Fitting out = null;

    CallableStatement cstmt = null;

    Try

    {

    connection = DriverManager.getConnection ("jdbc:oracle:thin:@xxhostname:1521/SID", "FUSION", "*");

    Connection = GetConnection ();

    System.out.println ("= connection =" + connection);

    prepare the call

    cstmt = connection.prepareCall ("{call XX_AP_INV_DYN_APPROVAL_PKG. {GET_GROUP_PARTICIPANTS (?,?)} ») ;

    cstmt.setString (1, '12345');   ID on invoice

    Exit of the register

    cstmt.registerOutParameter (2, java.sql.Types.VARCHAR);

    Call the stored procedure

    cstmt. Execute();

    System.out.println ("= procedure being executed");

    approvalGroupMembers = cstmt.getString (2).split("#");

    System.out.println ("= output:" + cstmt.getString (2));

    }

    catch (Exception ex) {}

    ex.printStackTrace ();

    }

    Finally

    {

    Try

    {

    If (cstmt! = null)

    close the callable statement

    {

    cstmt. Close();

    cstmt = null;

    }

    System.out.println ("= stmt closed");

    }

    catch (SQLException ex)

    {

    System.out.println ("= stmt close err");

    ex.printStackTrace ();

    }

    Try

    {

    If (connection! = null)

    close the connection

    {

    Connection.Close;

    connection = null;

    }

    System.out.println ("= closed conn");

    }

    catch (SQLException ex)

    {

    System.out.println ("= Close conn err");

    ex.printStackTrace ();

    }

    }

    Thank you

    Dipak.

    HI Dembélé - you should be able to call the provider database from the java class. Documentation is here. However, you need to specify the name of the data provider that is the same in all environments. Do you know what it is? If it's not I'll take a look and get back to you.

    __

    Peter Maurer

    Relationship with the developers of Applications in fusion

    https://blogs.Oracle.com/fadevrel/

  • ORA-00902 error invalid data type when you use CAST in the PL/SQL Package

    I'm getting ORA - 00902 Datatype not valid error when you use cast in getEmpValues (see code below) method in the package I created.
    I don't know what is the cause of the error. Any help would be appreciated



    CREATE OR REPLACE PACKAGE TEST. TEST_PKG AS

    ARRAY TYPE MyTableType IS NUMBER;
    TYPE REF_CURSOR IS REF CURSOR;

    FUNCTION str2tbl (p_str IN VARCHAR2)
    RETURN myTableType;

    PROCEDURE getContactValues (p_ParameterString IN VARCHAR2, p_Cursor1 to REF_CURSOR);

    END TEST_PKG;



    CREATE OR REPLACE PACKAGE BODY TEST. TEST_PKG AS

    FUNCTION str2tbl (p_str IN VARCHAR2)
    RETURN myTableType
    AS
    l_str LONG default p_str | ',';
    l_n NUMBER;
    myTableType l_data: = myTabletype();

    BEGIN
    LOOP

    l_n: = INSTR (l_str, ",");
    WHEN the OUTPUT (nvl(l_n,0) = 0);
    l_data.extend;
    l_data (l_data.count): = ltrim (rtrim (substr(l_str,1,l_n-1)));
    l_str: = substr (l_str, l_n + 1);
    END LOOP;
    L_data return;
    END;

    /*
    p_ParameterString is a string of the form 3, 6, 8, 9'
    */

    PROCEDURE getEmpValues (p_ParameterString IN VARCHAR2, p_Cursor1 to REF_CURSOR)
    AS


    BEGIN


    OPEN FOR P_Cursor1

    SELECT *.
    FROM EMP

    WHERE EMP_ID IN (SELECT *)
    OF THE (SELECT CAST (TEST.) (TEST_PKG.str2tbl (p_ParameterString) as myTableType) double)

    );
    END getEmpValues;

    END TEST_PKG;

    ARRAY TYPE MyTableType IS NUMBER;

    This type must be created outside of the package as a SQL type if it must be used in a select statement.

  • Cannot install the update KB2754296 package

    Error tells me that the component you are trying to use is on a network unavailable resource.

    See this thread for related info > MSE Version 4.1.522.0 - September 2012

  • Problem installing the update of blackBerry Smartphones BB App World

    I have a very old BlackBerry App World build my torch.  While I wait for a Z10/Q10, I try to update.  For some reason when I update to 2.1.1.2 to 4.3.0.26 I get a Setup error.  Any suggestions on how to do it?  I don't see a way to remove the BlackBerry App World and reinstall.  Thank you.

    -Eric

    Hi ericschiff

    Welcome to the Forums of the BlackBerry Support

    What model of torch you have! If you encounter a problem with the update you can try to re - install BlackBerry World. For which first of all, go to Options > device > application > locate and remove BlackBerry World of this list.

    KB10040 : How to view or delete an installed BlackBerry smartphone applications

    After deletion to perform a battery pull reboot by removing the battery in your device is on.  After you restart your BlackBerry browser go to www.blackberry.com/appworld and download the most recent version. Perform a restart after the installation.

    Try it and tell us if you feel any problem.

  • Installation of the Microsoft SQL Server 2005 Express Edition (KB955706) code error 0x2B2F

    I am trying to install an update on a desktop HP for Microsoft SQL Server 2005 Express Edition (KB955706).  It has downloaded everything and still not settle.  It gives the error code is 0x2B2F.  I searched this error on the microsoft website and nothing came.  Any help would be appreciated.

    Hello nesbitzero,

    Thank you for using Microsoft Windows forum.

    You receive the 0x2b2f error code when you use the web sites, Windows Update or Microsoft Update to install SQL Server 2005 Service Pack 3 on a computer with MSXML6 Service Pack 2 is already installed.
     
    Follow this link for the reasons: http://support.microsoft.com/kb/970674

    You must first try and reset Windows Update components to eliminate the
    KB955706 update for SQL server.

    Follow the link for what has a fixit: http://support.microsoft.com/kb/971058

    After reset, try to install it once more to check if the problem persists.

    If this is the case, install the update mode safe

    Follow the steps below to start in safe mode with networking:

    1. reboot your computer and start pressing F8 on your keyboard. On a computer that is configured to start to multiple operating systems, you can press the F8 key when the Boot Menu appears.
    2. Select networking in Mode safe mode when the Windows Advanced Options menu is displayed and press ENTER

    In Safe Mode, download and install the stand-alone package for the Microsoft SQL Server 2005 Service Pack 3 on the site: https://www.microsoft.com/downloads/details.aspx?FamilyID=ae7387c3-348c-4faa-8ae5-949fdfbe59c4&displaylang=e

    Note: It is recommended that you temporarily disable the antivirus before installing the update.
     
    Follow the steps in the link below for "SQL Server 2005 Setup fails when MSXML Core Services 6.0 Service Pack 2 has been installed"
    http://support.Microsoft.com/kb/968749

    See: http://social.answers.microsoft.com/Forums/en-US/vistawu/thread/e78198b7-324f-4775-85bd-83ce5af4affc for the exact number.

    For more information, see: http://social.msdn.microsoft.com/Forums/en-US/category/sqlserver/

    Kind regards
    Aziz Nadeem - Microsoft Support

  • Cannot install the Vista SP2

    My sons laptop is running Vista with SP1. He has missed the deadline of 13 support, so can not get updates without installing SP2. However, SP2 will not install error States 'catastrophic failure' of the installation. I followed installation of autonomous proven in MS knowledge base article, disabled the anti-virus, etc and tried the preparation of updated tools. Readiness of update of the tools simply start looking for updates, which of course they are not because it is now unsupported. I have made several other tricks I've seen in line-same failure. Does anyone have an idea how to make to install SP2 in this situation, where updates are currently not supported? MS has created a dilemma--not support without SP2, but I can't install SP2 without updates!

    ODL3998,
    Run the following:

    Disk error checking

    System File Checker

    If they correct problems or that they are unrelated, and rerun the System Update tool and try to install the standalone SP2 package.

    You can also see this article: KB968279

    Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I have problems to install the Microsoft 2007 12 updates. They all invariably fail with the following message details: ___Error error: Code 8007006E___Any ideas on how I can fix this? ___I have Microsoft Vista.

    I have problems to install the Microsoft 2007 12 updates.  They all invariably fail with the following error message:

    Error details: Code 8007006E

    Any ideas on how I can fix this?

    I've got Microsoft Vista.

    Hi 1proudmama
    Welcome to the Microsoft Answers Forum!
    We would like to know are these updates on Office 2007

    I recommend the methods are:
    Method 1:
    Step 1:
    Uninstall the update failed, if she is found in the installed updates, follow these steps
    i. open Control Panel from the start menu
    II. Select programs and features
    III. click Show on the installed update.
    IV. uninstall the update failed
        
    Step 2:
    Reset the component of windows update and then try to install updates, check if the problem is resolved. It has Fix tool link below will help you with the same
    How to reset the Windows Update components: http://support.microsoft.com/kb/971058

    Step 3:
    Install the stand-alone package containing the updates. You can download the stand-alone version of the link with the number of KB below: http://www.microsoft.com/downloads and check if the problem is resolved.

    Method 2:
    Run the SFC (System File Checker) on the computer scan to fix system errors to the file on the computer.
    To run a SFC scan, follow these steps:
    Open an elevated command prompt. To do this,
    i. Click Start,
    II. click principally made programs,
    III. click Accessories, right-click command prompt,
    IV. and then click Run as administrator.
    v. If you are prompted for an administrator password or a confirmation, type the password, or click on allow or continue.
    VI. at the command prompt, type sfc/scannow and press ENTER. Once the scan is complete, restart the computer so that the changes take effect

    Below link for reference: http://support.microsoft.com/kb/936212

    Thank you, and in what concerns:
    Samhrutha G S - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for