URGENT:  ERROR when trying to execute ssoexp.csh script

Hello,
I am trying to execute the ssoexp.csh script and I keep getting an error. Here is some background info:
I am running the ssoexp.csh (UNIX) script from the production server.
Steps:
- Set the environment to the source <Portal_home>
- cd to the directory where the script is located
- set the ORACLE_SID to my development database (because I previously received an error that indicated to set the ORACLE_SID)
- ssoexp.csh -s portal30_sso -p ****** -d sspexp.dmp -c oracle.database
I get the following error:
SP2-0642: SQL*Plus internal error state 2165, context 4294967295:0:0
Unable to proceed
SP2-0642: SQL*Plus internal error state 2166, context 4294967294:2:0
Unable to proceed
SP2-0642: SQL*Plus internal error state 2166, context 4294967294:2:0
Unable to proceed
SP2-0642: SQL*Plus internal error state 2166, context 4294967294:8:0
Unable to proceed
SP2-0642: SQL*Plus internal error state 2166, context 4294967294:3:0
Unable to proceed
SP2-0152: ORACLE may not be functioning properly
LRM-00109: could not open parameter file 'so_export.par'
LRM-00113: error when processing file 'so_export.par'
EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
EXP-00000: Export terminated unsuccessfully
PLEASE HELP!!!
Thank you,
Claudia Zanni

Hi Priya,
1.The entries for the initialization in the BW system are contained in the RSSDLINIT table for the DataSource/source system combination. Compare these with the entries in the ROOSPRMSC table in the OLTP system.
2. If there are NO entries in the RSSDLINIT table in BW, use transaction RSA7 to delete the delta queue for this DataSource/BW application combination in the source system (OLTP).
3.Once you deleted all the entries,In Infopackage scheduler option,delete all the init selections to proceed further.
In which system u r going to do this.....Quality or production.(Better,you check with basis to delete the entries.)
Regards
Kumar

