Error in Oracle API  HZ_CUST_ACCOUNT_V2PUB.create_cust_account

Error in Oracle API HZ_CUST_ACCOUNT_V2PUB.create_cust_account
Column account_number must have a value.
why?

What is the apps version ?
Have you gone through these notes:
Using TCA API's Including Examples [ID 201243.1]
How To Create A Customer Via TCA API [ID 159393.1]

Similar Messages

  • Error 109 : MaxL api instance is not Active  after installing excel add-in

    Hello Gurus
    I am getting error Error 109 : MaxL api instance is not Active while expanding essbase server in EAS console.
    I am using EPM 11.1.2.1 on Windows server 2008 x64 with MS Office 2007 x32
    EAS was working properly before installing Excel Add-in,
    What i did is
    1. I first installed excel add-in and when I clicked on connect Log-in screen didn't appears.
    2. Then I reinstalled excel add-in and it started working properly and EAS was also working fine.
    3. But after restarting VM, EAS is not working, it is giving error like "Error 109 : MaxL api instance is not Active"
    4. I also searched on OTN for EAS issue and checked following environment variables
    ESSBASEPATH : C:\Oracle\Middleware\EPMSystem11R1\products\ExcelAddin
    ESSLANG : English_UnitedStates.Latin1@Binary
    5. And also tried reinstalling EAS
    Any help will be highly appreciated.
    Thanks
    Yash
    Edited by: yash on Apr 10, 2012 8:01 PM

    Hello,
    I had the same problem, after add-in 's installation on epm 11.121
    Without solution, I was forced to uninstall all epm and reintsall.
    Is there another method to solve this problem ?
    thx

  • Error executing CIS APIs on content server

    Hi I am trying to execute the client samples that came with the CIS jarfiles. All the files are getting terminated with this error..
    oracle.stellent.ridc.protocol.ProtocolException:java.io.IOException: Input terminated before being able to read line
    the error is in the getResponseAsBinder method call.
    I am using eclipse to execute these class files...
    Plz let me know if I am missing some imp configurations etc.
    Regards
    Jo

    Hey jogeo,
    Are you getting any errors in your content server logs? Or in the Server System Output?
    I've seen a similarly vague error from the CIS api's when either my content server wasn't running, the conneciton to the content server db had timed out, or I didn't have my SocketHostAddressSecurityFilter set correctly in config.cfg.
    If you could post any errors from the two places I mentioned above we could probably narrow down the issue.
    Andy Weaver - Senior Software Consultant
    Fishbowl Solutions < http://www.fishbowlsolutions.com?WT.mc_id=L_Oracle_Consulting_amw >

  • Getting ORA-06512: at "APPS.FND_MSG_PUB", line 279 error in Oracle Sourcing

    Hi,
    We have recently applied Sourcing Rollup 2 J patch in our instance. After this, when the users change their timezone, the system behaves weirdly. The Server timezone and Client timezone are set to Dubai timezone (GMT+4) at site level. If the user is using this timezone, there is no issues. But when the user changes the timezone to something else (anything > GMT+4 or anything < GMT+4), he cannot publish auctions. He is getting error like:
    oracle.apps.fnd.framework.OAException: java.sql.SQLException: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "APPS.FND_MSG_PUB", line 279
    ORA-06512: at "APPS.HZ_TIMEZONE_PUB", line 877
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "APPS.FND_MSG_PUB", line 279
    ORA-06512: at "APPS.HZ_TIMEZONE_PUB", line 1088
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "APPS.PON_OEX_TIMEZONE_PKG", line 41
    ORA-06512: at "APPS.PON_AUCTION_PKG", line 1052
    ORA-06512: at line 1
    We feel like this is some issues with the system. Some times, this works, sometimes different kind of errors are seen. When user is trying to log in, another error like the following is seen:
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: SQL_PLSQL_ERROR. Tokens: ROUTINE = AppsConnectionManager.appsInitialize(int,int,int,int,Connection):-1,-1,-1,0,oracle.jdbc.driver.OracleConnection@192a848; REASON = java.sql.SQLException: ORA-20001: Oracle error -6502: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    has been detected in FND_GLOBAL.INITIALIZE.
    ORA-06512: at "APPS.APP_EXCEPTION", line 70
    ORA-06512: at "APPS.FND_GLOBAL", line 64
    ORA-06512: at "APPS.FND_GLOBAL", line 1028
    ORA-06512: at "APPS.FND_GLOBAL", line 541
    ORA-06512: at line 1
    When we bounced server, this error went away. But the first error still persists. What could be the reason for this?
    Regards,
    Arun

    I traced through the packages. Here is the result:
    1. PON_AUCTION_PKG line 1052;
    x_newstarttime := PON_OEX_TIMEZONE_PKG.CONVERT_TIME(p_open_bidding_date,x_oex_timezone,x_timezone);
    'x_oex_timezone' is the 'Server Timezone' profile value at site level. 'x_timezone' is the user's timezone. If the user's timezone is not a valid zone (checking done in PON_OEX_TIMEZONE_PKG.VALID_ZONE procedure), this param is assigned the value of 'x_oex_timezone'.
    2. The PON_OEX_TIMEZONE_PKG.CONVERT_TIME procedure calls the procedure HZ_TIMEZONE_PUB.Get_Time(), and I hope here the issue starts. The OUT parameters to this procedure are toDate, status, msg_count and msg_data. Note that here the msg_data is defined as VARCHAR2(100).
    3. Within the procedure HZ_TIMEZONE_PUB.Get_Time(), the error is raised from line 877. This is a WHEN OTHERS case of this procedure. This is from the API ;
    FND_MSG_PUB.Count_And_Get(
    p_encoded => FND_API.G_FALSE,
    p_count => x_msg_count,
    p_data => x_msg_data);
    4. Next error from FND_MSG_PUB is from line 279. This is within the procedure FND_MSG_PUB.Count_And_Get, when executing the following statement:
    p_data := Get ( p_msg_index => G_FIRST ,
    p_encoded => p_encoded );
    5. The 'GET' procedure, sets the value from global table 'G_msg_tbl( G_msg_index ).encoded_message ' to the p_data variable, and here is a potential slippage. The global variable can hold a value of upto 2000 characters. But the p_data is originally defined to be of size VARCHAR2(100). I think this can cause the issue. I am not sure what is the message getting assigned to the global variable here.
    Could this be the problem? Inside the code, some assignments to fnd_mesage are done. But some of those messages are not present in our database (fnd_new_messages). Any clue on this would be greatly helpful.
    Thanks,
    Arun

  • ORA-29701과 ORA-29702 ERROR의 원인과 조치방법(OGMS관련 ORACLE ERROR)

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-13
    SCOPE
    Standard Edition 에서는 Real Application Clusters 기능이 10g(10.1.0) 이상 부터 지원이 됩니다.
    ORA-29701과 ORA-29702 ERROR의 원인과 조치 방법(OGMS 관련 Oracle ERROR)
    ======================================================================
    Explanation
    ORA-29701과 ORA-29702는 OGMS(Oracle Group Membership Services)에 문제가
    발생했을 때 Oracle에서 로그를 남기는 에러이다.
    1. OGMS란?
    OPS 운영 환경에서 노드 간의 통신을 위해 IDLM(Integrated Distributed Lock Manager)과
    다른 오라클 컴포넌트들은 OS의 Cluster Manager와 통신을 해야 한다.
    이 때에 인터페이스를 제공하여 주는 것이 바로 OGMS이다.
    GMS는 일련의 Application Programming Interface (API)들로 구성되어 있으며,
    OPS 컴포넌트들은 이 API들을 통해 Cluster Manager와 통신을 하게 된다.
    GMS는 클러스터의 운영 상태를 모니터하고, 클러스터와의 instance connection을
    관장하며, 메시지를 전달하는 역할을 담당한다.
    platform에 따라 GMS는 ogmsctl 프로그램을 사용해서 따로 기동을 시켜 주어야만
    하거나, opsctl 프로그램을 사용할 때 자동적으로 기동된다.
    2. Error 분석
    1) ORA-29701
    a. 오라클에서 GMS에 접속할 수 없을 경우 발생한다.
    이것은 Oracle이 startup 될 때, GMS가 실행되지 않고 있을 때 발생한다. 이와
    같은 경우에는 'ogmsctl status' 명령을 상용하여 GMS가 startup되었는지 확인
    하여야 한다.
    b. lmon( GMS client )이 communication file의 위치를 찾지 못할 경우 발생한다.
    기본적으로 사용하는 디렉토리인 /tmp/.ogms를 사용하지 않을 경우 GMS home이
    지정되어야 한다. OGMS home directory를 별도로 지정하여 사용할 경우에는
    init.ora 파라미터 파일에서 ogms_home 파라미터 값을 지정해 주어야 한다.
    c. 기타 발생 원인은 GMS에 틀린 internal function(skgxn)이 사용되거나
    GMS가 local request에 대한 서비스를 할 수 없거나 CM subsystem에 문제가 있을
    경우 등등이 있다.
    2) ORA-29702
    GMS 서비스에 예상치 못한 에러가 발생했을 경우 로그에 남게 된다. GMS가 실행
    중인지를 확인해 보고, 내부 에러로 인해 GMS가 스스로 shutdown 되었다면
    daemon file에 기록된 트레이스 정보를 살펴보아야 한다.
    Reference Documents
    none

  • Replicating a standard Oracle API giving PLS-00306: wrong number or types

    I have replicated standard Oracle API to customize it and call it from an external procedure.
    When I am calling the customized API, it is giving me '[Error] PLS-00306 (3484: 16): PLS-00306: wrong number or types of arguments in call to 'PICK_RELEASE'' error.
    I am pretty sure that I am passing proper parameter values to the customized API call.
    Is there any thing I am missing here or is there any restriction on package which is not letting me use the standard API?
    Thank you,

    996060 wrote:
    I have replicated standard Oracle API to customize it and call it from an external procedure.
    When I am calling the customized API, it is giving me '[Error] PLS-00306 (3484: 16): PLS-00306: wrong number or types of arguments in call to 'PICK_RELEASE'' error.
    I am pretty sure that I am passing proper parameter values to the customized API call.
    Is there any thing I am missing here or is there any restriction on package which is not letting me use the standard API?
    Thank you,Have you reviewed the suggested solutions in (OERR: PLS-306 wrong number or types of arguments in call to '%s' [ID 27323.1])?
    Thanks,
    Hussein

  • Oracle API from SQR

    Hi
    I am trying to call an Oracle API from an SQR report running in PeopleSoft 8.1.
    The code I am using is shown below:
    begin-sql
    declare
          LN_PERSON_ID NUMBER;;
          LN_ASSIGNMENT_ID  NUMBER;;
          LN_PER_OBJECT_VERSION_NUMBER NUMBER(9);;
          LN_ASG_OBJECT_VERSION_NUMBER NUMBER(9);;
          LD_PER_EFFECTIVE_START_DATE  DATE;;
          LD_PER_EFFECTIVE_END_DATE DATE;;
          LV_FULL_NAME VARCHAR(80);;
          LN_PER_COMMENT_ID NUMBER;;
          LN_ASSIGNMENT_SEQUENCE NUMBER;;
          LV_ASSIGNMENT_NUMBER VARCHAR(30);;
          LB_NAME_COMBINATION_WARNING BOOLEAN;;
          LB_ASSIGN_PAYROLL_WARNING BOOLEAN;;
          LB_ORIG_HIRE_WARNING BOOLEAN;;
          LN_EMPLID VARCHAR(6);;
             lv_err_code VARCHAR(1000);;
              lv_err_msg VARCHAR(1000);;
    begin
                 LN_EMPLID := $Emplid;;
                HR_EMPLOYEE_API.CREATE_EMPLOYEE@OPAYR(
                p_validate => FALSE           
                ,p_hire_date                    => to_date($Effdt, 'dd-mon-yyyy')
                ,p_business_group_id            => 83
                ,p_last_name                    => $Last-Name
                ,p_sex                          => $Sex
                ,P_FIRST_NAME                   => $First_Name
                ,P_MARITAL_STATUS               => $Mar-Status
                ,P_MIDDLE_NAMES                 => $Middle-Name
                ,P_NATIONAL_IDENTIFIER          => $National-Id 
                ,P_TITLE                        => $Prefix  
                ,P_PER_INFORMATION1             => $Tax_Reference-No 
                ,P_PER_INFORMATION2             => $Passport-Number
                ,P_PER_INFORMATION4             => $Ethnic-Group
                ,P_ORIGINAL_DATE_OF_HIRE        => to_date($Effdt, 'dd-mon-yyyy')
                ,p_date_of_birth                => to_date($Birthdate, 'dd-mon-yyyy')
                ,p_attribute1                   => $Nc-Legacy-Company
                ,p_person_type_id               => 1145
    !---OUTPUTS           
                ,p_employee_number              =>   LN_EMPLID
                ,p_person_id                    => LN_PERSON_ID
                ,p_assignment_id                => LN_ASSIGNMENT_ID
                ,p_per_object_version_number    => LN_PER_OBJECT_VERSION_NUMBER
                ,p_asg_object_version_number    => LN_ASG_OBJECT_VERSION_NUMBER
                ,p_per_effective_start_date     => LD_PER_EFFECTIVE_START_DATE
                ,p_per_effective_end_date       => LD_PER_EFFECTIVE_END_DATE
                ,p_full_name                    => LV_FULL_NAME 
                ,p_per_comment_id               => LN_PER_COMMENT_ID
                ,p_assignment_sequence          => LN_ASSIGNMENT_SEQUENCE
                ,p_assignment_number            => LV_ASSIGNMENT_NUMBER
                ,p_name_combination_warning     => LB_NAME_COMBINATION_WARNING
                ,p_assign_payroll_warning       => LB_ASSIGN_PAYROLL_WARNING
    exception
        when others then
       lv_err_code := sqlcode;;
       lv_err_msg := sqlerrm;;   
      raise_application_error(-20000,'API ERROR '||lv_err_code||' on '||lv_err_msg);;
    end;;
    end-sql
    End-Procedure I cannot ge this to work correctly. It seems as if the PL/SQL embedded in the Begin-sql is not parsing the variables. The error recevied is:
    Start of Program Oracle Payslip Interface
    (SQR 5528) ORACLE OCIStmtExecute error 20000 in cursor 23:
    ORA-20000: API ERROR -20001 on ORA-20001: HR_ZA_MAND_SEG_RACE:
    ORA-06512: at "APPS.HR_EMPLOYEE_API", line 1019
    ORA-06512: at "APPS.HR_EMPLOYEE_API", line 1186
    ORA-06512: at line 1
    This error refers to the value assigned to P_PER_INFORMATION4. I have confrimed that there is a valid value in the $Ethnic-Group variable but this value does not seem to be parsing to the PL/SQL. Any assistance would be greatly appreciated.
    Regards
    Muhammad

    The NLS language parameter needs tobe set for this session.
    The following line fo code was used:
    dbms_session.set_nls('NLS_LANGUAGE', '''AMERICAN''');;

  • Error 109: MaxL API instance not active

    Hello Gurus,
    I am using EPM 11.1.2.1 and I am getting the following error while trying to expand the Essbase server from EAS console.
    Error 109: MaxL API instance not active
    Following are some steps that I have followed:
    1. Checked the environment variables which are set properly
    2. Logged to oracle support and checked for the documentation related to the error but no results.
    3. Moreover I am not able to connect to essbase server using Essbase Addin from Excel - This works after uninstalling and reinstalling Excel Spreadsheet addin
    I am using MS Office 2007 SP2
    4. When it connects to the essbase server from the excel addin, it does not expand the essbase server from EAS console and this happens vice versa
    What I want to know is if there is something that I am missing.
    Any help will be appreciated.
    Thanks and Regards
    Saurabh

    When you say you logged into Oracle Support did you find "Expanding on the Application Node in Essbase Administration Services (EAS) Errors with "Error: 109: MaxL API instance is not active" [ID 1357482.1]"
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Can't us Oracle API on the simple JSP pages added to the portlet........

    Hi,
    I added a jsp page in the portlet which is not a standard page like the default show mode pages. I have added some code which actually access a resource inside the porltet.
    " img src="<%= UrlUtils.constructResourceURL (pReq, HttpPortletRendererUtil .absoluteLink(request, "icon.png")) %> "
    For that you have to add the following two imports in the code
    mport="oracle.portal.provider.v2.render.http.HttpPortletRendererUtil"
    import="oracle.portal.provider.v2.url.UrlUtils"
    This library is available with the JDeveloper and I dont get any error while compiling and even deploying the portlet war file on the applcation server. Strangely the same piece of code shows the image perfectly for the default show page of the portlet but it generates 500 Internal server error for the other simple jsp page I added, which suggests that the server is unable to find the function:
    500 Internal Server Error
    java.lang.NullPointerException
         at oracle.portal.provider.v2.url.UrlUtils.constructResourceURL(Unknown Source)
         at _htdocs._elogbooksubsystems._DAQ._jspService(_DAQ.java:54)
         [SRC:/htdocs/elogbooksubsystems/DAQ.jsp:15]
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    Can anybody help? Is this possible to use oracle api in the pages which are though added to the portlet but not the standard show modes pages?
    Thanking you in anticipation
    Regards,
    Omer Alvi
    Message was edited by:
    user574208
    Message was edited by:
    user574208

    Thanks Nrintala. I tried to work with multipage portlet example provided in the jpdk. In fact I created another portlet with two pages and copied the code of the two pages of the multipage portlet. (Off course I took care of the names and stuff). Later I modified the provider.xml by defining "next_page" parameter. When I viewed my portlet, first page appeared fine but when I click on the link which should show the second page, I got an error which says.
    Error:      Error occurred while rendering portlet - see provider log file for details.
    Do you think I have missed something? I am depoying my war file on the stand alone OC4J and some how I have not been able to find the application.log file in my application inside the application_deployments of the J2EE_HOME. I have pasted the provider.xml file and I would be grateful if you can help.
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <?providerDefinition version="3.1"?>
    <provider class="oracle.portal.provider.v2.DefaultProviderDefinition">
    <session>false</session>
    <passAllUrlParams>true</passAllUrlParams>
    <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition">
    <id>1</id>
    <name>mulitpage</name>
    <title>testing multi page</title>
    <description>My Portlet Description</description>
    <timeout>40</timeout>
    <showEditToPublic>false</showEditToPublic>
    <hasAbout>false</hasAbout>
    <showEdit>false</showEdit>
    <hasHelp>false</hasHelp>
    <showEditDefault>false</showEditDefault>
    <showDetails>false</showDetails>
    <renderer class="oracle.portal.provider.v2.render.RenderManager">
    <contentType>text/html</contentType>
    <showPage>/htdocs/mulitpage/first.jsp</showPage>
    <pageParameterName>next_page</pageParameterName>
    </renderer>
    </portlet>
    </provider>
    Best regards,
    Omer
    Message was edited by:
    user574208
    Message was edited by:
    user574208

  • Initialize Oracle API

    Hi,
    Can anybody tell me how to Initialize Oracle API?
    Thanks
    JDev.....

    OpenScript toolbar is always turned 'off' in IE. Each time I launch a new IE browser window I must first manually enable the OpenScript toolbar: IE main menu: View-->Toolbars-->Oracle.OATS.OpenScript.IEToolbar.OpenScriptToolbar. This cannot be the correct behavior.
    Playback of scripts fails with the timeout error: "Cannot get a connection from helper after 60 seconds."
    Note: OpenScript playback does open a new browser window, but it just sits there until timeout b/c the toolbar is not enabled. Why must I first manually enable this toolbar for each playback?
    I have tried:
    a. running InstallBrowserHelper.bat
    b. running Diagnosis Tool: suggestion to turn off IE Enhanced Security Configuration does not resolve problem
    c. locking/unlocking IE toolbars has no effect
    It appears there is no way to force IE to make the OpenScript toolbar "sticky".
    I am running OpenScript version 9.3.0.0 on Windows 2003 Server (32-bit).
    Any suggestions appreciated!
    Steve

  • Error on KEB0 execution ? = Program error: BI service API(component BC-BW)

    Error on KEB0 execution ?
    Iu2019m trying to create a data source on KEB0, but when I try to create, the system give this error:
    u201CProgram error: BI service API (component BC-BW) terminated: MAPI
    Message no. R8401u201D
    Some one knows this message ?
    Thanks !

    Marcus, have you checked following Note?
    504847 - Termination when creating a CO-PA DataSource

  • Getting the following error in Oracle 10g B2B reports, need help where to look into for resolution!

    Hi All,
    I am new to B2B. I am getting following error in B2B Console please suggest what could be the reason and possible steps to resolve:
    Machine Info: (fcgemapptest05)
    Description: General Error
    StackTrace:
    Error -:  AIP-50014:  General Error
      at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1194)
      at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:836)
      at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:402)
      at java.lang.Thread.run(Thread.java:534)
    Regards,
    Sujan

    Can you tell me what's the status of components (value of "In sync" column) when you run "dcmctl getState" command?
    Thanks
    Shail

  • Error  --REP-3000: Internal error starting Oracle Toolkit.

    Hi
    While submitting the concurrent request (active user) im getting error if i submit the active responsibilities
    its completed successfully i have set display also still im getting error.
    Xlib: connection to "omega:0.0" refused by server
    Xlib: Client is not authorized to connect to Server
    Xlib: connection to "omega:0.0" refused by server
    Xlib: Client is not authorized to connect to Server
    REP-3000: Internal error starting Oracle Toolkit.
    REP-3000: Internal error starting Oracle Toolkit.

    Please verify the DISPLAY on the server as follows:
    - Issue "xhost +" as root user
    - Issue "xclock" as applmgr user --> Make sure you can display the clock
    If the above does not work, please set the DISPLAY properly in the application context file and run AutoConfig.
    More details can be found in the following note:
    Note: 200474.1 - Comprehensive REP-3000 Troubleshooting and Overview Guide
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=200474.1

  • Database Error: DBD::Oracle::db do failed: ORA-04030: out of process memory

    Hi
    I have a stored procedure that uses the XMLQuery function (SELECT XMLQuery( '......' RETURNING CONTENT) FROM dual; ) to extract data from 3 different tables and store the xml file in XML DB. This store procedure was running fine for a long time until 2 weeks ago where I started seeing the following error:
    Database Error: DBD::Oracle::db do failed: ORA-04030: out of process memory when trying to allocate 92 bytes (koh dur heap d,qmxtkWriteXobToOpn:heap)
    Currently I have 16,000 records. I am not sure what is going on, the size of the previous successful output xml file is about 2M. I also noticed when the stored procedure runs with 3G of system memory available, it basically used up all the memory and cpu time. The store proc consistently dies after 3.5 hour and spits out the ORA-04030 out of process memory error.
    Does anyone have any suggestion what to look for or what parameters I need to set? Thanks

    Unless your database is strictly a DSS-type of database, your AWR report exposes loads of issues with it. And I think none of the time during the AWR window was spent on database. Look at the DB time (with all those multi cores) compared with the elapsed time of the AWR.
    As you are on 11g, why not make use of MEMORY_TARGET (a single parameter to manage both SGA and PGA)? If you are already on it, ignore this as I can't see it anywhere. If not, get rid of SGA_TARGET and PGA_AGGREGATE_TARGET and replace it with a single MEMORY_TARGET parameter. However you may have a minimum threshold set for different SGA pools so that they won't shrink beyond that point.
    Having said that, setting MEMORY_TARGET is not a guarantee to avoid ORA-4030. Just a single bad PL/SQL code could go and exploit the untunable part of your process memory and even go and blow up the physical memory. If you are using FORALL and BULK load, see if you can cut it down into few chunks rather than running as a single process.
    What does your V$PGASTAT say?

  • Is it a bug in Oracle API ??

    We are implementing an interface between Oracle Mfg and a third party application to transfer BOMs etc. Here is the scenario I am looking to get some input on.... A simple BOM (2 components) was transferred to Oracle manufacturing using the interface which processes BOM data via oracle API and creates an EC in Engineering module. After this transaction was completed, Engineering module showed item sequence numbers of 10 and 20 assigned to 2 components of the BOM. This BOM was revised and one of its components was disabled (one that had item sequence number of 10)and this change was submitted using our interface. ECO in the engineering module showed that the component was disabled but item sequence number assigned to this component was 30 instead of its original number 10. If the same exercise is carried out directly in Oracle engineering module item sequence number for disabled item would show as 10. So Oracle behaviour is different based on whether item in the BOM structure was disabled using API vs directly in Oracle where it should be same in both cases. Could it be a bug ?? Any input on this would be greatly appreciated.

    Hi Sunil,
    This is a bug. There doesn't seem to be a workaround.
    Can you contact me via email or post your email?
    Thanks.

Maybe you are looking for

  • How to save the output of sap script to pdf document in sap

    hi abapers how to save the output of sap script in sap so that can retrieve the saved document later. i have to save the rcia output from sap script in pdf document in sap so that it can be retrieved later how to use dms

  • How i can make valid java appliacation and how

    i am novice in java and i want to make good and valid application that i can run from server any body can tell me how i can make this or any link for any project online or build on net with deployment details A.R

  • Find and Highlight Mulitple Words in Acrobat Pro 9

    After finding a word how can you then highlight all of them?.

  • Dvds made from idvd are sometimes incompatible with PCs

    I work in a university setting that has a mix of mac and pcs. I make the dvds using iDVD but am running into problems when they get played on pcs. Is there a preference or something special I can do when I know it will be played on those systems?

  • Metadata Navigator Error

    Hi, I had installed Matadata Navigator and deployed it initially and could login to it Now , when I try to login,it gives me error: java.sql.SQLException: Closed Connection Please let me know how to resolve this. Thanks!