Error while execution

Hi,
I am using Oracle 10G DB.
I am having one .sql file to do some Insert-Select , Update, and delete of the same table.... and i gave the commit after execution of that file .
It worked fine in our development database but when i execute the same in testing DB it thrown its completed successfully and when it comes to Commit "ORA- 03114 : not connected to oracle " and rollback all the new record insertion /updation and deletion ....
I have tried with commit after Insert-SELECT, Update and delete that time also when it comes to that commit its throwing the error ....
Same code is working fine in our development DB.....
Can any one help me to solve this .....................

Hi,
The count value is coming properly with out commit ... if i ad the commit it is throwing the error ....
any suggestion from any body
My code is looking like
Accept the dblink :
create or replace procedure proc1
is
begin
delete from table a
delete from table b
insert into table a select .... from table_a@dblink;
insert into table b select .... from table_a@dblink;
exception
end;
begin
proc1;
end;
commit;
If i comment this commit then i got procedure successfully completed .... if the commit it there then its end of communication chanel error is coming .....
I have tried with select count(*) from tablea after the execution its printing correctly .....
This code working fine with some server with commit and its throwing error in some servers ... no idea where is the problem is ...
any suggestion for me ....
Edited by: KBG on Mar 10, 2009 5:19 AM

Similar Messages

  • Error while execution of BPEL processes in IPM Solution

    Hi All,
    I am working on the IPM Imaging solution in which Invoice data is captured from OFR in XML format , pushed into IPM and then BPEL process is invoked to push the data into apps tables.
    I am facing following error while invoking a procedure which is in apps schema from BPEL by giving it parameters.
    actually this procedure/function will accept the payloads as parameters and will give some output parameters, but while processing i am getting following error :
    Non Recoverable System Fault :
    Exception occurred when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'PreImportCleanup' failed due to: Parse struct conversion error. An error occurred while parsing XML representing a Java struct. Unable to convert the XSD element P_INVOICE_REC whose user defined
    type is AXF.AXF_PREIMPORT_CUSTOM_PKG_R_IN to a Java struct.
    Cause: java.sql.SQLSyntaxErrorException: ORA-04044: procedure, function, package, or type is not allowed here ".
    The invoked JCA adapter raised a resource exception.
    Please examine the above error message carefully to determine a resolution.
    Any suggestion to get over this issue will be so helpful !
    Thanks & Regards,
    Nupur

    Hi Nupur,
    We had requirement for automating invoice processing, came to know we need to use ODC/ODDC,OFR,OIPM 11g and SOA 11g with EBS.
    My questions are:
    1. do we need OFR for this.
    2. if so how to configure OFR with OIPM
    3. do we need to use imaging solution in OIPM for invoice processing and not managed attaachements
    4. whts the flow is it frm EBS to OIPM or OIPM to EBS(populate invoice) or viceversa
    5. can we do invoice processing automated without AXF solution.
    Thanks a lot in Advance,
    Ra.

  • Error while execution in background

    Hi all
    when iam using file download function , it is working fine in foreground but giving
    error dump while executing in background
    plz reply , its urgent

    Hi Check this link it will solves ur problem...
    http://www.sap-img.com/ab004.htm
    <b>i am pasting the same information below......</b>
    GUI_* WS_* Function In Background, CSV Upload
    GUI_* and WS_* function modules do not work in background
    When scheduling a job in the background the appropriate statement to read in your file is OPEN DATASET, and the file must be on the file system that the SAP server can see.
    At anytime, a user can switch of the Personal Computers even though the job is still running in the background.  Therefore GUI_* and WS_* function modules are not designed to work in that way, as they need to access your personal computer  file.
    To choose the correct download method to used, you can check the value of SY-BATCH in your code,
    if it is 'X' use OPEN DATASET and if it is ' ' use WS_UPLOAD.
    *-- Open dataset for reading
    DATA:
      dsn(20) VALUE '/usr/test.dat',
      rec(80).
    OPEN DATASET dsn FOR INPUT IN TEXT MODE.
    IF sy-subrc = 0.
      DO.
        READ DATASET dsn INTO rec.
        IF sy-subrc <> 0.
          EXIT.
        ELSE.
          WRITE / rec.
        ENDIF.
      ENDDO.
    ENDIF.
    CLOSE DATASET dsn.
    *-- Open dataset for writing
    DATA rec(80).
    OPEN DATASET dsn FOR OUTPUT IN TEXT MODE.
      TRANSFER rec TO '/usr/test.dat'.
    CLOSE DATASET dsn.
    What is the difference when we use upload, ws_upload, gui_upload function modules?
    UPLOAD, WS_UPLOAD, GUI_UPLOAD, are used in BDC concepts.  ie., Batch Data Communication.
    Batch Data Conversion is a concept where user can transfer the Data from non SAP to SAP R/3.  So , in these various Function Modules are used.
    UPLOAD---  upload a file to the presentation server (PC)
    WS_UPLOAD----    Load Files from the Presentation Server to Internal ABAP Tables.
    WS means Work Station.
    This is used upto SAP 4.6 version.
    GUI_UPLOAD-------    Replaces WS_UPLOAD. Upoad file from presentation server to the app server.  From 4.7 SAP version it is replaced.
    How to Upload csv file to SAP?
    Common File Download Upload Questions:
    How  you upload the data from text file to sap internal table?  From my knowledge its by upload or gui_upload. 
    How you download the data from sap internal table to text file?
    How  you upload the data from xls (excel) file to sap internal table how you download the data from sap internal table to xls(excel) file.
    You can upload data from presentation server to an internal table using gui_upload. Use gui_download to download from internal table to flat file.
    Use fm ALSM_EXCEL_TO_INTERNAL_TABLE to upload data frm excel.
    Use function module GUI_UPLOAD
    The FILETYPE refer to the type of file format you need: For e.g 'WK1' - Excel format , 'ASC' - Text Format etc.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\test.csv'
       FILETYPE                      = 'ASC'
      TABLES
        DATA_TAB                      = itab
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17.
    Ramesh

  • Error while execution of Background step

    HI all,
    I have created a smart form attachment step.The step to be executed in Background.
    According step is set syncronous  with background execution.
    However i am getting folllowing error-
    The information displayed is -Execution will continue in backgroun with Status-Error
    Error details are as follows-
    Message Text         Error handling for work item 000000389208
    Exception            630
    Error Type           0
    Area                 SWF_RUN
    Message              630
    Variable 1           000000389208
    Please guide to resolve issue.

    Hi Sanjay,
      As Rick Suggested check the log, if still problem persists & if possible try making the step to dialog execution and check?
    Regards,
    Narin.

  • Webdynpro Program Error while Execution

    Hi Experts,
    Iam new to Webdypro Programing. The Pb is While Executing Web Dyn Pro Program the Broswer gets open, after authentication i am getting error.
    Error is due to : The termination type was: RABAX_STATE
    And second time Execute Same program, in this time directly going to error , not even asking  authentication aslo....
    this is error display when broswer open .
    Error Message
    The URL http://ecc6:8001/sap/bc/webdynpro/sap/zinfy_dynpro_bok was not called due to an error.
    Note
    The following error text was processed in the system I01 : Die URL enthält keine vollständige Domainangabe (ecc6 statt ecc6.<domain>.<ext>).
    The error occurred on the application server ecc6_I01_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: CHECK of program CX_FQDN=======================CP
    Method: STARTUP_CHECKS of program CL_WDR_UCF====================CP
    Method: CONSTRUCTOR of program CL_WDR_UCF====================CP
    Method: CREATE of program CL_WDR_UCF====================CP
    Method: HANDLE_REQUEST of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    Error code: ICF-IE-http -c: 800 -u: ABAP -l: E -s: IDS -i: hufinsar_IDS_00 -w: 0 -d: 20090707 -t: 132441 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION

    Hi Just put a breakpoint at WRITE src to dest+off(len) index i statement and check what values are getting populated.
    This errror arises when you try to access offset length more than what is actually there .
    Jus debug and see . If unable to solve reply with the values populated

  • Query gives  ASSIGN_TYPE_CONFLICT error while execution.

    Hi,
    I am using BEX 3.5 and I get the following error when I excecute a query built on a virtual provider.
    Runtime Errors         ASSIGN_TYPE_CONFLICT
    Date and Time          04.02.2009 07:26:14
    Short text
         Type conflict with ASSIGN in program "GP46IJU3DHHM7BMOVYK5C25VPU9".
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "GP46IJU3DHHM7BMOVYK5C25VPU9" had to be terminated
          because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
        You attempted to assign a field to a typed field symbol,
        but the field does not have the required type.
    Information on where terminated
        Termination occurred in the ABAP program "GP46IJU3DHHM7BMOVYK5C25VPU9" - in
         "EXECUTE".
        The main program was "SAPMSSY1 ".
        In the source code you have the termination point in line 345
        of the (Include) program "GP46IJU3DHHM7BMOVYK5C25VPU9".
    Line  SourceCde
      315     currrule-tranid  = '0AUBIMFV5RTEC7OMK4S551BJENDOPH2N'.
      316     currrule-progid  = '46IJU3DHHM7BMOVYK5C25VPU9'.
      317     currrule-version = '0'.
      318
      319     call method cl_rstran_runtime_exe=>get_suppressed_rules
      320       EXPORTING
      321         i_tranid             = currrule-tranid
      322         i_r_data             = e_r_outbound
      323       IMPORTING
      324         e_s_suppressed_rules = lssupp.
      325
      326 *   set attributs
      327     p_check_master_data_exist = i_master_data_exist.
      328     p_r_request               = i_r_request.
      329
      330
      331 * ==== Debugging ====
      332 * Breakpoint after start routine
      333     if i_r_trfn_cmd is bound.
      334       READ TABLE i_r_trfn_cmd->n_th_bp
      335            TRANSPORTING NO FIELDS
      336            WITH TABLE KEY bpid    = 3
      337                           datapid = i_r_inbound->n_datapakid.
      338       IF sy-subrc = 0.
      339         BREAK-POINT.                                       "#EC NOBREAK
      340       ENDIF.
      341     endif.
    342
    343 * ==== 2. process data package
    344     i_r_log->add_substep( 'RULES' ).
    >>>>     LOOP AT <_yt_SC_1> assigning <_ys_SC_1>.
    346
    347       CLEAR:
    348         G1,
    349         ltmsg_rec,
    350         ltmsg.
    351       currrule-record = l_recno_SC_1 = <_ys_SC_1>-record.
    352       TRY.
    353           CALL METHOD i_r_log->verify_record
    354             EXPORTING
    355               i_segid         = 0001
    356               i_record        = <_ys_SC_1>-record
    357             RECEIVING
    358               r_skip          = _skip
    359             EXCEPTIONS
    360               TOO_MANY_ERRORS = 1
    361               NOT_IN_CROSSTAB = 2
    362               others          = 3.
    363           IF sy-subrc <> 0.
    364             CALL FUNCTION 'RS_SYMESSAGE_TO_EXCEPTION'
    Please can someone help me with this?

    Hi Anil,
    I am facing same Runtime error in ST22.
    Can you help me out with solution.
    Thanks n Regards.
    Chetna

  • Error while execution report in background

    Hi,
    I am uploading the data from excel file using ALSM_EXCEL_TO_INTERNAL_TABLE function module in one of the report. If I execute the report in background its giving a error message 'Error during import of clipboard contents'.
    Please help me out what should be the problem.
    <REMOVED BY MODERATOR>
    Thanks,
    Vinay.
    Edited by: Alvaro Tejada Galindo on Feb 21, 2008 11:20 AM

    When a program is executed in background, the programs runs in the application server and so connection exists with the PC.
    And the FM ALSM_EXCEL_TO_INTERNAL_TABLE reads the file from PC. Since the connection is already lost when the program is run in background, the program will not work and might give a short dump.
    So you might have to upload the file into application server and then use OPEN DATASET, READ DATASET commands to read data from the application server file.
    <REMOVED BY MODERATOR>
    Thanks,
    Balaji
    Edited by: Alvaro Tejada Galindo on Feb 21, 2008 11:21 AM

  • Time Out Error while execution of messages

    Hello All,
    Our Env. is XI 3.0 , and this is related to PRD system,
    This problem is relating to an Outbound service. This particular message gets executed in some times and in some cases it throws Time out Exception .
    This is the following log which is from Audit log of that message :
    Audit Log for Message: 2949b051-ae64-11dc-87b9-001560ad9210
    Status     Description
    Success     RFC adapter received sRFC for Z_UCRM_FM029_RFC_INT_SERASA from CP1/130. Attempting to send message synchronously
    Success     Application attempting to send an XI message synchronously using connection AFW.
    Success     Trying to put the message into the call queue.
    Success     Message successfully put into the queue.
    Success     The message was successfully retrieved from the call queue.
    Success     The message status set to DLNG.
    Error     Returning synchronous error notification to calling application: com.sap.aii.af.ra.ms.api.RecoverableException: Received HTTP response code 500 : Timeout.
    Error     Transmitting the message using connection http://xp0ci01:8080/sap/xi/engine?type=entry failed, due to: com.sap.aii.af.ra.ms.api.DeliveryException: Received HTTP response code 500 : Timeout.
    Error     The message status set to FAIL.
    Error     Returning to application. Exception: com.sap.aii.af.ra.ms.api.DeliveryException: Received HTTP response code 500 : Timeout
    Here CP1/130 is the CRM system which is sender in this case , and XP0 is xi production system.
    Can any one help me out to fix this issue, and if any parameter value need to be adjusted...?
    Best Regards
    Rakesh Reddy

    Hello All,
    Thanks for the update,
    I have checked the mentioned Blog and the oss notes mentioned in it..
    I have compared all the parameters specified in it , and which seems to be fine as per recomended.
    HTTP_TIMEOUT   -30000
    syncMessageDeliveryTimeoutMsec --300000
    xiadapter.inbound.timeout.default -180000
    Few points which I am having doubt :
    1>
    When I login to SMICM of that system , I can find the error content in most areas and no clue about it..
    [Thr 1077967200] Wed Dec 26 17:29:19 2007
    [Thr 1077967200] *** WARNING => IcmReadFromConn: AppServer context already released [icxxthrio_mt 2452]
    [Thr 1077967200] *** ERROR => IcmHandleNetRead(id=7/22059): IcmReadFromConn failed (rc = -1) [icxxthrio_mt 1257]
    [Thr 1077967200] *** ERROR => IcmConnRollInWP: AppServer context already released [icxxthr_mt.c 2339]
    2>
    And when checked in trace file of dev_server0 , i can see some error messages relating to rfc logon load(SMLG) , but I have checked in SMLG and load balancing is defined over there and the status is also green.
    Now one small doubt is , any way this error is relating to the existing problem ..
    [Thr 1093638496] Thu Dec 27 12:09:18 2007
    [Thr 1093638496] *** ERROR => JRFC> Error jrfc_lg LgGroup failed(-6) [jrfc_mt.c    707]
    [Thr 1093638496] *** ERROR =>       mshost: ashb01wa06pr, msserv: sapmsXP0, r_group: PUBLIC [jrfc_mt.c    708]
    3>Is my only few outbound services messages getting failed showing the reason as "Timeout error 500 " due to inconsistency in SMICM .(as outbound services uses ICM services to connect external part)..
    4>And the reason for failing only some messages is due to heavy load( at same time many messages are getting executed)  ?
    Can any one help me to fix this issue ...
    Best Regards
    Rakesh Reddy

  • Interactive Adobe Forms error while execution....

    Hi,
    <b>I am working on Adobe Forms & developed one application "Online Interactive Form" . After deploying when i try to Run the Appln i am getting following error..</b>
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Severe : PDFDocument is NULL. Exception : Service call exception; nested exception is: java.lang.Exception: Incorrect content-type found text/html
    atcom.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:385)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1117)
    at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java:887)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRespond(WindowPhaseModel.java:573)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:152)
    at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:330)
    at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:297)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:706)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:660)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:228)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:56)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:40)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
               atcom.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    <b>I searched on SDN & come to know few points that may be it is bcoz of SP Level difference between WAS & ADS..But not getting any way for how to check this.??
    My senior told me that they are at same SP Level..if this is the case what is the other possible reason for getting this error...??</b>
    Waiting for reply !
    Thanks in advance !
    Smita.

    The password for the ADSUser is probably not correctly configured. Check the following:
    1. Login to the visual admin
    2. Go to <server node> -> Services -> Web Services Security
    3. At the runtime tab select Web Service Clients -> sap.com - > tcwdpdfobject
    4. Select com.sap.tc.webdynpro.adsprox.AdsProxy*ConfigPort_Document
    5. At the Transport Security tab check the basic authentication, user should be ADSUSER and you can reenter the password with the correct password. Save the configuration.
    6. Navigate to Services -> Deploy
    7. At the bottom select the application radiobutton
    8. Select sap.com/tcwdpdfobject and stop the application  (right hand side of the screen)
    9. when it is stopped, start it again
    10. test the web service again as described above
    You can use <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/06717aea-0c01-0010-b28f-e6494458788f">this guide</a> to configure ads.
    Regards,
    Christophe

  • Error while execution mappings

    Hi All,
    When I try to execute, I am getting the following error.
    Steps:
    1. Created a schema for staging area
    2. Importing data to staging area, default table space is users. all these tables are truncate and insert. Data is loading successfully.
    3. Created a target schema. Here tables uses rep as tables space for indexes.
    4. When I tried to load data, I am getting the following error.
    ORA-01652: unable to extend temp segment by 32 in tablespace TEMP
    can anybody solve the issue.
    Regards,

    Generally this error occurs when you are loading huge data ...
    If you are doing so ask your dba to extend the temp segment..
    or
    If your map contains joiners
    check join conditions ----cross joins(cartesian products) also leads to this error

  • Reporting error while execution of query in BI?

    hi friends,
    http:///irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=Q001_SALES&VARIABLE_SCREEN=X&DUMMY=1
    when i am executing my query in 7.0 i am getting 1 extra window with this message. ple let me know solution for this.
    regards
    suneel.

    hi banu,
    whether i need look here bex analyzer or query designer, if i open bex analyzer its showing only 3.x reporting, when i am usnig query designer its showing 7.x reporting, i know reporting well in 3.5 .
    i am using there bex analyzer?
    here in BI what  can i use? analyzer or query designer?
    if i need analyzer why its showing only 3.x reporting.
    if i need 7.x reporting what can i do for my system?
    and also help me that new data to activae data for dso for my demo version wher can i check my oss nores.
    regards
    suneel.

  • Error while execution ODI procedure : java.lang.NullPointerException

    Hi,
    I`m trying to execute a simple ODI procedure and I`m getting the following exception:
    java.lang.NullPointerException
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execCollOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlS.treatTaskTrt(SnpSessTaskSqlS.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandScenario.treatCommand(DwgCommandScenario.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.j(e.java)
         at com.sunopsis.dwg.cmd.g.F(g.java)
         at com.sunopsis.dwg.dbobj.SnpScen.a(SnpScen.java)
         at com.sunopsis.dwg.dbobj.SnpScen.localExecuteSync(SnpScen.java)
         at com.sunopsis.dwg.tools.StartScen.actionExecute(StartScen.java)
         at com.sunopsis.dwg.function.SnpsFunctionBaseRepositoryConnected.execute(SnpsFunctionBaseRepositoryConnected.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execIntegratedFunction(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlS.treatTaskTrt(SnpSessTaskSqlS.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandScenario.treatCommand(DwgCommandScenario.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.j(e.java)
         at com.sunopsis.dwg.cmd.g.z(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Thread.java:595)
    The source of the procedure:
    select
    P_ID,
    P_NAME,
    to_char(START_TIME_KEY,'DD-MON-YYYY HH24:MI:SS') as START_TIME_KEY,
    to_char(END_TIME_KEY,'DD-MON-YYYY HH24:MI:SS') as END_TIME_KEY,
    P_IS_ACTIVE,
    from persons
    The target of the procedure:
    DECLARE
    v_START_TIME_KEY DATE;
    v_END_TIME_KEY DATE;
    v_NAME VARCHAR2(200);
    v_ID NUMBER;
    BEGIN
    v_NAME := '#P_NAME';
    commit;
    END;
    ODI version: 10.1.3.5.5
    Source and target technology: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    Thanks!

    Hello,
    Is your aim to get the Name from the table into the variable. ?
    And if there is only one row from the table you can use refresh variable to get the name:
    if there are more rows and you want to do somehthing repeatedly using the name, then you need to use the method you have described.
    Declare the variable in the pakcage and give some default value to the variable then call the procedure.
    Regards
    Reshma

  • Unique Index Error while running the ETL process

    Hi,
    I have Installed Oracle BI Applications 7.9.4 and Informatica PowerCenter 7.1.4. I have done all the configuration steps as specified in the Oracle BI Applications Installation and Configuration Guide. While running the ETL process from DAC for Execution Plan 'Human Resources Oracle 11.5.10' some tasks going to status Failed.
    When I checked the log files for these tasks, I found the following error
    ANOMALY INFO::: Error while executing : CREATE INDEX:W_PAYROLL_F_ASSG_TMP:W_PRL_F_ASG_TMP_U1
    MESSAGE:::java.lang.Exception: Error while execution : CREATE UNIQUE INDEX
    W_PRL_F_ASG_TMP_U1
    ON
    W_PAYROLL_F_ASSG_TMP
    INTEGRATION_ID ASC
    ,DATASOURCE_NUM_ID ASC
    ,EFFECTIVE_FROM_DT ASC
    NOLOGGING PARALLEL
    with error java.sql.SQLException: ORA-12801: error signaled in parallel query server P000
    ORA-01452: cannot CREATE UNIQUE INDEX; duplicate keys found
    EXCEPTION CLASS::: java.lang.Exception
    I found some duplicate rows in the table W_PAYROLL_F_ASSG_TMP with the combination of the columns on which it is trying to create INDEX. Can anyone give me information for the following.
    1. Why it is trying to create the unique index on the combination of columns which may not be unique.
    2. Is it a problem with the data in the source database (means becoz of duplicate rows in the source system).
    How we need to fix this error. Do we need to delete the duplicate rows from the table in the data warehouse manually and re-run the ETL process or is there any other way to fix the problem.

    This query will identify the duplicate in the Warehouse table preventing the Index from being built:
    select count(*), integration_id, src_eff_from_dt from w_employee_ds group by integration_id, src_eff_from_dt having count(*)>1;
    To get the ETL to finish issue this delete to the W_EMPLOYEE_DS table:
    delete from w_employee_ds where integration_id = '2' and src_eff_from_dt ='04-JAN-91';
    To fix it so this does not happen again on another load you need to find the record in the Vision DB, it is in the PER_ALL_PEOPLE_F table. I have a Vision source and this worked:
    select rowid, person_id , LAST_NAME FROM PER_ALL_PEOPLE_F
    where EFFECTIVE_START_DATE = '04-JAN-91';
    ROWID PERSON_ID
    LAST_NAME
    AAAWXJAAMAAAwl/AAL 6272
    Kang
    AAAWXJAAMAAAwmAAAI 6272
    Kang
    AAAWXJAAMAAAwmAAA4 6307
    Lee
    delete from PER_ALL_PEOPLE_F
    where ROWID = 'AAAWXJAAMAAAwl/AAL';

  • Error while building execution plan

    Hi, I'm trying to create an execution plan with container EBS 11.5.10 and subject area Project Analytics.
    I get this error while building:
    PA-EBS11510
    MESSAGE:::group TASK_GROUP_Load_PositionHierarchy for SIL_PositionDimensionHierarchy_PostChangeTmp is not found!!!
    EXCEPTION CLASS::: java.lang.NullPointerException
    com.siebel.analytics.etl.execution.ExecutionPlanDesigner.getExecutionPlanTasks(ExecutionPlanDesigner.java:818)
    com.siebel.analytics.etl.execution.ExecutionPlanDesigner.design(ExecutionPlanDesigner.java:1267)
    com.siebel.analytics.etl.client.util.tables.DefnBuildHelper.calculate(DefnBuildHelper.java:169)
    com.siebel.analytics.etl.client.util.tables.DefnBuildHelper.calculate(DefnBuildHelper.java:119)
    com.siebel.analytics.etl.client.view.table.EtlDefnTable.doOperation(EtlDefnTable.java:169)
    com.siebel.etl.gui.view.dialogs.WaitDialog.doOperation(WaitDialog.java:53)
    com.siebel.etl.gui.view.dialogs.WaitDialog$WorkerThread.run(WaitDialog.java:85)
    Sorry for my english, I'm french.
    Thank you for helping me

    Hi,
    Find the what are all the subjectarea's in execution plan having the task 'SIL_PositionDimensionHierarchy_PostChangeTmp ', add the 'TASK_GROUP_Load_PositionHierarchy ' task group to those those subjectares.
    Assemble your subject area's and build the execution plan again.
    Thanks

  • Error while creating request list DSU execution error   in Upgrade PI

    Hello,
    I´m doing upgrade de PI 3.0 - 7.0 in mscs and run startup.bat...
    DSU execution error  on hostnode1.domain.sap
    Error while creating request list - see proceeding messages
    Instance profile for instance 00 on host hostnode1 not found profile SID_w*00_hostnode1 not found in directory ...../usr(sap/SID/profile
    Help please.
    Luis
    Edited by: Luis Maura on Nov 5, 2010 1:38 PM

    Instance profile for instance 00 on host hostnode1 not found profile SID_\w*00_hostnode1 not found in directory
    hostnode1 is physical or virtual ?, this file SID_\w00_hostnode1*  exist or not .
    compare the GLOBAL HOSTNAME settings in profiles of Default,Instance and start
    Regards,

Maybe you are looking for