Similar Messages

  • Getting errors when trying to execute CRUD programs

    Hi All
    I am trying to execute one of the CRUD programs for creating , updatying or deleting data in MDM server and a m getting a few errors .Could anybody advise.
    Created on Jun 6, 2007
    package com.sap.nw.mdm.rig;
    import com.sap.nw.mdm.rig.programs.data.blobs.BLOBDataProgram;
    import com.sap.nw.mdm.rig.programs.data.checkout_checkin_rollback.CheckOutCheckInRecordsProgram;
    import com.sap.nw.mdm.rig.programs.data.crud.CRUDDataProgram;
    import com.sap.nw.mdm.rig.programs.data.crud.bulk.BulkCRUDDataProgram;
    import com.sap.nw.mdm.rig.programs.data.keymapping.KeyMappingProgram;
    import com.sap.nw.mdm.rig.programs.data.search.SearchProgram;
    import com.sap.nw.mdm.rig.programs.data.search.attribute.AttributeSearchProgram;
    import com.sap.nw.mdm.rig.programs.data.search.field.FieldSearchProgram;
    import com.sap.nw.mdm.rig.programs.data.syndication.SyndicationProgram;
    import com.sap.nw.mdm.rig.programs.data.workflow.WorkflowProgram;
    import com.sap.mdm.data.RegionProperties;
    import com.sap.nw.mdm.rig.repository.Repository;
    import com.sap.nw.mdm.rig.server.Server;
    This class is the starting point to execute all sample programs.
    To see a description of the various programs you can execute, please have a look at the
    documentation for the following classes.  There are static variables in each of these
    classes that point to the various programs that can be executed with a description of
    what the program does.
    <ul>
    <li>{@link com.sap.nw.mdm.rig.programs.data.blobs.BLOBDataProgram}
    <li>{@link com.sap.nw.mdm.rig.programs.data.checkout_checkin_rollback.CheckOutCheckInRecordsProgram}
    <li>{@link com.sap.nw.mdm.rig.programs.data.crud.CRUDDataProgram}
    <li>{@link com.sap.nw.mdm.rig.programs.data.crud.bulk.BulkCRUDDataProgram}
    <li>{@link com.sap.nw.mdm.rig.programs.data.keymapping.KeyMappingProgram}
    <li>{@link com.sap.nw.mdm.rig.programs.data.search.SearchProgram}
    <li>{@link com.sap.nw.mdm.rig.programs.data.search.attribute.AttributeSearchProgram}
    <li>{@link com.sap.nw.mdm.rig.programs.data.search.field.FieldSearchProgram}
    <li>{@link com.sap.nw.mdm.rig.programs.data.syndication.SyndicationProgram}
    <li>{@link com.sap.nw.mdm.rig.programs.data.workflow.WorkflowProgram}
    </ul>
    @author Richard LeBlanc
    public class Application {
         private Application() {
    Starts the application and executes a program
    @param args - not required
         static public void main(String[] args) {
              System.out.println("876876");
              Application app = new Application();
              System.out.println("11111");
              Program program = null;
              System.out.println("22222");
    Simply uncomment the line that contains the program you wish to execute and run this class.
    Blob Programs
    //          program = BLOBDataProgram.RETRIEVE_AND_WRITE_IMAGE_TO_FILE;
    //          program = BLOBDataProgram.RETRIEVE_AND_WRITE_PDF_TO_FILE;
    Checkout/Checkin Data Programs
    //          program = CheckOutCheckInRecordsProgram.CHECK_OUT_NEW_CHECK_IN;
    //          program = CheckOutCheckInRecordsProgram.CHECK_OUT_NEW_ROLLBACK;
    //          program = CheckOutCheckInRecordsProgram.CHECK_OUT_EXISTING_CHECK_IN;
    //          program = CheckOutCheckInRecordsProgram.CHECK_OUT_EXISTING_ROLLBACK;
    Create Read Update Delete (CRUD) Data Programs
    //          program = CRUDDataProgram.CRUD_HIERARCHY_TABLE;
              program = CRUDDataProgram.CRUD_MAIN_TABLE;
    //          program = CRUDDataProgram.CRUD_MAIN_TABLE_WITH_FLAT_AND_HIERARCHY_LOOKUP_FIELDS;
    //          program = CRUDDataProgram.CRUD_MAIN_TABLE_WITH_QUALIFIED_LOOKUP_FIELD;
    //          program = CRUDDataProgram.CRUD_MAIN_TABLE_WITH_TAXONOMY_LOOKUP_FIELD;
    //          program = CRUDDataProgram.CRUD_TAXONOMY_TABLE_WITH_ATTRIBUTES;
              System.out.println("333333");
    Bulk Create Read Update Delete (CRUD) data programs
    (many records at once)
    //          program = BulkCRUDDataProgram.BULK_CRUD_MAIN_TABLE;
    KeyMapping Programs
    //          program = KeyMappingProgram.RETRIEVE;
    Search Programs
    //          program = SearchProgram.DRILL_DOWN_SEARCH;
    //          program = SearchProgram.KEYWORD;
    //          program = SearchProgram.MASK;
    //          program = SearchProgram.NAMED_SEARCH;
    //          program = SearchProgram.QUALIFIER;
    Attribute Search Programs
    //          program = AttributeSearchProgram.COUPLED_NUMERIC;
    //          program = AttributeSearchProgram.NUMERIC;
    //          program = AttributeSearchProgram.TEXT;
    Field Search Programs
    //          program = FieldSearchProgram.BOOLEAN;
    //          program = FieldSearchProgram.CURRENCY;
    //          program = FieldSearchProgram.LITERAL_DATE;
    //          program = FieldSearchProgram.LOOKUP;
    //          program = FieldSearchProgram.TEXT;
    Syndication Programs
    //          program = SyndicationProgram.SYNDICATE_PORT;
    Workflow Programs
    //          program = WorkflowProgram.EXECUTE;
              //TODO enter MDS name
              String mdsName = "172.18.139.200"; //the name of the Master Data Server
              String repositoryName = "GDS_1"; //make sure this is the name you use when unarchiving
                                                           //the repository otherwise change it to reflect the name
                                                           //of your repository
              String regionName = "English [US]";
              String userName = "Admin"; //there is an admin user with no password in the provided repository
              String password = ""; //there is an admin user with no password in the provided repository
              System.out.println("67r86587");
              app.start(mdsName, repositoryName, regionName, userName, password, program);
    Establishes a connection to the given server and logs in to the given repository
    with the given logon information and executes the given program
         private void start(String serverName, String repositoryName, String regionName,
                                  String user, String password, Program program) {
              //Create an instance of the MDS
              Server server = Server.getInstance(serverName);
              System.out.println("444444");
              //Get the list of running repositories from the server
              Repository[] repositories = server.getRepositories();
              System.out.println("5555");
              Repository repository = null;
              //Go through the list of repositories and see if any match the
              //given repository name
              for(int i=0, j=repositories.length; i<j; i++){
                   System.out.println("666666bbye");
                   if(repositories<i>.getIdentifier().getName().equals(repositoryName)) {
                        System.out.println(" hello" +repositoryName);
                        repository = repositories<i>;
                        System.out.println(" hi"   + repository);          
              //Get the list of regions for the repository
              RegionProperties[] regions = repository.getRegions();
              RegionProperties region = null;
              //Go through the list of regions and see if any match the given
              //repository name
              for(int i=0, j=regions.length; i<j; i++){
                   System.out.println(" hello");
                   if(regions<i>.getName().equals(regionName)) {
                        region = regions<i>;
                        System.out.println(" 99999" +region);
              //Login to the repository as you would using the Data Manager
              //This creates a user and repository session that are available using
              //repository.getSession()
              repository.login(region, user, password);
              //execute the program from the list above
              program.execute(repository);
              System.out.println(" finally");
              //destroy the session (destroys the repository and user sessions)
              repository.getSession().destroy();
              //close the connection to the MDS
              repository.getServer().closeConnection();
    I am getting the following errors:
    Exception in thread "main" java.lang.IllegalArgumentException: Table with Code 'Products' does not exist in the repository 'GDS_1'
         at com.sap.mdm.internal.schema.RepositorySchemaImpl.getTableSchema(RepositorySchemaImpl.java:136)
         at com.sap.nw.mdm.rig.programs.data.crud.CRUDMainTableRecordProgram.execute(CRUDMainTableRecordProgram.java:33)
         at com.sap.nw.mdm.rig.Application.start(Application.java:211)
         at com.sap.nw.mdm.rig.Application.main(Application.java:157)

    Hi Stephen,
    I assume that a super admin user does not get these error messages, right? If so, this behaviour might come due to missing permissions on PCD objects for the user rubinmd. Please apply note 792370 which explains how to set end user permission on the pcd folder com.sap.ip.collaboration/Rooms
    Kind regards,
    Roland

  • Error when trying to execute ODI Interface

    Hello,
    I receive the following error when I try to execute an ODI interface. The interface contains two models trying to load a .csv file into an Oracle table. The models seem to be working and I can right click on the source file and "View Data". I have specifed LKM File To Oracle (SQLLDR), IKM Oracle Incremental Update, and CKM Oracle. But still receive this error on the fourth step of the execution "Loading - SS_0 - call sqlldr via Jython"
    org.apache.bsf.BSFException: exception from Jython: Traceback (innermost last):
    File "<string>", line 3, in ?
    OS command has signalled errors
         at org.apache.bsf.engines.jython.JythonEngine.exec(Unknown Source)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(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)
    Thank you for your help

    Almost...
    You need the sql loader where the "OS command" will execute it means where the agent is installed (once you will execute it from an agent when at production).
    AND that machine where the agent is, need to "see" the target database through the Oracle Listener (tnsnames)....
    Is just like to execute a Sql Loader from you own machine, but who write the command will be ODI.
    Does it make any sense to you?
    Message was edited by:
    Cezar Santos

  • Runtime error when trying to execute transaction OB58

    Hi all,
    We have upgraded from SAP system 4.6c to ECC 6.0 . We are facing one error in the FI transaction OB58.
    When trying to delete any finanicial version or trying to create any new financial version , we are getting a runtime error which
    states that " Error when attempting to IMPORT object "X011F". and its giving short dump at this point .The description of the error is :
    Short text
        Error when attempting to IMPORT object "X011F".
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPLFAGL_FSV" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
         not caught in
        procedure "FSV_POSITIONS_CONVERT" "(FORM)", nor was it propagated by a RAISING
         clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        When importing the object "X011F", the component 1 in the dataset
        had a different length from the corresponding component of the
        target object in the program "SAPLFAGL_FSV".
        The length is 4 in the dataset, but 32 in the program.
    Thanks,
    Sumit

    Hi Sumit,
    We Upgraded our system from 4.6C to ECC 6.0 and
    I am facing same error. We applied note 1544367. After applying not also we are facing issue during
    import x011p to lt_x011p
             i011z to lt_x011z
             x011v to lt_x011v
             x011s to lt_x011s
             x011f to lt_x011f   
    from database rfdt(bs) client p_mandt
                                   id p_versn
                            accepting padding
                             ignoring conversion errors.
    You faced same issue after applying note or if you have any solution please let me know.
    Regards,
    Mahesh

  • Error when tried to execute ODI interface for Essbase

    Hi,
    I am trying to load metadata from a file to Essbase. Bur when i am trying to execute the interface, i am getting an error. It reads as follows
    Cannot start execution
    The sourcedatatype is null for the column : ParentName and the technology: Hyperion essbase.

    Hi John,
    I have gone ahead and deleted the Hyperion essbase technology and imported it similar to Hyperion Planning. Now i am able to see only 3 datatypes. Date, String and Numeric.
    I have setup all the connections and created the interface also.
    But when i executed it i got the following error
    org.apache.bsf.BSFException: exception from Jython: Traceback (innermost last):
    File "<string>", line 35, in ?
    AttributeError: class 'com.hyperion.odi.common.ODIConstants' has no attribute 'READER_TYPE'
         at org.apache.bsf.engines.jython.JythonEngine.exec(Unknown Source)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(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(Thread.java:595)
    What is the mistake i have done. Please let me know

  • Ora:parseEscapedXML error when trying to execute

    Hi,
    I have tried implementing the ora:parseEscapedXML function, I have used the following expression to copy the data in the CODE node to a variable also called CODE.
    ora:parseEscapedXML(bpws:getVariableData('inputVariable','payload','/client:TestXML2ProcessRequest/client:input','/Acc_Type/code'))
    I get the following error message:
    ORABPEL-09500 XPath expression failed to execute. Error while processing xpath expression, the expression is "ora:parseEscapedXML(bpws:getVariableData('inputVariable','payload','/client:TestXML2ProcessRequest/client:input','//Acc_Type/code'))", the reason is FOTY0001: type error. Please verify the xpath query.
    I am not sure if the format of my expression is correct especially - '/Acc_Type/code'
    Thanks

    ora:parseEscapedXML(bpws:getVariableData('inputVariable','payload','/client:testBPELProcessRequest/client:input'))
    This one is generated for me when i create the assign.
    I think the last part is wrong :
    ora:parseEscapedXML(bpws:getVariableData('inputVariable','payload','/client:TestXML2ProcessRequest/client:input/somenamespaceheretoo:Acc_Type/somenamespaceheretoo:code'))
    does this one work?
    i think you need just 1 xpath query on the end

  • Error when trying to execute .class file.

    Hello,
    I downloaded jdk 1.5 from the official java website and have installed it properly. I tried compyling my java program and it gets compilde. But when I try to execute it I keep getting the error "Exception in thread "main" java.lang.NoClassDef Found Error". Please help me .........

    It's because java can't find one (or more) of your .class files. You have to tell it by passing the correct classpath to java.exe.
    Read about the classpath and java launcher here:
    http://java.sun.com/j2se/1.5.0/docs/tooldocs/index.html
    http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/java.html
    Message was edited by:
    Loko
    Because:
    Something is definitely wrong with the formatting

  • Error when trying to execute an Ant target

    Hi!
    I've imported some existing sources into a project in JDev 10g (9.0.5.2).
    When I try to run an Ant task, I get an error (se below)
    When I invoke the corresponding target from a DOS prompt it works.
    I've tried adding all additional Ant addons that are used when running from DOS prompt without any luck (however, the commandline portion of the stack trace (java -classpath...") gets truncated.)
    Anyone have any ideas?
    The error:
    Unable to execute Ant
    java.io.IOException: CreateProcess: java -classpath D:\oracle\jdev10g\jdev\mywork\81\Project1\classes;D:\oracle\jdev10g\jdev\lib\ant.jar;D:\oracle\jdev10g\jdev\lib\optional.jar;D:\oracle\jdev10g\lib\xmlparserv2.jar;D:\oracle\jdev10g\lib\xmlcomp.jar;D:\oracle\jdev10g\jdev\lib\jdev.jar;D:\oracle\jdev10g\jdev\lib\ojc.jar org.apache.tools.ant.Main -Djdev.home=D:\oracle\jdev10g -buildfile D:\source\cvs-eu\main\dsserver\modules\server\build.xml compile error=2
         at java.lang.Win32Process.create(Native Method)
         at java.lang.Win32Process.&lt;init&gt;(Win32Process.java:66)
         at java.lang.Runtime.execInternal(Native Method)
         at java.lang.Runtime.exec(Runtime.java:566)
         at oracle.jdeveloper.compiler.ant.AntRunner.run(AntRunner.java:276)
         at oracle.jdeveloper.compiler.ant.AntRunner.run(AntRunner.java:227)
         at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.buildProjectWithAnt(UnifiedBuildSystem.java:392)
         at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.buildProjectFiles(UnifiedBuildSystem.java:302)
         at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.buildAll(UnifiedBuildSystem.java:591)
         at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.run(UnifiedBuildSystem.java:664)

    Have you modified the "J2SE Version" of the project (on the "libraries" tab in the "Project Properties" dialog)? That is where JDeveloper gets the version of Java used to run Ant. If that doesn't point to a valid JDK, then Ant won't be able to run.
    -Matt Hawkins
    JDeveloper Team

  • Getting the error when trying to execute this perticular package..

    My package is::--------
    ~~~~~~~~~~~
    declare
    type value_tab_t is table of ssc.uut_func_rslt_params.value%TYPE
    index by binary_integer;
    prt_value_tab_t value_tab_t;
    prt_value_tab_t1 value_tab_t;
    begin
    dbms_output.put_line('A');
    prt_value_tab_t(1) := 'MMI-20011585';
    prt_value_tab_t(2) := '1000611';
    prt_value_tab_t(3) := '0708407';
    prt_value_tab_t(4) := '1000611';
    prt_value_tab_t1(1) := '1';
    prt_value_tab_t1(2) := '1';
    prt_value_tab_t1(3) := '2';
    prt_value_tab_t1(4) := '1';
    --for i in 1.. prt_value_tab_t.count  loop
    app_caps.build_AssmPrt_Caps_uut(1, 2578281, null, null, null, 'MMI-20015338', 22, '10100983',
    prt_value_tab_t, prt_value_tab_t1, null,0);
    --dbms_output.put_line(prt_value_tab_t);
    -- dbms_output.put_line(prt_value_tab_t1(i));
    -- end loop;
    end;
    Error massage is:
    ~~~~~~~~~~~~~~
    ORA-06550:line 18,column 5:
    PLS-00306:wrong number of types of argument in call to 'BUILD_ASSMPRT_CAPS_UUT'
    ORA-06550:line 18,column 5:
    PLS-00306:wrong number or types of argument in call to 'BUILD_ASSMPRT_CAPS_UUT'
    ORA-06550: line 18, column 5:
    PL/SQL : Statement ignored

    890306 wrote:
    Error massage is:
    ~~~~~~~~~~~~~~
    ORA-06550:line 18,column 5:
    PLS-00306:wrong number of types of argument in call to 'BUILD_ASSMPRT_CAPS_UUT'
    ORA-06550:line 18,column 5:
    PLS-00306:wrong number or types of argument in call to 'BUILD_ASSMPRT_CAPS_UUT'
    ORA-06550: line 18, column 5:
    PL/SQL : Statement ignoredTo elaborate on Paul's answer ...
    Find out what the call to BUILD_ASSMPRT_CAPS_UUT requires and use that syntax in your call. PLS-00306 means you do not have the right number of arguments in the call or the datatypes you are sending are incompatable. For instance, I might get a similar error if I tried to send a string to MY_FUNCTION when it expects a number something like
      FUNCTION my_function (x number)
      x := my_function('X','Y');In my example both the datatype is wrong ('X' is not a number) and an unexpected value 'Y' exists and PL/SQL won't know what to do with it.
    Check the call very in your program carefully.

  • Photoshop javascript plugin error when trying to execute scripts

    When I try to execute "Layer Comps to Files" script, or any script for the matter.
    I am getting am error that reads:
    "Could not complete the Layer Comps to Files command because Photoshop was unable to find the JavaScript plug-in."
    Thoughts please?

    You have to provide system info and other details. We don't even know your PS version. Could be that the file is simply missing or inaccessible, could be that an overzealous virus scanner is simply blocking all kinds of JavaScript, could be a completely different problem.
    Mylenium

  • Fatal error when trying to execute a dml-command with OLAP API

    Hi,
    when I created an OracleConnection using the jdbc thin driver. The connection works fine.
    But when I try to execute any dml-command with an SPLExecutor the following fatal error occurs:
    oracle.express.idl.util.OlapiException: ORA-37118: Message 37118 not found; product=RDBMS; facility=ORA
    ORA-06512: at "SYS.GENCONNECTIONINTERFACE", line 66
    ORA-06512: at line 1
    Any Suggestions ?

    Hi Priya,
    1.The entries for the initialization in the BW system are contained in the RSSDLINIT table for the DataSource/source system combination. Compare these with the entries in the ROOSPRMSC table in the OLTP system.
    2. If there are NO entries in the RSSDLINIT table in BW, use transaction RSA7 to delete the delta queue for this DataSource/BW application combination in the source system (OLTP).
    3.Once you deleted all the entries,In Infopackage scheduler option,delete all the init selections to proceed further.
    In which system u r going to do this.....Quality or production.(Better,you check with basis to delete the entries.)
    Regards
    Kumar

  • Error when trying to execute process chain !!

    guys,
    i am getting following error ..
    " Inconsistency in delta administration"
    where sud i look and what sud i do ?
    also, when i try to check the process chain, its showing error, and followinig is the descreption..
    "@5D@     A type "Generate Index" process has to follow process "Execute InfoPackage" var.ZPAK_D7GU4Y3X6N71IHL2KX784RWPX in the chain     @35@
    thaks
    Edited by: Hon Bon on Jul 9, 2010 6:37 PM

    well,
    there are 3 meta chain, which runs at 3 different time ( fixed , like 1st run at 8:00 am, 2nd on 6 pm and 3rd on midnite ) and all three meta chains are the same, these meta chain has this pc, which i m working on. and thats y i need to put discision , bcoz for all 3 times there are 3 diff. DTP has to execute.
    so, in my descision i am giving half an hour time interval ( 8:00 am to 9:00 am) , (6pm to 7pm ) and ( midnite to 1 am)
    so, depending upon the time , when the meta chain gets executed , from my PC the only on DTP gets executes. and other 2 gets fails. same way at 6 pm when once again meta chain gets executed  and when it comes to my PC my 2nd descision gets setisfies and execute 2nd DTP with option 2. here option 1 and 3 dont work...and so on
    also , i have mention following formula in my descision
    option 1 --> Local Time >= '14:10:00' AND Local Time <= '14:55:00'
    option 2---> Local Time >= '18:05:00' AND Local Time <= '18:20:00'
    option 3 ---> Local Time >= '20:00:00' AND Local Time <= '20:30:00'
    see, these gives you some more information..
    thanks

  • Error when trying to execute the query

    try { stm = conn.createStatement(); String query= "SELECT RAWTOHEX(secondary_uuid)from entity_to_entity_relationship where primary_uuid ="+oracleUuid(fwi.getProfileUuid())+               "or secondary_uuid="+oracleUuid(fwi.getProfileUuid())+"and type ="+oracleString(RELATIONSHIP_PUBLINK); DBDecoder decoder = new DBDecoder(); List results = decoder.decode(stm.executeQuery(query));
    When I try to execute this block I am getting an error, Can some one tell me whats happening here
    Error in .execute, SQLException: java.sql.SQLException: Invalid column type: getOPAQUE not implemented for class oracle.jdbc.driver.T4CVarcharAccessor

    mighty_123 wrote:
    When I try to execute this block I am getting an error, Can some one tell me whats happening hereAs a guess perhaps you are mixing pieces of different drivers. That is best case. Worst case is that you have a bug in the driver.

  • Error when trying to execute a Info Package

    When i am trying to start a data load in my info package its giving a Message Type X error (short dump) of class RSM1. Its happening with all the info packages for that data source. Even when i just try to save the info package or enter a data selection condition and save it its triggering the same error.
    Can someone explain the reason for the error and the possible diagnosis.
    Thanks,
    Priya

    Hi Priya,
    1.The entries for the initialization in the BW system are contained in the RSSDLINIT table for the DataSource/source system combination. Compare these with the entries in the ROOSPRMSC table in the OLTP system.
    2. If there are NO entries in the RSSDLINIT table in BW, use transaction RSA7 to delete the delta queue for this DataSource/BW application combination in the source system (OLTP).
    3.Once you deleted all the entries,In Infopackage scheduler option,delete all the init selections to proceed further.
    In which system u r going to do this.....Quality or production.(Better,you check with basis to delete the entries.)
    Regards
    Kumar

  • Got ORA error when trying to execute external file using scheduler

    Hi All,
    I have executed the below program. In the log i have seen the error like below
    BEGIN
    dbms_scheduler.create_job('"TEST_JOB_EXE2"',
    job_type=>'EXECUTABLE', job_action=>
    '/home/upncommon/pub/test123'
    , number_of_arguments=>0,
    start_date=>TO_TIMESTAMP_TZ('23-AUG-2013 05.35.27.557242000 AM -04:00','DD-MON-RRRR HH.MI.SSXFF AM TZR','NLS_DATE_LANGUAGE=english'), repeat_interval=>
    'freq = minutely;'
    , end_date=>TO_TIMESTAMP_TZ('24-AUG-2013 05.35.27.000000000 AM ASIA/CALCUTTA','DD-MON-RRRR HH.MI.SSXFF AM TZR','NLS_DATE_LANGUAGE=english'),
    job_class=>'"DEFAULT_JOB_CLASS"', enabled=>FALSE, auto_drop=>FALSE,comments=>
    'Job to test use of dbms_scheduler'
    dbms_scheduler.set_attribute('"TEST_JOB_EXE2"','credential_name',
    '"EXECUTABLE"');
    dbms_scheduler.enable('"TEST_JOB_EXE2"');
    COMMIT;
    END;
    "EXTERNAL_LOG_ID="job_196709_23673",
    ORA-27369: job of type EXECUTABLE failed with exit code: Input/output error
    STANDARD_ERROR="Launching external job failed: Login executable not setuid-root""

    my version details are:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    "CORE 11.2.0.3.0 Production"
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production

Maybe you are looking for

  • I need to know if my wireless & networks setting is correct

    I was changing/customizing the different areas since I just got this replacement phone and I had an app say it had to have roaming turned on to work a few days ago when I was having problems with it freezing up and not working. I thought this was odd

  • No Screen Info During Playback

    Hi all, Just started having the following problem when using my fifth gen Ipod video (30Gig Model) All menus seem to be fine but when i browse and select a any song and press the confirm button it goes to a blank screen. This is the screen i would no

  • Java 1.1 production suite is not installing

    Hi all. I downloaded JavaFX 1.1 production suite on my computer and when i went to install, it said that it's already installed and i'd have to go into my control panel (add/remove program) and uninstall it before i install the new one. however, when

  • Customer Retrun Scenario with out billing (Invoicing)

    Hi Expert, We have customer return scenario in quality, As per SAP standard practice inthis senario sales order created, sales order delivery with pgi and billing happen for this order and material sent to customer. If any defect arises at customer e

  • HARD DRIVE CRASH: So now what?

    My hard drive crashed in my PowerBook G4. Good thing is that I had everything backed up in Time Capsule. (I believe). I just put in a new hard drive- how do I get time capsule to put everything back? Thanks, -Allan