Load Error with return code 7000 when call sqlldr in interface.

Hi All,
I have created a interface to load data from 'File' to 'Oracle' in ODI 11g.
Below are the running order of this interface.
1 - Loading - SrcSet0 - Drop work view
2 - Loading - SrcSet0 - Drop Temp Table
3 - Loading - SrcSet0 - Create Temp table
4 - Loading - SrcSet0 - Create Work View
5 - Loading - SrcSet0 - Generate CTL file
6 - Loading - SrcSet0 - Call sqlldr
We are getting the following error while running the step 6.
org.apache.bsf.BSFException: exception from Jython:
Traceback (most recent call last):
  File "<string>", line 22, in <module>
Load Error: See C:\home\oracle\joc\odi/AIM.log for details
  at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
  at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:322)
  at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:170)
And it return code 7000 indicated in 'Execution Statistics'.
If anyone has encountered a similar issue and able to solve it, please share your thoughts with me.
Thanks in advance for your help.
Dicksam

This forum is dedicated to supporting the use of Maven with FMW and the new Oracle Maven Repository.  Given that ODI does not currently provide Maven support, you are unlikely to get a response in this forum.  You might want to try posting in a different forum dedicated to Data Integration, such as the Master Data Management forum.

Similar Messages

  • ODI-1217: (6003) fails  with return code 7000.

    Hi
    I'm learning ODI. I got stuck while i execute the interface - i get that error message --> ODI-1217: Session test1_load_data_from_and_to_oracle (6003) fails with return code 7000.
    My source, staging area, Target all are in oracle DB.
    I believe the reason is that I do not choose the right IKM. but i export and execute all ikm type for oracle.
    I would appreciate your help.
    ODI-1217: Session test1_load_data_from_and_to_oracle (6003) fails with return code 7000.
    ODI-1226: Step test1_load_data_from_and_to_oracle fails after 1 attempt(s).
    ODI-1240: Flow test1_load_data_from_and_to_oracle fails while performing a Integration operation. This flow loads target table TRG_COUNTRIES.
    Caused By: org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 1, in ?
    Defining a target, but no source has been defined, yet. Please define source first.
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:345)
         at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:169)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java:2374)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java:1615)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java:1580)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:2755)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java:68)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2515)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:534)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:449)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1954)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:322)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:224)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:246)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:237)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:794)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:114)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
         at java.lang.Thread.run(Thread.java:619)

    hi,
    When I chose--> IKM sql control append--> it worked .
    Where can I find the types of KM processes and explain how to use them?
    Thanks in advance

  • ODI Session task reverse fails with return code 7000

    WARNING ODI-1134 Agent Test encountered an error: ODI-12: Step Hyperion Planning ODI fails after 1 attempt(s).
    2013-10-28 16:14:38.471 ERROR ODI-1217 Session Hyperion Planning ODI (23121) fai
    ls with return code 7000.in the Command prompt
    Target Code in session task reverse
    from java.util import HashMap
    from java.lang import Boolean
    from com.hyperion.odi.common import ODIConstants
    from com.hyperion.odi.common import ODIModelImporter
    from com.hyperion.odi.connection import HypAppConnectionFactory
    # source planning connection properties
    serverName = "192.168.0.105:19000"
    userName    = ""
    password   =  "<@=snpRef.getInfo("SRC_PASS") @>"
    application   = "FirstApp"
    srvportParts = serverName.split(':',2)
    srvStr =  srvportParts[0]
    portStr = srvportParts[1]
    # Put the connection properites and initialize the planning loader
    srcProps = HashMap()
    srcProps.put(ODIConstants.SERVER,srvStr)
    srcProps.put(ODIConstants.PORT,portStr)
    srcProps.put(ODIConstants.USER,userName)
    srcProps.put(ODIConstants.PASSWORD,password)
    srcProps.put(ODIConstants.APPLICATION_NAME,application)
    imod =  4121 
    #get planning connection
    hApp = HypAppConnectionFactory.getAppConnection(HypAppConnectionFactory.APP_PLANNING, srcProps);
    #get connection to repository
    repCon = odiRef.getJDBCConnection("DEST")
    # START THE REVERSE
    odiModelImporter = ODIModelImporter(imod, hApp, repCon)
    odiModelImporter.importModels()

    yes , I have entered all the details in the Topology for Planning Data server, [ since it is Hyperion Planning the test connection is disable]
    The created agent  test connection also successfull But still it is not connecting .GEtting the
    Error :-
    2013-10-29 10:14:52.151 NOTIFICATION ODI-1137 Scheduler started for work reposit
    ory WORKREP121 on Agent Test.
    2013-10-29 10:15:35.664 WARNING ODI-1134 Agent Test encountered an error: ODI-12
    26: Step Hyperion Planning ODI fails after 1 attempt(s).
    2013-10-29 10:15:35.665 ERROR ODI-1217 Session Hyperion Planning ODI (24121) fai
    ls with return code 7000

  • Session Task 3 Loading - SS_0 - Load Data FAILS Return Code - 7000

    I cannot figure out why this is happening! Any Help is greatly appreciated!
    Here are tasks 2 & 3 ...
    Operator Session Task:
    Step 2 Loading - SS_0 - Create work table
    Default: Query / Execution Plan
    create table ODI_TEMP.C$_0CONTRACT_AUTOMATION_FACT
    C1_PROCESSINSTANCE_ID NUMBER(20) NULL,
    C2_WORKFLOW_START_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C3_WORKFLOW_END_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C4_WORKFLOW_NAME VARCHAR2(100) NULL,
    C5_AGENCY_CONT_ADMIN_NAME VARCHAR2(100) NULL,
    C6_AGENCY_DESIGNATION VARCHAR2(100) NULL,
    C7_AGENCY_INITIATING_APRV_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C8_ASSIGNED_CITYATRNY_NAME VARCHAR2(100) NULL,
    C9_AUDITOR_SIGN_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C10_AUDITOR_SIGN_NAME VARCHAR2(100) NULL,
    C11_AWARD_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C12_BID_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C13_CC_ORDINANCE_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C14_CC_ORDINANCE_NUMBER VARCHAR2(100) NULL,
    C15_CC_ORDINANCE_REQUIRED_FL VARCHAR2(10) NULL,
    C16_CITYATRNY_SIGN_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C17_CITYATRNY_SIGN_NAME VARCHAR2(100) NULL,
    C18_CITY_PROJECT_NUMBER VARCHAR2(100) NULL,
    C19_CLERK_FILING_NUMBER VARCHAR2(100) NULL,
    C20_CLERK_RECORDER_SIGN_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C21_CLERK_RECORDER_SIGN_NAME VARCHAR2(100) NULL,
    C22_COMPETITIVE_BID_CMT VARCHAR2(100) NULL,
    C23_COMPETITIVE_BID_FL VARCHAR2(10) NULL,
    C24_CONT_AMENDMENT_NUMBER VARCHAR2(100) NULL,
    C25_CONT_CONTROL_NUMBER VARCHAR2(100) NULL,
    C26_CONT_DESC VARCHAR2(255) NULL,
    C27_CONT_EXIST_TERM_END_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C28_CONT_EXIST_TERM_START_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C29_CONT_PROP_TERM_END_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C30_CONT_PROP_TERM_START_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C31_CONT_REQUESTOR_NAME VARCHAR2(100) NULL,
    C32_CONT_REQUEST_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C33_CONT_TYPE VARCHAR2(100) NULL,
    C34_CONT_WORK_TYPE VARCHAR2(100) NULL,
    C35_DOLLAR_AMT_PRIOR_CONT_TOTA VARCHAR2(100) NULL,
    C36_DOLLAR_AMT_THIS_REQUEST VARCHAR2(100) NULL,
    C37_DSBO_APRV_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C38_INITIATING_AUTHORITY_NAME VARCHAR2(100) NULL,
    C39_MAYOR_SIGN_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C40_MAYOR_SIGN_NAME VARCHAR2(100) NULL,
    C41_MOFIN_SIGN_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C42_MOFIN_SIGN_NAME VARCHAR2(100) NULL,
    C43_NEW_TOTAL_IF_EXECUTED VARCHAR2(100) NULL,
    C44_PERSON_PHONE VARCHAR2(100) NULL,
    C45_PREVAILING_WAGE_REQUIRED_F VARCHAR2(10) NULL,
    C46_PROGRAM VARCHAR2(100) NULL,
    C47_REQ_BUSINESS_UNIT VARCHAR2(100) NULL,
    C48_RISK_AND_SAFETY_APRV_DT TIMESTAMP (6) WITH TIME ZONE NULL,
    C49_TECHSERV_REVIEW_REQUIRED_F VARCHAR2(10) NULL,
    C50_VEN_ADDRESS VARCHAR2(100) NULL,
    C51_VEN_ID VARCHAR2(100) NULL,
    C52_VEN_NAME VARCHAR2(100) NULL,
    C53_VEN_SIGN_DT DATE NULL
    NOLOGGING
    Step 3 Loading - SS_0 - Load Data
    Loading: Query / Execution Plan
    select
    STG_CONTRACT_AUTOMATION.PROCESSINSTANCE_ID C1_PROCESSINSTANCE_ID,
    STG_CONTRACT_AUTOMATION.WORKFLOW_START_DT C2_WORKFLOW_START_DT,
    STG_CONTRACT_AUTOMATION.WORKFLOW_END_DT C3_WORKFLOW_END_DT,
    STG_CONTRACT_AUTOMATION.WORKFLOW_NAME C4_WORKFLOW_NAME,
    STG_CONTRACT_AUTOMATION.AGENCY_CONT_ADMIN_NAME C5_AGENCY_CONT_ADMIN_NAME,
    STG_CONTRACT_AUTOMATION.AGENCY_DESIGNATION C6_AGENCY_DESIGNATION,
    STG_CONTRACT_AUTOMATION.AGENCY_INITIATING_APRV_DT C7_AGENCY_INITIATING_APRV_DT,
    STG_CONTRACT_AUTOMATION.ASSIGNED_CITYATRNY_NAME C8_ASSIGNED_CITYATRNY_NAME,
    STG_CONTRACT_AUTOMATION.AUDITOR_SIGN_DT C9_AUDITOR_SIGN_DT,
    STG_CONTRACT_AUTOMATION.AUDITOR_SIGN_NAME C10_AUDITOR_SIGN_NAME,
    STG_CONTRACT_AUTOMATION.AWARD_DT C11_AWARD_DT,
    STG_CONTRACT_AUTOMATION.BID_DT C12_BID_DT,
    STG_CONTRACT_AUTOMATION.CC_ORDINANCE_DT C13_CC_ORDINANCE_DT,
    STG_CONTRACT_AUTOMATION.CC_ORDINANCE_NUMBER C14_CC_ORDINANCE_NUMBER,
    STG_CONTRACT_AUTOMATION.CC_ORDINANCE_REQUIRED_FL C15_CC_ORDINANCE_REQUIRED_FL,
    STG_CONTRACT_AUTOMATION.CITYATRNY_SIGN_DT C16_CITYATRNY_SIGN_DT,
    STG_CONTRACT_AUTOMATION.CITYATRNY_SIGN_NAME C17_CITYATRNY_SIGN_NAME,
    STG_CONTRACT_AUTOMATION.CITY_PROJECT_NUMBER C18_CITY_PROJECT_NUMBER,
    STG_CONTRACT_AUTOMATION.CLERK_FILING_NUMBER C19_CLERK_FILING_NUMBER,
    STG_CONTRACT_AUTOMATION.CLERK_RECORDER_SIGN_DT C20_CLERK_RECORDER_SIGN_DT,
    STG_CONTRACT_AUTOMATION.CLERK_RECORDER_SIGN_NAME C21_CLERK_RECORDER_SIGN_NAME,
    STG_CONTRACT_AUTOMATION.COMPETITIVE_BID_CMT C22_COMPETITIVE_BID_CMT,
    STG_CONTRACT_AUTOMATION.COMPETITIVE_BID_FL C23_COMPETITIVE_BID_FL,
    STG_CONTRACT_AUTOMATION.CONT_AMENDMENT_NUMBER C24_CONT_AMENDMENT_NUMBER,
    STG_CONTRACT_AUTOMATION.CONT_CONTROL_NUMBER C25_CONT_CONTROL_NUMBER,
    STG_CONTRACT_AUTOMATION.CONT_DESC C26_CONT_DESC,
    STG_CONTRACT_AUTOMATION.CONT_EXIST_TERM_END_DT C27_CONT_EXIST_TERM_END_DT,
    STG_CONTRACT_AUTOMATION.CONT_EXIST_TERM_START_DT C28_CONT_EXIST_TERM_START_DT,
    STG_CONTRACT_AUTOMATION.CONT_PROP_TERM_END_DT C29_CONT_PROP_TERM_END_DT,
    STG_CONTRACT_AUTOMATION.CONT_PROP_TERM_START_DT C30_CONT_PROP_TERM_START_DT,
    STG_CONTRACT_AUTOMATION.CONT_REQUESTOR_NAME C31_CONT_REQUESTOR_NAME,
    STG_CONTRACT_AUTOMATION.CONT_REQUEST_DT C32_CONT_REQUEST_DT,
    STG_CONTRACT_AUTOMATION.CONT_TYPE C33_CONT_TYPE,
    STG_CONTRACT_AUTOMATION.CONT_WORK_TYPE C34_CONT_WORK_TYPE,
    STG_CONTRACT_AUTOMATION.DOLLAR_AMT_PRIOR_CONT_TOTAL C35_DOLLAR_AMT_PRIOR_CONT_TOTA,
    STG_CONTRACT_AUTOMATION.DOLLAR_AMT_THIS_REQUEST C36_DOLLAR_AMT_THIS_REQUEST,
    STG_CONTRACT_AUTOMATION.DSBO_APRV_DT C37_DSBO_APRV_DT,
    STG_CONTRACT_AUTOMATION.INITIATING_AUTHORITY_NAME C38_INITIATING_AUTHORITY_NAME,
    STG_CONTRACT_AUTOMATION.MAYOR_SIGN_DT C39_MAYOR_SIGN_DT,
    STG_CONTRACT_AUTOMATION.MAYOR_SIGN_NAME C40_MAYOR_SIGN_NAME,
    STG_CONTRACT_AUTOMATION.MOFIN_SIGN_DT C41_MOFIN_SIGN_DT,
    STG_CONTRACT_AUTOMATION.MOFIN_SIGN_NAME C42_MOFIN_SIGN_NAME,
    STG_CONTRACT_AUTOMATION.NEW_TOTAL_IF_EXECUTED C43_NEW_TOTAL_IF_EXECUTED,
    STG_CONTRACT_AUTOMATION.PERSON_PHONE C44_PERSON_PHONE,
    STG_CONTRACT_AUTOMATION.PREVAILING_WAGE_REQUIRED_FL C45_PREVAILING_WAGE_REQUIRED_F,
    STG_CONTRACT_AUTOMATION.PROGRAM C46_PROGRAM,
    STG_CONTRACT_AUTOMATION.REQ_BUSINESS_UNIT C47_REQ_BUSINESS_UNIT,
    STG_CONTRACT_AUTOMATION.RISK_AND_SAFETY_APRV_DT C48_RISK_AND_SAFETY_APRV_DT,
    STG_CONTRACT_AUTOMATION.TECHSERV_REVIEW_REQUIRED_FL C49_TECHSERV_REVIEW_REQUIRED_F,
    STG_CONTRACT_AUTOMATION.VEN_ADDRESS C50_VEN_ADDRESS,
    STG_CONTRACT_AUTOMATION.VEN_ID C51_VEN_ID,
    STG_CONTRACT_AUTOMATION.VEN_NAME C52_VEN_NAME,
    STG_CONTRACT_AUTOMATION.VEN_SIGN_DT C53_VEN_SIGN_DT
    from ALF_STG.STG_CONTRACT_AUTOMATION STG_CONTRACT_AUTOMATION
    where (1=1)
    Default: Query /Execution Plan
    insert into ODI_TEMP.C$_0CONTRACT_AUTOMATION_FACT
    C1_PROCESSINSTANCE_ID,
    C2_WORKFLOW_START_DT,
    C3_WORKFLOW_END_DT,
    C4_WORKFLOW_NAME,
    C5_AGENCY_CONT_ADMIN_NAME,
    C6_AGENCY_DESIGNATION,
    C7_AGENCY_INITIATING_APRV_DT,
    C8_ASSIGNED_CITYATRNY_NAME,
    C9_AUDITOR_SIGN_DT,
    C10_AUDITOR_SIGN_NAME,
    C11_AWARD_DT,
    C12_BID_DT,
    C13_CC_ORDINANCE_DT,
    C14_CC_ORDINANCE_NUMBER,
    C15_CC_ORDINANCE_REQUIRED_FL,
    C16_CITYATRNY_SIGN_DT,
    C17_CITYATRNY_SIGN_NAME,
    C18_CITY_PROJECT_NUMBER,
    C19_CLERK_FILING_NUMBER,
    C20_CLERK_RECORDER_SIGN_DT,
    C21_CLERK_RECORDER_SIGN_NAME,
    C22_COMPETITIVE_BID_CMT,
    C23_COMPETITIVE_BID_FL,
    C24_CONT_AMENDMENT_NUMBER,
    C25_CONT_CONTROL_NUMBER,
    C26_CONT_DESC,
    C27_CONT_EXIST_TERM_END_DT,
    C28_CONT_EXIST_TERM_START_DT,
    C29_CONT_PROP_TERM_END_DT,
    C30_CONT_PROP_TERM_START_DT,
    C31_CONT_REQUESTOR_NAME,
    C32_CONT_REQUEST_DT,
    C33_CONT_TYPE,
    C34_CONT_WORK_TYPE,
    C35_DOLLAR_AMT_PRIOR_CONT_TOTA,
    C36_DOLLAR_AMT_THIS_REQUEST,
    C37_DSBO_APRV_DT,
    C38_INITIATING_AUTHORITY_NAME,
    C39_MAYOR_SIGN_DT,
    C40_MAYOR_SIGN_NAME,
    C41_MOFIN_SIGN_DT,
    C42_MOFIN_SIGN_NAME,
    C43_NEW_TOTAL_IF_EXECUTED,
    C44_PERSON_PHONE,
    C45_PREVAILING_WAGE_REQUIRED_F,
    C46_PROGRAM,
    C47_REQ_BUSINESS_UNIT,
    C48_RISK_AND_SAFETY_APRV_DT,
    C49_TECHSERV_REVIEW_REQUIRED_F,
    C50_VEN_ADDRESS,
    C51_VEN_ID,
    C52_VEN_NAME,
    C53_VEN_SIGN_DT
    values
    :C1_PROCESSINSTANCE_ID,
    :C2_WORKFLOW_START_DT,
    :C3_WORKFLOW_END_DT,
    :C4_WORKFLOW_NAME,
    :C5_AGENCY_CONT_ADMIN_NAME,
    :C6_AGENCY_DESIGNATION,
    :C7_AGENCY_INITIATING_APRV_DT,
    :C8_ASSIGNED_CITYATRNY_NAME,
    :C9_AUDITOR_SIGN_DT,
    :C10_AUDITOR_SIGN_NAME,
    :C11_AWARD_DT,
    :C12_BID_DT,
    :C13_CC_ORDINANCE_DT,
    :C14_CC_ORDINANCE_NUMBER,
    :C15_CC_ORDINANCE_REQUIRED_FL,
    :C16_CITYATRNY_SIGN_DT,
    :C17_CITYATRNY_SIGN_NAME,
    :C18_CITY_PROJECT_NUMBER,
    :C19_CLERK_FILING_NUMBER,
    :C20_CLERK_RECORDER_SIGN_DT,
    :C21_CLERK_RECORDER_SIGN_NAME,
    :C22_COMPETITIVE_BID_CMT,
    :C23_COMPETITIVE_BID_FL,
    :C24_CONT_AMENDMENT_NUMBER,
    :C25_CONT_CONTROL_NUMBER,
    :C26_CONT_DESC,
    :C27_CONT_EXIST_TERM_END_DT,
    :C28_CONT_EXIST_TERM_START_DT,
    :C29_CONT_PROP_TERM_END_DT,
    :C30_CONT_PROP_TERM_START_DT,
    :C31_CONT_REQUESTOR_NAME,
    :C32_CONT_REQUEST_DT,
    :C33_CONT_TYPE,
    :C34_CONT_WORK_TYPE,
    :C35_DOLLAR_AMT_PRIOR_CONT_TOTA,
    :C36_DOLLAR_AMT_THIS_REQUEST,
    :C37_DSBO_APRV_DT,
    :C38_INITIATING_AUTHORITY_NAME,
    :C39_MAYOR_SIGN_DT,
    :C40_MAYOR_SIGN_NAME,
    :C41_MOFIN_SIGN_DT,
    :C42_MOFIN_SIGN_NAME,
    :C43_NEW_TOTAL_IF_EXECUTED,
    :C44_PERSON_PHONE,
    :C45_PREVAILING_WAGE_REQUIRED_F,
    :C46_PROGRAM,
    :C47_REQ_BUSINESS_UNIT,
    :C48_RISK_AND_SAFETY_APRV_DT,
    :C49_TECHSERV_REVIEW_REQUIRED_F,
    :C50_VEN_ADDRESS,
    :C51_VEN_ID,
    :C52_VEN_NAME,
    :C53_VEN_SIGN_DT
    Execution Error
    Session Task fails with
    Status: Error
    Return Code: 7000
    java.lang.ClassCastException
    at oracle.jdbc.driver.OraclePreparedStatement.setObjectCritical(OraclePreparedStatement.java:7822)
    at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:7546)
    at oracle.jdbc.driver.OraclePreparedStatement.setObject(OraclePreparedStatement.java:7919)
    at com.sunopsis.sql.SnpsQuery.updateExecStatement(SnpsQuery.java)
    at com.sunopsis.sql.SnpsQuery.addBatch(SnpsQuery.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execCollOrders(SnpSessTaskSql.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.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.DwgCommandSession.treatCommand(DwgCommandSession.java)
    at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
    at com.sunopsis.dwg.cmd.e.i(e.java)
    at com.sunopsis.dwg.cmd.g.y(g.java)
    at com.sunopsis.dwg.cmd.e.run(e.java)
    at java.lang.Thread.run(Unknown Source)

    Micheal,
    You didnt specify the KMs that you are using. I guess you are using LKM SQL to SQL or SQL to Oracle.
    From your diagnosis of the timestamp data, I would like to add that while using LKM SQL to SQL, it uses Java APIs to load the data. Java timestamp format is different from Oracle timestamp.
    There is thread that talks about this (File based datastore and using date format in those columns) but am unable to locate it.
    Also, this could be a Java compatibility issue. So upgrading a driver to ojdbc6.jar may help.
    Re: JAVA JDK
    If your source and target are both Oracle, then consider using LKM Oracle to Oracle (DBLINK). This will be superfast compared to other KMs as it does a set based processing vs. row based processing that the SQL to SQL km does.

  • HTTP Error with Status code 403 when using ABAP Server Proxies

    Hi All,
    I have been working on ABAP Client and Server proxies in my project. The weblogs by Ravikumar, Prateek Shah,  Siva Maranani & VijayaKumari were very helpful and thank them all for just helpful and guiding postings.
    Interfaces using Client proxies are working fine and have been tested successfully. But I'm facing bit problems with Server Proxies. The scenario is of File to SAP system via XI. Data is coming correct up to Technical routing in pipeline but at call adapter(for Server Proxy to SAP)in XI pipeline I receive Error:
    HTTP response contains status code 403 with the description Business Server Page (BSP) Error Error when sending by HTTP (error code: 403, error text: Business Server Page (BSP) Error)
    Previously I was receiving authentication and authorization related error of status code 401 and then in communication channel I replaced user profile with a user id having role SAP_XI_APPL_SERV_USER. The basis peron has created new user id with role SAP_XI_APPL_SERV_USER  only and that I'm using. I've tried creating a HTTP destination with the created user id and in test connection too receive same error message.
    Please help me out with your inputs and understanding on the topic.
    Thanks and Best Regards
    Prashant Rajani

    Hi Prashant,
    Please take a look at these threads..They deal with the same problem, and they have been resolved here.
    BSP Authorization error
    Service cannot be reached .  error code 403 the reason forbiddn
    403 Error when accessing the server
    Hope your issue gets resolved.
    cheers,
    Prashanth
    P.S Please mark helpful answers

  • ERROR ODI-1134 Agent  encountered an error: ODI-1217: Session PRC_CALL_JAVA_GEO_CDC (472) fails with return code 7000. Caused by: ODI-1226

    ODI-1590: The execution of the script failed. Caused By: org.apache.bsf.BSFException: BeanShell script error: Sourced file: inline evaluation of: ``import oracle.odi.km.exception.OdiKmException; import GeoHub_migrator;  com.Data . . . '' : Typed variable declaration : Class: com.DataMigrator not found in namespace : at Line: 4 : in file: inline evaluation of: ``import oracle.odi.km.exception.OdiKmException; import migrator;  com.Data . . . '' : com .DataMigrator BSF info: PRC_CALL_JAVA_GEO at line: 0 column: columnNo                 at bsh.util.BeanShellBSFEngine.eval(Unknown Source)                 at bsh.util.BeanShellBSFEngine.exec(Unknown Source)                 at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:357)                 at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:173)                 at oracle.odi.runtime.agent.execution.interpreter.SessionTaskScriptingInterpretor.scripting(SessionTaskScriptingInterpretor.java:173)                 at oracle.odi.runtime.agent.execution.SessionTask.scripting(SessionTask.java:117)                 at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:47)                 at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:19)                 at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)                 at oracle.odi.runtime.agent.execution.SessionTask.processTask(SessionTask.java:214)                 at oracle.odi.runtime.agent.execution.SessionTask.doExecuteTask(SessionTask.java:135)                 at oracle.odi.runtime.agent.execution.AbstractSessionTask.execute(AbstractSessionTask.java:856)                 at oracle.odi.runtime.agent.execution.SessionExecutor$SerialTrain.runTasks(SessionExecutor.java:2004)                 at oracle.odi.runtime.agent.execution.SessionExecutor.executeSession(SessionExecutor.java:544)                 at oracle.odi.runtime.agent.processor.TaskExecutorAgentRequestProcessor$1.doAction(TaskExecutorAgentRequestProcessor.java:709)                 at oracle.odi.runtime.agent.processor.TaskExecutorAgentRequestProcessor$1.doAction(TaskExecutorAgentRequestProcessor.java:624)                 at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:203)                 at oracle.odi.runtime.agent.processor.TaskExecutorAgentRequestProcessor.doProcessStartAgentTask(TaskExecutorAgentRequestProcessor.java:789)                 at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor.doProcessStartScenTask(StartScenRequestProcessor.java:570)                 at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$StartScenTask.doExecute(StartScenRequestProcessor.java:1182)                 at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:177)                 at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$1.run(DefaultAgentTaskExecutor.java:64)                 at org.springframework.core.task.SyncTaskExecutor.execute(SyncTaskExecutor.java:49)                 at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor.executeAgentTask(DefaultAgentTaskExecutor.java:78)                 at oracle.odi.runtime.agent.processor.TaskExecutorAgentRequestProcessor.doExecuteAgentTask(TaskExecutorAgentRequestProcessor.java:149)                 at oracle.odi.runtime.agent.processor.TaskExecutorAgentRequestProcessor.process(TaskExecutorAgentRequestProcessor.java:140)                 at oracle.odi.runtime.agent.RuntimeAgent.startScenario(RuntimeAgent.java:884)                 at oracle.odi.runtime.agent.InternalRuntimeAgent.startScenario(InternalRuntimeAgent.java:84)                 at com.sunopsis.dwg.tools.StartScen.startScenOnLocalAgent(StartScen.java:1224)                 at com.sunopsis.dwg.tools.StartScen.actionExecute(StartScen.java:324)                 at com.sunopsis.dwg.function.SnpsFunctionBaseRepositoryConnected.execute(SnpsFunctionBaseRepositoryConnected.java:192)                 at oracle.odi.runtime.agent.execution.SessionTask.execIntegratedFunction(SessionTask.java:942)                 at oracle.odi.runtime.agent.execution.SessionTask.executeOdiCommand(SessionTask.java:575)                 at oracle.odi.runtime.agent.execution.cmd.OdiCommandExecutor.execute(OdiCommandExecutor.java:44)                 at oracle.odi.runtime.agent.execution.cmd.OdiCommandExecutor.execute(OdiCommandExecutor.java:20)                 at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)                 at oracle.odi.runtime.agent.execution.SessionTask.processTask(SessionTask.java:214)                 at oracle.odi.runtime.agent.execution.SessionTask.doExecuteTask(SessionTask.java:135)                 at oracle.odi.runtime.agent.execution.AbstractSessionTask.execute(AbstractSessionTask.java:856)                 at oracle.odi.runtime.agent.execution.SessionExecutor$SerialTrain.runTasks(SessionExecutor.java:2004)                 at oracle.odi.runtime.agent.execution.SessionExecutor.executeSession(SessionExecutor.java:544)                 at oracle.odi.runtime.agent.processor.TaskExecutorAgentRequestProcessor$1.doAction(TaskExecutorAgentRequestProcessor.java:709)                 at oracle.odi.runtime.agent.processor.TaskExecutorAgentRequestProcessor$1.doAction(TaskExecutorAgentRequestProcessor.java:624)                 at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:203)                 at oracle.odi.runtime.agent.processor.TaskExecutorAgentRequestProcessor.doProcessStartAgentTask(TaskExecutorAgentRequestProcessor.java:789)                 at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor.doProcessStartScenTask(StartScenRequestProcessor.java:570)                 at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$StartScenTask.doExecute(StartScenRequestProcessor.java:1182)                 at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:177)                 at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor

    This is the wrong forum for an ODI question.

  • Has anyone gotten an unknown error with the code "-1" when updating their iPhone 4 to iOS 6.1.3?

    I have received the same error while updating me phone for the last two updates and have had to wipe out my entire phone with a restore both times! I am very frustrated with Apple.

    Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.

  • ODI Error: ODI-1217: Session jobname (2197102) fails with return code 700

    Hi All,
    We are getting the below error when running an interface in our ODI 11.1.6 environment.
    ODI-1217: Session <interfacename> (2197102) fails with return code 7000.
    Caused By: com.sunopsis.tools.core.exception.SnpsSimpleMessageException: ODI-17517: Error during task interpretation.
    Task: 147
    java.lang.Exception: BeanShell script error: Parse error at line 26, column 38. Encountered: >= BSF info: Insert flow into I$ table at line: 0 column: columnNo
    at com.sunopsis.dwg.codeinterpretor.SnpCodeInterpretor.transform(SnpCodeInterpretor.java:485)
    at com.sunopsis.dwg.dbobj.SnpSessStep.createTaskLogs(SnpSessStep.java:711)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:461)
    The interface is a simple pass-through one which loads data from one table to another. We have checked in the interface for any discrepancies but could not find any issue. We ran the same interface in another environment and it ran fine there. Restarting the agent also didnt help. We could not find any lead for any solutions. Any help on the issue would be highly appreciated.
    P.S: Interface name has been kept generic to <jobname>
    Thanks,
    Shrinivas

    Please give the code generated in that step ( Insert flow into I$ table.)

  • Transport error failure with return code 12

    Hello Experts
    I was trying to transport a request which consists of four Cubes, Infosources, datasources, Update rules and communication structure from QA to Test. The transport went without any problems from Dev to QA. However, while transporting to Q, it finished with errors with return code 12 with the following error: I tried to import it thrice with no success
    Program terminated (job: RDDEXECL, no.: 21120900)
    I checked in SM37 and the background job for this transport gets terminated everytime with the following dump:
    Error analysis                                                                               
    An exception occurred which is explained in detail below.  The exception, which is assigned to class 'CX_RSR_X_MESSAGE', was not caught and therefore caused a runtime error. The reason for the exception is: No text available for this exception   
    Does anyone has a clue about this?
    Thanks
    Rishi

    Hi Rishi ,
    The Issue may be with the buffer capacity while transporting .
    As i see from the post that you have captured all the objects
    in one request and sent to target system . As per my experience never include all the objects in one Request .
    Try to separate them depending on the onject types ,i mean datasource , infosource , ODS & cube seperately .
    IF you cannot solve the problem , i think it is better to create a new request as i said in Development and try to move them to production .If next time request fail then you can look at the only that particuler Request only .
    IF you have more information please share .
    Thanks
    Santosh

  • -Support package-Test import---Ended with return code:  === 8 ===(Urgent)

    Dear all, using -
    >   SAP ECC 6.0 with IS - AFS 6.0
    Environment  -- Win2k3 with Orc 10.2
    Kernel              700 - 75
    Spam/Saint -     70026
    R3trans -d         <0000>
    STMS is very consistent.
    Met all the pre-requisites when applying Support packs &  going succesfull
    but
    While applying   
    Sapk-60004inafs CRT with sapkh 60009,10,11 in
    Test_import phase it is showing the following error for
    sapkh 60010.
    Test import
    Transport request   : SAPKH60010
    System              : MBD
    tp path             : tp
    Version and release: 370.00.09 700
    R3TRPROGJ_1IRUTZN was repaired in this system
    R3TRPROGJ_1IRUTZN was repaired in this system
    Test import
    End date and time : 20080410100230
    Ended with return code:  ===> 8 <===
    When im runing with 700-75 is it possoble to import latest TP
    <SAR tp_145-20001354.sar TP  145 Info 3317 30.01.2008 >
    in to existing kernel. plaese coment on this as i think it's a TP error.
    please also advice me in different areas.
    Cheers,
    Rahul

    HI thanx a lot ,
    It the same procedure i did & checked your message indicating the same steps .
    Yes ,standard object is repaired in  system & im not aware of that
    & even it is not shown that it is recorded to work bench change request when i started applying the support pack.
    I did the same went to SE03 selected the object .
    Selected lock overview
    Identified the change request & released it.
    I got one more doubt what happens when i set the object to repair flag.
    Cheers ,
    Rahul

  • Error: Test call of transport control program (tp) ended with return code 0

    Hi Experts,
    When we are trying to transport Request.
    Error: Test call of transport control program (tp) ended with return code 0208
    in STMS what are the steps to fallow to just back up the code.
    Any Solutions is Greatly Appreciable...
    Thanks in Advance,
    Ram,

    Hi,
    a)If your system is UNIX check /usr/sap/trans is mounted or not?
    b)After configuring TMS did you save and activate?that can be one reason.
    c)tp might be corrupted.u need to upgrade your tp. (or you can upgrade to the latest kernel)
    Please check the below link
    could not start transport control program tp
    However as suggested by NIbu, you should restart the server once before doing any other checks
    Thanks
    Debdeep
    Edited by: Debdeep  Ray on Jul 13, 2009 4:28 PM

  • Test call of transport control program (tp) ended with return code 0249

    Hi,
    When i release a TR i get the following error
    Pls let me know of what can be the reason for the same
    I did a kernel upgrade 2 days back
    Test call of transport control program (tp) ended with return code 0249
    Message no. TK094
    Diagnosis
    Your transport request could not be exported, since all requirements were not fulfilled.
    Calling the transport control program tp
       "tp EXPCHK BWDK900308 pf=
    WDBSSAPBWD01\sapmnt\trans\bin\TP_DOMAIN_BWD.PFL -Dtransdi"
    which checks the export requirements, returned the following information:
    Return code from tp: 0249
    Error text from tp: ERROR: No connect due to DbSl Load Lib Failure
    System Response
    Further processing is terminated.
    Procedure
    Check the following points:
    u2022     Feasibility of the transport control program tp
    u2022     Parameter settings in the transport profile
    u2022     Availability of the transport directory and the subdirectories (cofiles, data, log, sapnames, bin)
    u2022     Write authorization for the subdirectories
    u2022     Write authorization for the files of the subdirectories cofiles, data, log, sapnames
    Release the request again when the error has been removed

    Hi Balaji,
    End of your question contains the areas to be varified.
    Your SAP seems to be installed in windows environment
    Check transport profile paramater and file permissions.
    Try to browse the directory
    WDBSSAPBWD01\sapmnt\trans\bin\ from start->run
    Check with tp connecting to DB  with tp connect <SID>
    chceck file permission to datafile and cofiles (in case of OS UNIX)
    Regards,
    Ganesh

  • Transport Error - tp finished with return code: 152

    Howdy All,
    I put through some transports into Production on Thursday 22/06/2007 which worked succesfully.
    Nothing has changed in the instance profiles, TP Parameters or the TMS. Now when I try to transport a different request I get the following :
    26.06.2007                              TP                                     1
    Transport executed for:    E75K913986           with command string:
    This is E:\usr\sap\P75\SYS\exe\run\tp.EXE version 340.16.31 (release 640)
    Warning: Parameter DBHOST is no longer used.
    Warning: Parameter DBNAME is no longer used.
    The import of the transport request E75K913986 for system P75 was not performed.
    Please check the tp command. The buffer entry is printed out below.
    P75 buffer:
    TASK                .CLI|PROJECT             |P|CMD I |DD Im |Activ |MainI |MC A
    ---------------+--+--+--
    E75K913986          .300|                    | |0000 |      |      |0000 |
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    SWARNS: Highest tp internal severe warning was: 0152
    tp finished with return code: 152
    meaning:
      Nothing done.
    Transport function error:    Call failed
    E75K913986 has previously been imported. It needs to be re-imported because since it went in another transport (which was created before it) has gone and overwritten some of the objects.
    Your advice / guidence would be greatly appreciated, there doesn't seem to be too many articles about this error.
    Cheers

    I know it has passed 7 years since this problem was recorded, but since we ran into this issue and were looking for assistance, the provided answers above did not apply to our case.  Therefore, we add some tips for the readers:
    Check the TMS alert in the system where the transpor was created.  It can be done in many ways, but you ca do STMS >  Monitor > TMS Alert > TMS Alert Viewer
    Our issue was with retrofit, which did not exist in 2007.  Basically TMS is reporting that the transport of copies that is being expected does not exist, hence "Nothing done".
    Solution was to generate in SolMan via report RETRO_SERVICE_CREATE_RFIT_DATA the missing transport of copies.  Once that was done, we could perform the transport move.
    Regards,
    Juan Carlos

  • Error in transport, ended with return code:  12,  job RDDEXECL cancelled

    Hi Friends,
    When I am trying to import a request in a BW preproduction system, it is giving below error: However, the transport is imoprted successfully in Quality.
    ===================================
    Program terminated (job: RDDEXECL, no.: 09222300)
       See job log
    Execution of programs after import (XPRA)
    End date and time : 20080509092238
    Ended with return code:  ===> 12 <===
    Job log:
    Date        Time      Message
    09.05.2008  09:22:23  Job started
    09.05.2008  09:22:23  Step 001 started (program RDDEXECL, variant , user ID DDIC)
    09.05.2008  09:22:23  All DB buffers of application server unix0001 were synchronized
    09.05.2008  09:22:25  ABAP/4 processor: UNCAUGHT_EXCEPTION
    09.05.2008  09:22:25  Job cancelled
    =======================================
    Kindly advice.
    Thanks & regards,
    Kunal Patel.

    Hello,
    I ran a search for this error and found the following notes:
    SAP Note 966234 - 70SP10: DTP transport and content error
    SAP Note - 1074388 SAPBINews NetWeaver 7.0 BI Support Package 16
    Check if they are relevant for your system.
    Regards,
    Siddhesh

  • [Error during Export] R3load exited with return code 11

    Hi guys,
    While performing and Unicode Migration, during Export Phase, Migration Monitor returned the following error while exporting a package
    ERROR: 2014-06-01 10:57:44 com.sap.inst.migmon.LoadTask run
    Unloading of 'REGUC' export package is interrupted with R3load error.
    Process '/usr/sap/ECP/DVEBMGS00/exe/R3load -e REGUC.cmd -datacodepage 4102 -l REGUC.log -stop_on_error' exited with return code 11.
    For mode details see 'REGUC.log' file.
    Standard error output:
    sapparam: sapargv(argc, argv) has not been called!
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    REGUC.log details:
    (As you see, it does not provide reasons of this error, all messages are informative and alike all other Packages logs)
    /usr/sap/ECP/DVEBMGS00/exe/R3load: START OF LOG: 20140601105052
    /usr/sap/ECP/DVEBMGS00/exe/R3load: sccsid @(#) $Id: //bas/740_REL/src/R3ld/R3load/R3ldmain.c#4 $ SAP
    /usr/sap/ECP/DVEBMGS00/exe/R3load: version R7.40/V1.8
    Compiled Jul 23 2013 21:30:53
    /usr/sap/ECP/DVEBMGS00/exe/R3load -e REGUC.cmd -datacodepage 4102 -l REGUC.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): US7ASCII
    (EXP) INFO: check NameTab widths: Ok.
    (DB) INFO: Export without hintfile
    (RSCP) INFO: UMGCOMCHAR read check, OK.
    (RSCP) INFO: environment variable "I18N_POOL_WIDTH" is not set. Checks are active.
    (RSCP) INFO: I18N_NAMETAB_TIMESTAMPS not in env: checks are ON (Note 738858)
    (RSCP) INFO: UMGSETTINGS nametab creation: ok.
    (RSCP) INFO: Global fallback code page = 1160
    (RSCP) INFO: Common character set is  not  7-bit-ASCII
    (RSCP) INFO: Collision resolution method is 'fine'
    (RSCP) INFO: R3trans code pages = Normal
    (RSCP) INFO: EXPORT TO ... code pages = Normal
    (RSCP) INFO: Check for invalid language keys: activated
    (RSCP) INFO: I18N_NAMETAB_NORM_ALLOW = 999999999
    (RSCP) INFO: I18N_NAMETAB_NORM_LOG   = 1000000002
    (RSCP) INFO: I18N_NAMETAB_ALT_ALLOW  = 10000
    (RSCP) INFO: I18N_NAMETAB_ALT_LOG    = 10003
    (RSCP) INFO: I18N_NAMETAB_OLD_ALLOW  = 0
    (RSCP) INFO: I18N_NAMETAB_OLD_LOG    = 500
    (RSCP) INFO: init SUMG interface (3#$Revision: #1 $); package name: "REGUC".
    (RSCP) INFO: "REGUC001.xml" created.
    (GSI) INFO: dbname   = "ECP20030615080638
    (GSI) INFO: vname    = "ORACLE "
    (GSI) INFO: hostname = "ecp "
    (GSI) INFO: sysname  = "SunOS"
    (GSI) INFO: nodename = "ecp"
    (GSI) INFO: release  = "5.10"
    (GSI) INFO: version  = "Generic_142900-13"
    (GSI) INFO: machine  = "sun4u"
    Tried to find what does R3load Return Code 11 means, but I couldnt find further information on this.
    Any hint of what is causing this error?
    (Please disregard any Filesystem issues since all of them have available space)
    Best!

    After using latest R3load patch, it provides furher information on the log file.
    -------------------- Start of patch information ------------------------
    patchinfo (patches.h): (0.070) R3ldctl: fix CDS views creation in upgrade export mode (note 2
    017805)
    DBSL patchinfo (patches.h): (0.022) Smaller corrections in release 7.40 (th, dp, vmc, dpmon)
    (note 1821404)
    --------------------- End of patch information -------------------------
    process id 27326
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): US7ASCII
    (EXP) INFO: check NameTab widths: Ok.
    (DB) INFO: Export without hintfile
    (RSCP) INFO: UMGCOMCHAR read check, OK.
    (RSCP) INFO: environment variable "I18N_POOL_WIDTH" is not set. Checks are active.
    (RSCP) INFO: I18N_NAMETAB_TIMESTAMPS not in env: checks are ON (Note 738858)
    (RSCP) INFO: UMGSETTINGS nametab creation: ok.
    (RSCP) INFO: Global fallback code page = 1160
    (RSCP) INFO: Common character set is  not  7-bit-ASCII
    (RSCP) INFO: Collision resolution method is 'fine'
    (RSCP) INFO: R3trans code pages = Normal
    (RSCP) INFO: EXPORT TO ... code pages = Normal
    (RSCP) INFO: Check for invalid language keys: activated
    (RSCP) INFO: I18N_NAMETAB_NORM_ALLOW = 999999999
    (RSCP) INFO: I18N_NAMETAB_NORM_LOG   = 1000000002
    (RSCP) INFO: I18N_NAMETAB_ALT_ALLOW  = 10000
    (RSCP) INFO: I18N_NAMETAB_ALT_LOG    = 10003
    (RSCP) INFO: I18N_NAMETAB_OLD_ALLOW  = 0
    (RSCP) INFO: I18N_NAMETAB_OLD_LOG    = 500
    (RSCP) INFO: init SUMG interface (3#$Revision: #1 $); package name: "REGUC".
    (RSCP) INFO: "REGUC003.xml" created.
    (GSI) INFO: dbname   = "ECP20030615080638
    (GSI) INFO: vname    = "ORACLE                          "
    (GSI) INFO: hostname = "ecp                                                             "
    (GSI) INFO: sysname  = "SunOS"
    (GSI) INFO: nodename = "ecp"
    (GSI) INFO: release  = "5.10"
    (GSI) INFO: version  = "Generic_142900-13"
    (GSI) INFO: machine  = "sun4u"
    (GSI) INFO: instno   = "6120023288"
    (RTF) ########## WARNING ###########
            Without ORDER BY PRIMARY KEY the exported data may be unusable for some databases
    (RDI) WARNING: /respaldo/ECP_Export/ABAP/DATA/REGUC.STR: cannot find version token "ver:" at line 1
    (RDI) WARNING: /respaldo/ECP_Export/ABAP/DATA/REGUC.STR: unknown file format, assuming version 2
    (EXP) INFO: table REGUC will be exported with sorting (task modifier)
    ------------------ C-STACK ----------------------
    [0] t_splay ( 0x1020df850, 0xb3, 0x4386, 0x100a02078, 0x0, 0x1020df870 ), at 0xffffffff7b9629
    94
    [1] t_delete ( 0x1020df850, 0x4348, 0x1d9870, 0x1000d0408, 0xffffffff7bb3c000, 0x0 ), at 0xff
    ffffff7b9627e4
    [2] realfree ( 0x101ee7590, 0x1f82b1, 0x1d9cd0, 0x1f82b0, 0xffffffff7bb3c000, 0x101ee7590 ),
    at 0xffffffff7b9623b0
    [3] _malloc_unlocked ( 0x7d40, 0x200000, 0x101edf840, 0x0, 0x101ee7580, 0x0 ), at 0xffffffff7
    b961eb4
    [4] malloc ( 0x7d39, 0x2388, 0x1da428, 0x10038fe84, 0xffffffff7bb3c000, 0x2000 ), at 0xffffff
    ff7b961c28
    [5] rstg_get ( 0x2, 0x0, 0x2, 0x7d10, 0x0, 0x10077d8c0 ), at 0x10038ff4c
    [6] c3_uc_new_cache ( 0x100a02078, 0x284db0, 0x284c00, 0x10077d8c0, 0x100a02108, 0xb3 ), at 0
    x1000d1ce8
    [7] c3_uc_seek_cache ( 0xb3, 0xff79, 0xffffffff7ffcae3e, 0x100a02078, 0x10189fa48, 0x10077d8c
    0 ), at 0x1000d188c
    [8] c3_uc_new_tabcache ( 0x0, 0xb3, 0x4386, 0x100a02078, 0xb3, 0x10077d8c0 ), at 0x1000d13fc
    [9] c3_uc_insert_record_in_cache ( 0xffffffff7ffcb04e, 0x10189fa48, 0x100a02078, 0x100a024c8,
    0xb3, 0x1058c8f84 ), at 0x1000d0408
    [10] c3_uc_insert ( 0x0, 0x100a02078, 0x0, 0x0, 0x10077d8c0, 0xffffffff7ffcb04e ), at 0x1000c
    f944
    [11] c3_uc_convert_table_entry ( 0x1015c61f8, 0x0, 0x100a02078, 0x0, 0x10189f408, 0x31a000 ),
    at 0x1000ce314
    [12] c3_uc_convert_logic_table ( 0x1015c61f8, 0x100a02078, 0x0, 0x4a, 0x100638dc0, 0x10077d8c
    0 ), at 0x1000cdb18
    [13] c3_uc_convert_cluster_data ( 0x100a02078, 0xffffffff7ffcbc50, 0x1015c6428, 0x1015c61f8,
    0x10077d8c0, 0x0 ), at 0x1000cd10c
    [14] c3_uc_convert_cluster_item ( 0xffffffff7ffcbc78, 0xffffffff7ffcbc50, 0x100954770, 0x1038
    6f6e0, 0xffffffff7ffcbb8c, 0x100a02812 ), at 0x1000be1d4
    [15] process_task ( 0xffffffff7ffcbc78, 0xffffffff7ffcbc50, 0x100954770, 0x100a02810, 0x10063
    32e0, 0x10077d8c0 ), at 0x1000b2f58
    [16] CnvCluster ( 0x1014642d0, 0x100954670, 0x100aa9610, 0x2849b8, 0x284800, 0x6cb978 ), at 0
    x1000b1f8c
    [17] cnv_clust2 ( 0x100aa9580, 0xffffffff7ffcc258, 0x100954770, 0xfc0, 0x107d00, 0x100954670
    ), at 0x100062714
    [18] cnv_cp ( 0x100aa9580, 0xffffffff7ffcc258, 0x100aa95e0, 0x0, 0x10077d8c0, 0x1d6c00 ), at
    0x100064644
    [19] process_buffer ( 0x100aa9580, 0xffffffff7ffcc258, 0xfff00, 0x100a97bd0, 0x10, 0x100aa95b
    0 ), at 0x10007162c
    [20] execute_table_unload ( 0xffffffff7ffed610, 0xffffffff7ffdc4b0, 0x0, 0x100aa9580, 0xfffff
    fff7ffcc258, 0x10077d8c0 ), at 0x10006c488
    [21] export_table_task ( 0xffffffff7ffed610, 0x0, 0xffffffff7ffdc368, 0xffffffff7ffcc330, 0xf
    fffffff7ffeedb8, 0xffffffff7ffeec60 ), at 0x10006c934
    [22] db_unload ( 0x100a97b0d, 0xffffffff7ffed610, 0x0, 0x10077d8c0, 0xffffffff7ffeec60, 0xfff
    fffff7bb47540 ), at 0x10006d148
    [23] main_r3ldmain ( 0x72ec00, 0xffffffff7ffff448, 0xffffffff7ffff228, 0xffffffff7bb47540, 0x
    1005fc290, 0x0 ), at 0x1000514e0

Maybe you are looking for

  • How do i transfer a song from macbook to my touch

    I've been trying to put songs that weren't purchased, but downloaded on my macbook onto my touch.  Have had no success.  HELP!

  • No service for system sap*** client *** , sm58 error

    Hi Friends When I am trying to send message from My Xi system to R/3 system I am getting error., No service for system SAPSXD, client 001 in Integration Directory I had searched it on sdn n found that this is very common error. I had gone through blo

  • Can i hook up my gamecube to my m9340f desktop?

    This desktop included the RCA and S-Video ports on the front panel.  How can i use these to hook up my Gamecube? i tried to look in windows media center to pick up a different input, but could not find anything.

  • Problem declaring and using a REF CURSOR

    I'm having a real problem using a REF CURSOR type Here's the DECLARE and the start of the BEGIN I've so far developed. DECLARE TYPE r1 IS RECORD ( szvcapc_pidm szvcapc.szvcapc_pidm%TYPE, szvcapc_term_code szvcapc.szvcapc_term_code%TYPE, szvcapc_reque

  • Query in Template Designer

    Hello, I'm trying to create a word template in template designer for appointments (BUS2000126). I've created a web service in the web service tool. In the web service tool I found a query, Query for Activities [ BTQAct ], which seems useful. I have a