ODI-1217 session fails with return code 904

Hi all,
I am anil, I new to ODI, can any one help me in it.
I have just created a one on one mapping, and then executed it, and I am getting "ODI-1217 session fails with return code 904" this error, what to do, why it happens, can any have any idea.
Thanks,
Anil

Hi,
it just returns this error.Could you copy here all error  ?
Regards

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

  • 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

  • Transport request migration failed with return code 12

    Hi ,
    A transport request was created to capture deletion of bex query via Tcode RSZDELETE. The deletion TR was moved to Quality box successfully and query got deleted. But when same TR was moved to Production box, TR failed with return code 12. Program terminated (job:RDDEXECL). Upon checking the job log overview for this job, runtime error ITAB_DUPLICATE_KEY happend causing session to terminate. can anyone pls suggest me how to fix this issue and why this has caused. Need to fix this immediately as it is in production environment. Please help.
    In ST22 i could see the below error details:
    Thanks,
    Vishnu

    as per the dump, system is trying to insert a unique number which is already in the system. You sure the transport is only for deletion of the query? Can you please check the import logs in the test system and should tell you what action performed during import.

  • OCIEnvNlsCreate failed with return code -1

    Hi, we're getting this error when running SQL Server 2005 Reporting Services to connect to an Oracle 9i database. The report works fine locally but breaks on the web. Another user has posted about this same exact issue to Microsoft's SSRS forum, but with no answer: http://tinyurl.com/ynqv7o
    Your help is much appreciated. Thank you.

    Check Re: OCIEnvNlsCreate failed with return code -1

  • DB13 error -- Function DB6_PLAN_DELETE_BATCH failed with return code = Job

    hello All,
    when I try to delete or edit any DBA Job in transaction DB13 the following error is displayed:
    An error occurred when processing system
    Function DB6_PLAN_DELETE_BATCH failed with return code = Job error
    How can I fix this error and delete or change my DBA jobs?
    My syste is SAP ECC 6.0 SR3 - Solaris 10 - Oracle 10.2.0.4.0
    Thanks
    Hernando

    Hello Hernando,
    Let's see what this SAP Note says,
    Note 1093883 - ORACLE: Function module DB6_PLAN_ADD_BATCH fails
    Edit: However, 'valid release' makes confusion
    Regards
    Subbarao
    Edited by: subbarao chinta on Oct 8, 2009 9:00 PM

  • Backng up failed with return code 255 ...Help!!!

    Hi,
    I am in a process of backing up Oracle application server 10g through "Configure Backup/Recovery Settings" feature of the app server, when I provide the directories for:
    1. Log File Location     
    2. Configuration Files Backup Location     
    3. Metadata Repository Database Backup Location
    4. Metadata Repository Database SID
    and click on OK it provides me the following error:
    "The command <ORACLE_HOME>/perl/5.6.1/bin/MSWin32-x86/perl.exe <ORACLE_HOME>\backup_restore/bkp_restore.pl -m configure -h <ORACLE_HOME> -f > <ORACLE_HOME>\backup_restore\logs/2008-12-06_13-36-02_output.log failed with return code 255"
    And the log file says -"Unable to get dbid from the database."
    Please Help..!!!
    Thanks

    This turns out to be a non-issue. I re-installed JDK 1.6,
    thinking this might have been the problem, but as it turns out,
    this Windows machine was a VM, and there haven't been any issues
    with other VM's, only this one, leading me to conclude the problem
    was the VM. We've since migrated off this machine and recycled
    it.

  • DB2SET DB2WORKLOAD=SAP Fails with Return Code 238

    Not sure which forum to post this, hopefully this is the right one.  I am in the middle of setting up a sandbox for CRM and during the install, updating the database registry, the install fails with the following error;
    db2set DB2WORKLOAD=SAP finished with return code 238.
    OS AIX PPC64 I think the version is 5.3
    DB2 9 FP5
    I can't seem to find anything by google, but I am sure this is just a simple fix.

    Hi All,
    The SAP installation stopped with following error ...
    DB2SET DB2WORKLOAD=SAP Fails with Return Code 227
    Please help me in solving this issue .....
    Regards,
    Kumar Kadali

  • OCIEnvCreate failed with return code -1

    Ciao a tutti, ho il seguente problema (purtroppo...):
    applicazione asp.net;
    utilizzo odp.net 9.2 per accedere a un db oracle 9i;
    sul server sono state installate in sequenza: oracle client 9, odp.net 10.2, disinstallate odp.net 10.2 e installate odp.net 9.2;
    Alla disinstallazione di odp.net 10.2 è comunque rimasta sotto la root oracle del file system una cartella odac\10.2.0 con le librerie di odp.net 10.2
    Dall'applicazione apro una connessione (utilizzando in modo estemporaneo) la classe OracleConnection di System.Data.OracleClient del framework 2.0
    Al momento dell'apertura mi dà il seguente errore:
    OCIEnvCreate failed with return code -1 but error message text was not available
    Qualcuno sa come fare ? Grazie. Ciao

    I think you deinstall some ..... it will be nice if you can put it in English ;-)
    Ming Man

  • Msiexec failed with return code 1603 / installing SAP MMC Snap-In and creat

    I am installing SAP ABAP trial on windows 7 and I have encountered some problems.
    Please help me solve this problem.
    Phase 2 : install common system files
    Error happened during this step: installing SAP MMC Snap-In and creating shortcuts
    Error message:
    Running msiexec failed with return code 1603: Schwerwiegender Fehler bei der Installation.
    Commandline was msiexec.exe /norestart /L sapmmcX86u.log /i sapmmcX86u.msi /qn
    If you want the installer to retry, choose Yes. If you want the installer to abort the installation, choose No.
    I have alreday given the permission/rights that are necessary for the user who is installing the system.

    Hello All,
    We also faced the same error, I would like to share the solution steps which we have applied.
    Solution :
    Refer Note 1236002 - Error during the SAP MMC MSI installation or uninstallation
    As per the note :
    Download utility “Microsoft Fix It” from http://support.microsoft.com/mats/Program_Install_and_Uninstall
    You have the option to run this utility online or you can download the folder structure following the instructions on this page
    Then copy the Fix it Portable folder to the computer with the problem and run the Launch Fix it application
    What Microsoft Fix It fixes...
    Removes bad registry key on 64 bit operating systems.
    Windows registry keys that control the upgrade (patching) data that become corrupted.
    Resolves problems that prevent new programs from being installed.
    Resolves problems that prevent programs from being completely uninstalled and blocking new installations and updates.
    Use this troubleshooter for an uninstall only if the program fails to uninstall using the windows add/remove programs feature.
    Best Regards..

  • Error: OCIEnvCreate failed with return code -1

    I am trying to run a 3rd party software that access Oracle. I have set up the ODBC connections and tested the connections. They tested successfully. But when I try and connect to Oracle using this tool I get the following error: OCIEnvCreate failed with return code -1. Any help would be greatly appreciated. Thanks

    792208 wrote:
    I am trying to run a 3rd party software that access Oracle. I have set up the ODBC connections and tested the connections. They tested successfully. But when I try and connect to Oracle using this tool I get the following error: OCIEnvCreate failed with return code -1. Any help would be greatly appreciated. Thanksif the connection request actually gets to the listener, then it will be logged.
    If no record exists within listener.log file, then the root cause & solution are external to Oracle.

  • CoCreateInstance fails with return code -2147221008

    I'm calling
      HRESULT retval = CoCreateInstance(SQLNCLI_CLSID, NULL,
                                          CLSCTX_INPROC_SERVER,
                                          IID_IDBInitialize,
                                          (void **) &m_pIDBInitialize);
    and it returns the above return code. I don't know what in the world it means or how to get an error message out of it.
    The only possible return values for CoCreateInstance listed in
    http://msdn.microsoft.com/en-us/library/windows/desktop/ms686615%28v=vs.85%29.aspx
    are
    S_OK
    REGDB_E_CLASSNOTREG
    CLASS_E_NOAGGREGATION
    E_NOINTERFACE
    E_POINTER
    #define S_OK                                   ((HRESULT)0L)
    #define REGDB_E_CLASSNOTREG              _HRESULT_TYPEDEF_(0x80040154L)
    #define CLASS_E_NOAGGREGATION            _HRESULT_TYPEDEF_(0x80040110L)
    #define E_NOINTERFACE                    _HRESULT_TYPEDEF_(0x80004002L)
    #define E_POINTER                        _HRESULT_TYPEDEF_(0x80004003L)
    The values in decimal respectively are 0, 2147746132, 2147746064, 2147500034 and 2147500035. None of them is the value I got.
    Please help before I shoot myself.

    Hello ,
    I would suggest you to have a look at
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/f8417fdc-03e3-4f73-b165-b39a90fb1b90/cocreateinstance-fails-with-return-code-2147221008
    It seems that the meaning of this error code is : "CoInitialize has not been called. "
    As I have given up VC++ since the arrival of VS 2003 and VC# , I cannot give you more explanations.
    A moderator may move your thread towards the VC++ forum if you want more explanations or help ( for myself , I prefer to do the move only after the original poster ( you PriorityCustomer ) has posted his/het agreement.
    Have a nice day
    Mark Post as helpful if it provides any help.Otherwise,leave it as it is.

  • Function DB6_PLAN_STOP_BATCH_JOB failed with return code = Job error

    Hi team,
    I have issue with "SAP_COLLECTOR_FOR_PERFMONITOR" Job .it has been Finished but in Job Log I get error as below:
    Job started
    Step 001 started (program RSCOLL00, variant , user ID DDIC)
    Clean_Plan:Cleanup of DB13 Plannings
    Clean_Plan:started by RSDBPREV                       on server sapqas01
    Clean_Plan:Cleaning up jobs of system QAS
    Function DB6_PLAN_STOP_BATCH_JOB failed with return code = Job error
    Clean_Plan:terminated with error
    REASON=Job error
    Database system not supported
    Reorganization of the database started
    Reorganization of the database ended
    Job finished
    I have alredy reschedule this Job in 000 with DDIC User.
    Please help me ,
    Thanks
    Vijay

    Hello Vijay,
    The "Database system not supported" error you see, suggests that your TCOLL table is not setup correctly. You probably have a report scheduled in your TCOLL which is for a different DB then the one you run.
    If the collector canels all the time, then this is probably a report which is scheduled to run every hour in your TCOLL. If it only cancels sometimes, then it should be easier to identify which report is causing it in your TCOLL.
    The bottom line is to ensure your TCOLL is setup correctly and that you are not running DB reports there that are for a different DB than the one you use. The SAP note you follow to setup your TCOLL table depends on your SAP system version:
    12103 - Contents of the TCOLL table
    970449 - Contents of TCOLL table in SAP_BASIS 640
    966309 - Contents of table TCOLL in SAP_BASIS 700
    966631 - Contents of TCOLL table in SAP_BASIS 710
    Regards,
    Brendan

  • Running msiexec failed with return code 1619: While running SOFTWARE PROVISIONING MGR 1.0

    Hello All SAP Basis Guys,
    Running msiexec failed with return code 1619: getting this error
    While running SOFTWARE PROVISIONING MGR 1.0 (for Windows Server on IA32 32bit ) for renaming (Domain name change) the SAP ECC 6.0 server on top of Windows Server 2003 x86 which is a 32 bit OS.
    I am using the SAPCAR (for Windows Server on IA32 32bit ) to extract .SAR
    can anyone please help me with this ?
    List of attached for your reference.
    1. Available versions of SPWM for windows in marketplace.
    2. Window version details of KC1GSCSAP6 server (GS1 system).
    3. Error screen while running SWPM
    Thanks,
    John

    Issue has been resolved, its a bug in SWPM tool.
    Problem:
    SAPCAR is extrating the "sapmmcx86u.msi" under the folder DBINDEP.
    But while running the tool, system is trying to open "sapmmcx86u.msi" from the path "common\install" folder.
    Solution:
    After you received the error, copy path "sapmmcx86u.msi" to "common\install" folder and you will be good.

Maybe you are looking for

  • How do I disable your annoying screen urging an update to a newer version of firefox?

    You are annoying me and it may cause me to delete Firefox and use another browser if you do not frankly and forthrightly answer my question and not skirt the issue and pretend you are addressing a question about auto-updates because that is not my qu

  • V$parameter in pl/sql

    wht cant i access table v$parameter in pl/sql. I can query the table from sql plus. When I try using a cursor having this table in the query, the procedure fails to compile I tried execute immediate, it gives run time error saying table or view does

  • AXI DB2 distributed sap systems and rsh

    Hello, we are running sap with aix 5.3 and db2 v9. our application server, central instance and database are running on different servers. Until now we are using rsh to start the distibuted systems. security colleagues asked us to change to ssh. we h

  • MacBook Pro Shuts Down During Bootup

    Hey Everyone, My MacBook Pro (15", Late-2008, First-Gen Unibody) is having a pretty serious issue during startup. When I press the power button, the computer begins the startup sequence as usual, and reaches the grey screen with the Apple logo and th

  • I'm trying to purchase a subscription for nat geo and it keeps saying i cant

    I'm trying to purchase a subscription for nat geo and it keeps saying i cant