Error thrown while bootstrapping Process Engine

Hi everyone,
I am trying to configure LiveCycle ES for Websphere. During configuring thru Configuration Manager, it throws an error which reads "Relation:default_severity does not exist on object-type: workflow.system_preference". I am not sure where the problem is and what is the work around.
Any help is appreciated.
Thanks,
Meha

Hey John,
The issue is resolved. I could configure Adobe LC ES successfully. Though I am not sure why the above mentioned error occured. I just tried configuring the local DB instead of remote DB.
Thanks a lot for your response!

Similar Messages

  • Error occured while spawning process P247

    HI,
    We are getting this alert "Error occured while spawning process P247".
    Can someone please tell the cause for the same.
    thanks

    Hi,
    Find the full error message.
    Wed Oct 13 11:06:00 2010
    Thread 1 advanced to log sequence 102313 (LGWR switch)
    Current log# 2 seq# 102313 mem# 0: /u01/data05/LTC2PROD/redo02_A.log
    Current log# 2 seq# 102313 mem# 1: /u01/data06/LTC2PROD/redo02_B.log
    Wed Oct 13 11:12:49 2010
    Thread 1 advanced to log sequence 102314 (LGWR switch)
    Current log# 1 seq# 102314 mem# 0: /u01/data01/LTC2PROD/redo01_A.log
    Current log# 1 seq# 102314 mem# 1: /u01/data02/LTC2PROD/redo01_B.log
    Wed Oct 13 11:23:51 2010
    Error occured while spawning process P247; error = 1013
    Wed Oct 13 11:38:02 2010
    Thread 1 advanced to log sequence 102315 (LGWR switch)
    Current log# 6 seq# 102315 mem# 0: /u01/data11/LTC2PROD/redo06_A.log
    Current log# 6 seq# 102315 mem# 1: /u01/data12/LTC2PROD/redo06_B.log
    =============
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for Solaris: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL>
    Thanks
    Zaigam

  • Regarding Error Message while releasing Process Order

    Dear friends,
                              While releasing process order i m getting following error message.
    " Storage location in PUB(loc1) is not same as storage location (loc2)''.
    how to remove this error and release the order.
    Thanks & regards,
    Sandip Sonar

    Hi Sandip,
    The error message LP 099 'Stor. location in PUB X is not the same as prod.stor. location Y' is issued when the system finds  inconsistancy in your customizing of the couple storage location - Production supply area for your components in your process order.                                                                               
    The logic of the storage location determination is the following ...
    The issuing storage location is determined in three steps:                                                                               
    1. First, the issue storage location of the material to be issued   (MARC-LGPRO) is transferred to the material master from the  MRP    data if it is filled.                                                 
    2. The system overwrites this value with the issue storage location from the bill of material (RC29P-LGORT, STPO-LGORT) if it is     filled.                                                               
    3. If the operation to which the component is assigned in production  order contains a work center with supply area, the storage    location is transferred from this supply area (PVBE-LGORT).     However, this transfer is only carried out if storage location  data (MARD) is maintained for this storage location for the    material.                                                                               
    The logic of the supply area determination:                              
    Priority of supply area determination for WM staging is as follows :     
    1. Supply Area of Work Center               (highest priority)   If no supply area defined look to                                     
    2. Supply Area in item of Bill of material  (second priority)   If no supply area defined look to                                     
    3. Material Master View MRP2                (third priority)         If no supply area defined -> Error message LP 099                                                                               
    I hope this helps in sorting the issue.  
    Regards,
    Mauro

  • Error thrown while executing JCo from Lotus domino

    I am trying to use JCo in Java agents in a lotus domino application. Here is my code:(This Java agent calls a Remote enabled function module in SAP which gives the sum of two given numbers)
    import lotus.domino.*;
    import java.util.*;
    import java.io.*;
    import com.sap.mw.jco.*;
    public class JavaAgent extends AgentBase
    private static JCO.Client jClient;
    public JCO.Client getJCOClient(String poolName) throws IOException, JCO.Exception
    System.out.println("Inside getJCOClient method");
    System.out.println("Pool Name : "+ poolName);
    boolean poolExists = false;
    JCO.PoolManager poolManager = JCO.PoolManager.singleton();
    String poolNames[] = poolManager.getPoolNames();
    // To check whether the given pool name already exists
    if(poolNames != null)
    for(int poolIter = 0;poolIter<poolNames.length;poolIter++)
    if(poolNames[poolIter].equals(poolName))
    System.out.println("POOL ID =====>> "+poolName);
    System.out.println("POOL NAMES["+ poolIter "] ========>>"poolNames[poolIter]);
    poolExists = true;
    break;
    String s = String.valueOf( poolExists );
    System.out.println("pool Exists :" + s );
    if(poolExists == false)
    try
    int maxConnections = 50;
    String JCOClient = "111";
    String user = "apabap4";
    String password = "sap123";
    String language = "en";
    String ashost = "172.25.10.68";
    String sysnr = "00";
    //To create an instance of a client pool to the remote SAP system
    System.out.println("Before addClientPool");
    System.out.println("Pool Name : " + poolName);
    JCO.addClientPool(poolName,maxConnections,JCOClient,user,password,language,ashost,sysnr);
    // JCO.createClient(JCOClient, user,password,language, "172.25.10.68");
    System.out.println("New Connection Pool Created");
    catch(JCO.Exception jcoe)
    throw new JCO.Exception(jcoe.getGroup(),jcoe.getKey(),"Error in client pool creation "+jcoe.toString());
    try
    //getClient() method returns a client connection from the specified spool
    jClient = JCO.getClient(poolName);
    catch(JCO.Exception jcoe1)
    throw new JCO.Exception(jcoe1.getGroup(),jcoe1.getKey(),"Error in getting JCO client "+jcoe1.toString());
    return jClient;
    // End of method getJCOClient()
    public void releaseJCOClient() throws JCO.Exception
    try
    JCO.releaseClient(jClient);
    catch(JCO.Exception jcoe2)
    throw new JCO.Exception(jcoe2.getGroup(),jcoe2.getKey(),"Error in releasing client "+jcoe2.toString());
    public void NotesMain()
    try {
    Session session = getSession();
    AgentContext agentContext = session.getAgentContext();
    Document doc = agentContext.getDocumentContext();
    JavaAgent jcoObj = new JavaAgent();
    JCO.Client jClient = null;
    String poolId = new String("EG_POOL");
    IFunctionTemplate ifun;//For function object
    JCO.Function func;
    JCO.ParameterList importParams,exportParams,tableParams;
    try{
    jClient = jcoObj.getJCOClient(poolId);
    System.out.println("After Getting Connection");
    System.out.println("Attributes:" + jClient.getAttributes());
    //Create a repository object
    JCO.Repository mRepository = new JCO.Repository("myJCO_REPOSITORY", jClient);
    //Creating a function object
    ifun = mRepository.getFunctionTemplate("ZSUM");// The Function Name
    func = ifun.getFunction();
    System.out.println("Function name " + func.getName());
    //To get the import parameters in the function module
    importParams = func.getImportParameterList();
    System.out.println("Import parameters"+ importParams);
    importParams.appendValue("OPERAND1",importParams.TYPE_INT,4,"25");
    importParams.appendValue("OPERAND2",importParams.TYPE_INT,4,"25");
    jClient.execute(func);//Executing the function
    //To get the export parameters in the function module
    exportParams = func.getExportParameterList();
    System.out.println("Export parameters" + exportParams);
    int sumVl = exportParams.getInt("SUM");
    Integer sumValue = new Integer(sumVl);
    System.out.println("Sum Value" + sumValue);
    doc.replaceItemValue("txtSum", sumValue.toString());
    //releaseJCOClient();
    catch(IOException ioe)
    ioe.printStackTrace();
    catch(JCO.Exception jcoe1)
    jcoe1.printStackTrace();
    } catch(Exception e) {
    e.printStackTrace();
    While executing this agent I am getting the following exception.
    08/25/2004 06:27:45 PM HTTP JVM: java.lang.ExceptionInInitializerError: JCO.classInitialize(): Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC' Native Library C:\Lotus\Domino\sapjcorfc.dll already loaded in another classloader
    08/25/2004 06:27:45 PM HTTP JVM: at com.sap.mw.jco.JCO.<clinit>(Unknown Source)
    08/25/2004 06:27:45 PM HTTP JVM: at JCoCallTrans.getJCOClient(JCoCallTrans.java:42)
    08/25/2004 06:27:45 PM HTTP JVM: at JCoCallTrans.NotesMain(JCoCallTrans.java:88)
    08/25/2004 06:27:45 PM HTTP JVM: at lotus.domino.AgentBase.runNotes(Unknown Source)
    08/25/2004 06:27:45 PM HTTP JVM: at lotus.domino.NotesThread.run(NotesThread.java:208)
    08/25/2004 06:27:45 PM HTTP JVM: Error cleaning up agent threads
    Also I have placed the jco.jar in lib of jvm in Domino directory i.e.,
    Lotus\Domino\jvm\lib and
    sapjcorfc.dll and librfc32.dll in system32 of WINNT folder.
    Kindly help me to rectify this problem
    Arokiaraj.S

    Hi,
    It is clearly an issue in your map. You can test your map out of Orchestration to make sure it is working.
    "Exception has been thrown by the target of an invocation" is a very generic exception. you
    need the inner exception to see the actual error. You can also try to test the map in the MapTester tool. It also shows also the inner exception. It's designed for BizTalk 2010 but with the .exe file you maybe also can test BizTalk 2006 maps,.
    http://code.msdn.microsoft.com/Execute-a-BizTalk-map-from-26166441
    If this answers your question please mark as answer. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Error Thrown while assinging the value into OBJECT TYPE

    Hi Oracle Experts:
    i was create one Oracle OBJECT, that object contain only one variable, and i created one function which is return the object(system date), but while i complied that procedure i was thrown the error message like ORA-06530: Reference to uninitilized composite .
    can any one tell me how can i use the object variable in the select statement into clause .
    Below i pasted my code.
    CREATE OR REPLACE TYPE str_batch IS OBJECT
    sys_date DATE
    CREATE OR REPLACE FUNCTION F_Ln_Getodperd
    p_s_actype VARCHAR2,
    p_s_acno VARCHAR2,
    p_n_bal NUMBER,
    p_d_prodt DATE
    )RETURN str_batch
    IS
    lstr_od str_batch ;
    BEGIN
    SELECT SYSDATE  INTO lstr_od.sys_date FROM dual; -- Error(Error message shown in below)
    dbms_output.put_line('');
    RETURN lstr_od;
    END;
    Error:
    ORA-06530: Reference to uninitilized composite
    Thanks in advance
    Arun M M

    Hi Mr. Saubhik
    Below i Paste my original source code. Still am facing the same problem while i execute the function. can you please tell me the solution for this.
    OBJECT :
    CREATE OR REPLACE TYPE str_batch IS OBJECT
    batchno NUMBER,
    batchslno NUMBER,
    act_type VARCHAR2(20),
    act_no VARCHAR2(20),
    curr_code VARCHAR2(10),
    amount NUMBER(23,5),
    MOD VARCHAR2(10),
    drcr VARCHAR2(2),
    cheqno VARCHAR2(20),
    cheqdt DATE,
    sts VARCHAR2(4),
    operid NUMBER,
    narr VARCHAR2(300),
    srno VARCHAR2(10),
    rem_type VARCHAR2(10)
    Function :
    CREATE OR REPLACE FUNCTION F_Ln_Getodperd
    p_s_actype IN VARCHAR2,
    p_s_acno IN VARCHAR2,
    p_n_bal IN NUMBER,
    p_d_prodt IN DATE
    )RETURN str_batch
    IS
    lstr_od str_batch ;
    -- Variable Declaration
         v_n_perd     NUMBER;     
         v_n_lnperd     NUMBER;     
         v_n_mon NUMBER;
         v_n_effmon NUMBER;
         v_n_instno NUMBER;
         v_n_odno NUMBER;
         v_n_actual NUMBER(23,5);
         v_n_diff     NUMBER(23,5);
         v_n_inst     NUMBER(23,5);
         v_d_first     DATE;
         v_d_exp DATE;
         v_d_oddt     DATE;
         v_d_lastprod DATE;
         v_s_instmode VARCHAR2(10);
         v_s_inst     VARCHAR2(10);
         v_s_branch VARCHAR2(10);
         v_s_errm VARCHAR2(20000);
    BEGIN
    SELECT F_Get_Brcode INTO v_s_branch FROM dual;
         SELECT pay_c_final,lon_d_expiry, lon_d_lastprod
         INTO     v_s_inst,v_d_exp, v_d_lastprod
         FROM      LOAN_MAST
         WHERE branch_c_code = v_s_branch AND
              act_c_type      = p_s_actype AND
              act_c_no      = p_s_acno;
         IF (p_d_prodt > v_d_exp) THEN
              SELECT CEIL(MONTHS_BETWEEN(p_d_prodt,v_d_exp)) INTO lstr_od.batchslno FROM dual;
              lstr_od.cheqdt := v_d_exp;
              SELECT v_d_lastprod - p_d_prodt INTO lstr_od.batchslno FROM dual;
              --lstr_od.batchslno = DaysAfter(DATE(ldt_lastprod), DATE(adt_prodt))
         ELSE
              IF (v_s_inst = 'N') THEN
                   IF p_d_prodt > v_d_exp THEN
                        SELECT CEIL(MONTHS_BETWEEN(p_d_prodt,v_d_exp)) INTO lstr_od.batchslno FROM dual;
                        lstr_od.cheqdt := v_d_exp;
                   ELSE
                        lstr_od.batchslno := 1;
                   END IF;     
              ELSIF (v_s_inst = 'Y') THEN
                   SELECT first_d_due,lon_c_instperd,lon_n_perd
                   INTO v_d_first,v_s_instmode,v_n_lnperd
                   FROM LOAN_MAST
                   WHERE branch_c_code = v_s_branch AND
                        act_c_type      = p_s_actype AND
                        act_c_no          = p_s_acno;     
              SELECT CEIL(MONTHS_BETWEEN(p_d_prodt,v_d_first)) INTO v_n_mon FROM dual;          
                   IF v_n_mon > 0 THEN
                        SELECT NVL(ln_n_balance,0),NVL(ln_n_instlamt,0),NVL(ln_n_instlno,0)
                        INTO v_n_actual,v_n_inst,v_n_instno
                        FROM LOAN_INST_SCH
                        WHERE act_c_type = p_s_actype AND
                             act_c_no     = p_s_acno AND
                             ln_d_effdate = (SELECT MAX(ln_d_effdate)
                                                           FROM     LOAN_INST_SCH
                                                           WHERE act_c_type = p_s_actype AND
                                                                     act_c_no = p_s_acno AND
                                                                     ln_d_effdate < p_d_prodt);
                        IF (p_n_bal > v_n_actual) THEN
                             IF v_n_inst > 0 THEN
                             lstr_od.batchslno := (p_n_bal - v_n_actual) / v_n_inst;
                             END IF;
                        ELSE
                             lstr_od.batchslno := 1;
                        END IF;
                        IF lstr_od.batchslno = 0 THEN
                        lstr_od.batchslno := 1;
                        END IF;
                        --FOR FULL OD
                        IF (v_n_mon > v_n_lnperd) THEN
                        lstr_od.batchslno := (v_n_mon - v_n_lnperd) + lstr_od.batchslno;
                        END IF;
                        IF v_s_instmode = 'Q' THEN
                        lstr_od.batchslno := lstr_od.batchslno * 3;
                        ELSIF v_s_instmode = 'H' THEN
                        lstr_od.batchslno := lstr_od.batchslno * 6;
                        ELSIF v_s_instmode = 'Y' THEN
                        lstr_od.batchslno := lstr_od.batchslno * 12;
                        END IF;
                        SELECT p_d_prodt - lstr_od.batchslno INTO lstr_od.cheqdt FROM dual;
                        IF v_s_instmode = 'M' THEN
                        v_n_odno := v_n_instno - lstr_od.batchslno; -- TO get OD DATE
                             SELECT ln_d_effdate
                             INTO lstr_od.cheqdt
                             FROM LOAN_INST_SCH
                             WHERE act_c_type = p_s_actype AND
                                  act_c_no     = p_s_acno AND
                                  ln_n_instlno = v_n_odno;
                             IF SQLCODE = -1 THEN
                             lstr_od.batchslno := -1;
                             RETURN lstr_od;
                             END IF;
                        END IF;
                        ELSE
                        lstr_od.batchslno := 1;
                        END IF;                                             
              END IF;                                             
              END IF;     
    RETURN lstr_od;
    EXCEPTION
    WHEN OTHERS THEN
    v_s_errm := SQLERRM;
    dbms_output.put_line(SQLERRM);
    lstr_od.batchslno := -1;
    RETURN lstr_od;
    END;
    /

  • Error thrown while trying to connect the remote data base

    Hello,
    I am trying to connect the database(orcale 7) which is in the remote machine using Microsoft JDBC driver. But the following errors are thrown. If any one know how to solve this, pl let me throw some lite on this.
    Errir message as/./.......................
    java.sql.SQLException: [Microsoft][ODBC driver for Oracle][Oracle]ORA-12505: TNS:listener could not resolve SID given in connect descriptor
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:4089)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:4246)
    at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(JdbcOdbc.java:1136)
    at sun.jdbc.odbc.JdbcOdbcConnection.initialize(JdbcOdbcConnection.java:148)
    at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:167)
    at java.sql.DriverManager.getConnection(DriverManager.java:457)
    at java.sql.DriverManager.getConnection(DriverManager.java:159)
    at lucasCustomization.processmgmt.helper.EISConnector.getConnectEIS(EISConnector.java:24)
    at wt.workflow.expr.WfExpression2570849.execute_ROBOT_EXPRESSION_(WfExpression2570849.java:27)
    at java.lang.reflect.Method.invoke(Native Method)
    at wt.workflow.definer.WfExpression.executeTransition(WfExpression.java, Compiled Code)
    at wt.workflow.definer.WfExpression.execute(WfExpression.java, Compiled Code)
    at wt.workflow.robots.WfExpressionRobot.run(WfExpressionRobot.java, Compiled Code)
    at wt.workflow.engine.StandardWfEngineService.runRobot(StandardWfEngineService.java, Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at wt.queue.QueueEntry.execute(QueueEntry.java, Compiled Code)
    at wt.queue.ProcessingQueue.execEntry(ProcessingQueue.java, Compiled Code)
    at wt.queue.ProcessingQueue.execEntries(ProcessingQueue.java, Compiled Code)
    at wt.queue.PollingQueueThread.run(PollingQueueThread.java, Compiled Code)
    error..>java.sql.SQLException: [Microsoft][ODBC driver for Oracle][Oracle]ORA-12505: TNS:listener could not resolve SID given in connect descriptor
    ########################error ends...###############
    And also i added i code for your reference
    import java.util.*;
    import java.sql.*;
    public class EISConnector
    public static String getConnectEIS() throws Exception
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    System.out.println("Connection3 :");
    Connection con1=DriverManager.getConnection("jdbc:odbc:eiscon","scott","tiger");
    System.out.println("statement2");
    PreparedStatement stmt1=con1.prepareStatement("insert into tryout(toolnumber,toolname) values(?,?)");
    stmt1.setString(1,doc.getNumber());
    stmt1.setString(2,doc.getName());
    System.out.println("st");
    int i=stmt1.executeUpdate();
    System.out.println("i :"+i);
    System.out.println("End");
    con1.close();
    catch(Exception e)
    e.printStackTrace();
    System.out.println("error..>"+e);
    return new String("End of Connection");
    }

    http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/jdbc_faq.htm#_59_
    The thin drivers are classes12.zip/classes111.zip. classes12.zip being the most recent release. You can download it from
    http://otn.oracle.com/software/tech/java/sqlj_jdbc/htdocs/winsoft.html
    (the general download site is http://otn.oracle.com/software/tech/java/sqlj_jdbc/content.html )
    Jamie

  • Deletion marked material should give error message while creating proc ord

    Hello,
    i had marked the material for deletion through T-code MM06 & saved.
    Now when i'm creating the process order for the deleated material, System is giving only Warning message that " Material XXXX in plant XXXX has been marked for deletion."
    But my requirement is system shold give an ERROR message while creating Process Order for the deleted material.

    Yes Brahman is Right,
    Check the followig..
    Go to OMCQ and change the message category  to E- Error message instead of W- Waring message in Message no M7 127, but
    not  M7 121.
    and check it,
    Regards,
    Pavan idlur.

  • Errors in the OLAP storage engine: An error occurred while processing the indexes for the partition of the measure group of the cube from the database.

    Errors in the OLAP storage engine: An error occurred while processing the indexes for the partition of the measure group of the cube from the database.
    I have dropped and recreated a fact table to refresh the data as the table is having identity columns. So not able to directly insert data. After that cube is throwing above error.
    Please suggest.

    Hi Md,
    It hard to analyse the issue base on the limited information, Are there any error message on the log? Under C:\Program Files\Microsoft SQL Server\MSAS11.\OLAP\Log (this could be different for your server), there are 3 log files that are generated:
    msmdrrv.log
    FlightRecorderCurrent.trc
    FightRecorderBack.trc
    The msmdrrv.log simply points to the other two logs. There might be some detail information for this error. Please provide us the detail information about it, so that we can make further analysis.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Errors in the OLAP storage engine: An error occurred while processing the 'vFactUTC_201304_INCR_UPDATE_TEMP_qtfcw_' partition of the 'vFact' mea

    <Error
    ErrorCode="3240034318"
    Description="Errors in the OLAP storage engine: An error occurred while processing the 'vFactUTC_201304_INCR_UPDATE_TEMP_qtfcw_' partition of the 'vFact' measure
    group for the 'vAMGenericUTC' cube from the AC_OLAP database."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
    Any idea abt this error
    Putting details error ..
    <return
    xmlns="urn:schemas-microsoft-com:xml-analysis">
      <results
    xmlns="http://schemas.microsoft.com/analysisservices/2003/xmla-multipleresults">
        <root
    xmlns="urn:schemas-microsoft-com:xml-analysis:empty">
          <Exception
    xmlns="urn:schemas-microsoft-com:xml-analysis:exception"
    />
          <Messages
    xmlns="urn:schemas-microsoft-com:xml-analysis:exception">
            <Error
    ErrorCode="3238395904"
    Description="OLE DB error: OLE DB or ODBC error: Cannot execute the query
    &quot;SELECT
    &quot;Tbl1002&quot;.&quot;idUTCDateTime&quot;
    &quot;Col1145&quot;,&quot;Tbl1002&quot;.&quot;idLocalDateTime&quot;
    &quot;Col1146&quot;,&quot;Tbl1002&quot;.&quot;idDateKey&quot;
    &quot;Col1147&quot;,&quot;Tbl1002&quot;.&quot;idUTCDateKey&quot;
    &quot;Col1148&quot;,&quot;Tbl1002&quot;.&quot;idMinuteKey&quot;
    &quot;Col1149&quot;,&quot;Tbl1002&quot;.&quot;idUTCMinuteKey&quot;
    &quot;Col1150&quot;,&quot;Tbl1002&quot;.&quot;idInstance&quot;
    &quot;Col1151&quot;,&quot;Tbl1002&quot;.&quot;idMetricKey&quot;
    &quot;Col1152&quot;,&quot;Tbl1002&quot;.&quot;idKSKey&quot;
    &quot;Col1153&quot;,&quot;Tbl1002&quot;.&quot;idMaintenanceKey&quot;
    &quot;Col1154&quot;,&quot;Tbl1002&quot;.&quot;MetricMin&quot;
    &quot;Col1155&quot;,&quot;Tbl1002&quot;.&quot;MetricMax&quot;
    &quot;Col1156&quot;,&quot;Tbl1002&quot;.&quot;MetricCount&quot;
    &quot;Col1157&quot;,&quot;Tbl1002&quot;.&quot;MetricSum&quot;
    &quot;Col1158&quot;,&quot;Tbl1002&quot;.&quot;MetricLog&quot;
    &quot;Col1159&quot;,&quot;Tbl1002&quot;.&quot;MetricSumOfSquares&quot;
    &quot;Col1160&quot;,&quot;Tbl1002&quot;.&quot;MetricSumOfLogSquares&quot;
    &quot;Col1161&quot;,&quot;Tbl1002&quot;.&quot;idTextData&quot;
    &quot;Col1162&quot;,&quot;Tbl1002&quot;.&quot;idLoad&quot;
    &quot;Col1143&quot;,CONVERT(smalldatetime,&quot;Tbl1002&quot;.&quot;idDateKey&quot;,0)
    &quot;Expr1004&quot;,CONVERT(smallint,&quot;Tbl1002&quot;.&quot;idMinuteKey&quot;,0)
    &quot;Expr1006&quot;,(1)
    &quot;Expr1008&quot; FROM
    &quot;DM_VSQL51_SOPM33_QDB&quot;.&quot;dbo&quot;.&quot;vData&quot;
    &quot;Tbl1002&quot; WHERE
    &quot;Tbl1002&quot;.&quot;idLocalDateTime&quot;&gt;=(1362096000)
    AND &quot;Tbl1002&quot;.&quot;idLocalDateTime&quot;&lt;=(1364774399)
    AND &quot;Tbl1002&quot;.&quot;idLoad&quot;&gt;=(9243)
    AND &quot;Tbl1002&quot;.&quot;idLoad&quot;&lt;=(9304)&quot;
    against OLE DB provider &quot;SQLNCLI10&quot; for linked server
    &quot;DM_DS_SOPM33_QDB&quot;. ; 42000; The OLE DB provider
    &quot;SQLNCLI10&quot; for linked server
    &quot;DM_DS_SOPM33_QDB&quot; reported an error. Execution terminated by the provider because a resource limit was reached.;
    42000." Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3240034318"
    Description="Errors in the OLAP storage engine: An error occurred while processing the 'vFact_201303_INCR_UPDATE_TEMP_he3dx_' partition of the 'vFact' measure
    group for the 'vAMGeneric' cube from the AC_OLAP database."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3238002695"
    Description="Internal error: The operation terminated unsuccessfully."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3238002695"
    Description="Internal error: The operation terminated unsuccessfully."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3239837698"
    Description="Server: The operation has been cancelled."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3238395904"
    Description="OLE DB error: OLE DB or ODBC error: Operation canceled; HY008."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3240034318"
    Description="Errors in the OLAP storage engine: An error occurred while processing the 'vFact_201304_INCR_UPDATE_TEMP_kq5tw_' partition of the 'vFact' measure
    group for the 'vAMGeneric' cube from the AC_OLAP database."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3238002695"
    Description="Internal error: The operation terminated unsuccessfully."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3238002695"
    Description="Internal error: The operation terminated unsuccessfully."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3238395904"
    Description="OLE DB error: OLE DB or ODBC error: Operation canceled; HY008."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3240034318"
    Description="Errors in the OLAP storage engine: An error occurred while processing the 'vFactUTC_201304_INCR_UPDATE_TEMP_qtfcw_' partition of the 'vFactUTC'
    measure group for the 'vAMGenericUTC' cube from the AC_OLAP database."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3238002695"
    Description="Internal error: The operation terminated unsuccessfully."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
            <Error
    ErrorCode="3238002695"
    Description="Internal error: The operation terminated unsuccessfully."
    Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
          </Messages>
        </root>
      </results>
    </return>

    against OLE DB provider
    &quot;SQLNCLI10&quot; for linked server
    &quot;DM_DS_SOPM33_QDB&quot;. ; 42000; The OLE DB provider
    &quot;SQLNCLI10&quot; for linked server
    &quot;DM_DS_SOPM33_QDB&quot; reported an error. Execution terminated by the provider because a resource limit was reached.;
    42000." Source="Microsoft SQL Server 2008 Analysis Services"
    HelpFile="" />
    Hi Born,
    Have you check your disk space? This issue might be caused by not enougl disk sapce. Here is a similar thread about this topic:
    http://social.technet.microsoft.com/Forums/en-US/sqlanalysisservices/thread/1783c640-5d4d-4086-bbdc-05adc45e3816/
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support

  • SCSM 2012 R2 error 'An exception was thrown while processing ProcessDiscoveryData for session ID uuid:

    Hi All,
    My environment details:
    SCSM 2012 R2
    SCCM 2012 R2 connector configured
    When I looked into the event viewer , I find the following error occurring continuously while the SCCM 2012 synchronization
    Error Event 26319
    An exception was thrown while processing ProcessDiscoveryData for session ID uuid:xxxxx
    Exception message: The relationship source specified in the discovery data item is not valid.
    Relationship source ID: xxxx
    Rule ID: xxxxxx
    Full Exception: Microsoft.EnterpriseManagement.Common.DiscoveryDataInvalidRelationshipSourceException: The relationship source specified in the discovery data item is not valid.
    This error is accompanied by the below warning
    Event:34113
    Connector SCCM Connector -Primary Site 
    Error writing changes to entity of type Microsoft.Windows.Peripheral.LogicalDisk with DisplayName XXXXXXX
    Message: The relationship source specified in the discovery data item is not valid.
    Relationship source ID: XXXXXXX
    Rule ID: XXXXXXX
    If this error occurs with every synchronization, examine view Cached_CMv5_LogicalDisks for correctness or the schema for type Microsoft.Windows.Peripheral.LogicalDisk in management pack Microsoft.Windows.Peripheral.Library.
    Event:33333
    Data Access Layer rejected retry on SqlError:
    Request: p_RelationshipDiscovered -- (RelationshipId=f449d88a-ecbf-5b16-40be-c085391a6380), (SourceEntityId=ccdf084d-254f-0ad4-ba2e-189b75ff109a), (TargetEntityId=07734206-0880-a4ec-a638-df20ccbdcbaf), (RelationshipTypeId=e4c6f8ce-0763-51c6-6421-c424a93a1eb6),
    (DiscoverySourceId=df6eae9f-f14f-4e6e-9f3c-c1effa193fbe), (HealthServiceEntityId=34b1c704-120c-1175-9fe3-411e2c0aac30), (PerformHealthServiceCheck=False), (TimeGenerated=09/01/2015 04:15:26), (SourceEntityLastModified=), (IsRelationshipAlreadyDiscovered=False),
    (RelationshipInserted=False), (LastModified=), (ChangeId=), (RETURN_VALUE=1)
    Class: 16
    Number: 777980002
    Message: The specified relationship doesn't have a valid source.
    From the events, it is clear that the problem is with SCCM connector and in the warning it mention to check the management pack ,
    Microsoft.Windows.Peripheral.Library
    whether need to update any MP ??
    I tried to resolve this, but ended up in aforum which suggested to do a restart of server .But since it is Prod , restart will not be easy.
    If any suggestions , it will be good to resolve this
    Thank you  

    Hi,
    Please install UR3 and check the result:
    Update Rollup 3 for System Center 2012 R2 Service Manager
    http://support.microsoft.com/kb/2962041
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Graphing engine is not responding.A fatal error occurred while processing the request. The server responded with: java.lang.NumberFormatException.

    Dear Team,
    I have implemented OBIA 7964 for HRA. Some reports throw the error Graphing engine is not responding.A fatal error occurred while processing the request. The server responded with: java.lang.NumberFormatException. It is not happened all reports. Only some of the reports showed this kind of error. Kindly help me to resolve this issue.
    We have used
    OBIA 7964
    OBIEE 11.1.1.7.140527
    Thanks & Regards,
    Gauthaman S

    Issue was, Font been defined as 7.5 (may be font size decimal not supported ).the problem solved

  • Getting Error while doing Reverse Engineering Processes.

    Hi all,
    I am new to ODI, i tried ODI with SAP ABAP, after i my all settings after doing reverse Engineer Processes, I cant able to see the Metadata browser while checking Log i am getting the below given error.
    ODI-1217: Session Sap ERP Source (27001) fails with return code 7000.
    ODI-1226: Step Sap ERP Source fails after 1 attempt(s).
    ODI-1229: An error occurred while performing a Reverse operation on model code SAP_ERP_SOURCE.
    Caused By: org.apache.bsf.BSFException: BeanShell script error: Sourced file: inline evaluation of: ``//////////////////////////////////////////////////////////////////////////////// . . . '' : Class: DestinationDataProvider not found in namespace : at Line: 275 : in file: inline evaluation of: ``//////////////////////////////////////////////////////////////////////////////// . . . '' : DestinationDataProvider
    BSF info: Create Java Classes at line: 0 column: columnNo
    Pl. help me to come out from this error.
    bdharanr

    Hi,
    Thanks for the reply.
    I am trying to reverse SAP tables. Initially the Reversal process stuck at Set MetaData step. I stopped the session and restarted it then Set MetaData completed successfully but Set FlexFields give the error.
    Any idea?
    Regards,
    Arsalan.

  • Cannot open Planning application : An error occurred while processing page

    Hi,
    I'm using EPM 11.1.1.3 on Linux Server (Red Hat). Recently, I had to stop and start all services after which I am unable to open any Planning application. It gives me the following error:
    An error occurred while processing this page. Check the log for details.Please close the current tab and open application again
    An error occurred while processing this page. Check the log for details.
    I cannot open it through Workspace also. There aren't any logs in %HYPERION_HOME%/logs/Planning which mention anything about this error. Appreciate if someone could suggest a solution.
    Cheers,
    Sahil

    Thanks for sharing your expert opinions guys. I have checked the suggested log HYPERION_HOME/deployments/Tomcat5/HyperionPlanning/logs/catalina.out
    It seems to be a JDBC connection error. This brings me to the point that I also reconfigured Planning over the existing configuration (8300). could this be the cause of the error as other utilities (Web Analysis, Essbase, Shared Services etc.) are working fine (I did not reconfigure these).
    Kindly have a look at the log below from the aforementioned path and suggest a solution. Greatly appreciate any help.
    Jul 17, 2011 9:45:16 AM org.apache.coyote.http11.Http11BaseProtocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8300
    Jul 17, 2011 9:45:16 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 441 ms
    Jul 17, 2011 9:45:16 AM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    Jul 17, 2011 9:45:16 AM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Hyperion Embedded Java Container/1.0.0
    Jul 17, 2011 9:45:16 AM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    [INFO] HyperionPlanning] - Starting Hyperion Planning...
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    /oracle/hyp/app/common/config/9.5.0.0/product/planning/9.5.0.0/planning_1.xml
    displayName = Planning
    componentTypes =
    priority = 50
    version = 9.5.0.0
    build = 1
    location = /oracle/hyp/app/products/Planning
    taskSequence =
    task =
    *******/oracle/hyp/app/common/config/9.5.0.0/registry.properties
    Creating rebind thread to RMI
    [INFO] HyperionPlanning] - Hyperion Planning started in 3 seconds.
    Jul 17, 2011 9:45:20 AM org.apache.coyote.http11.Http11BaseProtocol start
    INFO: Starting Coyote HTTP/1.1 on http-8300
    Jul 17, 2011 9:45:20 AM org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8302
    Jul 17, 2011 9:45:20 AM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/17 config=null
    Jul 17, 2011 9:45:20 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 4257 ms
    Jul 17, 2011 9:45:36 AM org.apache.coyote.http11.Http11BaseProtocol init
    SEVERE: Error initializing endpoint
    java.net.BindException: Address already in use:8300
         at org.apache.tomcat.util.net.PoolTcpEndpoint.initEndpoint(PoolTcpEndpoint.java:297)
         at org.apache.coyote.http11.Http11BaseProtocol.init(Http11BaseProtocol.java:138)
         at org.apache.catalina.connector.Connector.initialize(Connector.java:1016)
         at org.apache.catalina.core.StandardService.initialize(StandardService.java:580)
         at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:791)
         at org.apache.catalina.startup.Catalina.load(Catalina.java:503)
         at org.apache.catalina.startup.Catalina.load(Catalina.java:523)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:266)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:431)
    Jul 17, 2011 9:45:36 AM org.apache.catalina.startup.Catalina load
    SEVERE: Catalina.start
    LifecycleException: Protocol handler initialization failed: java.net.BindException: Address already in use:8300
         at org.apache.catalina.connector.Connector.initialize(Connector.java:1018)
         at org.apache.catalina.core.StandardService.initialize(StandardService.java:580)
         at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:791)
         at org.apache.catalina.startup.Catalina.load(Catalina.java:503)
         at org.apache.catalina.startup.Catalina.load(Catalina.java:523)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:266)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:431)
    Jul 17, 2011 9:45:36 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 407 ms
    Jul 17, 2011 9:45:36 AM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    Jul 17, 2011 9:45:36 AM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Hyperion Embedded Java Container/1.0.0
    Jul 17, 2011 9:45:36 AM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    [INFO] HyperionPlanning] - Starting Hyperion Planning...
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    /oracle/hyp/app/common/config/9.5.0.0/product/planning/9.5.0.0/planning_1.xml
    displayName = Planning
    componentTypes =
    priority = 50
    version = 9.5.0.0
    build = 1
    location = /oracle/hyp/app/products/Planning
    taskSequence =
    task =
    *******/oracle/hyp/app/common/config/9.5.0.0/registry.properties
    Creating rebind thread to RMI
    [INFO] HyperionPlanning] - Hyperion Planning started in 2 seconds.
    Jul 17, 2011 9:45:39 AM org.apache.coyote.http11.Http11BaseProtocol start
    SEVERE: Error starting endpoint
    java.net.BindException: Address already in use:8300
    Jul 17, 2011 9:45:39 AM org.apache.catalina.startup.Catalina start
    SEVERE: Catalina.start:
    LifecycleException: service.getName(): "Catalina"; Protocol handler start failed: java.net.BindException: Address already in use:8300
    Jul 17, 2011 9:45:39 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 3083 ms
    Jul 17, 2011 9:45:39 AM org.apache.catalina.core.StandardServer await
    SEVERE: StandardServer.await: create[8301]:
    java.net.BindException: Address already in use
    Jul 17, 2011 9:45:39 AM org.apache.coyote.http11.Http11BaseProtocol pause
    INFO: Pausing Coyote HTTP/1.1 on http-8300
    Jul 17, 2011 9:45:39 AM org.apache.catalina.connector.Connector pause
    SEVERE: Protocol handler pause failed
    java.lang.NullPointerException
         at org.apache.jk.server.JkMain.pause(JkMain.java:677)
         at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:162)
         at org.apache.catalina.connector.Connector.pause(Connector.java:1031)
         at org.apache.catalina.core.StandardService.stop(StandardService.java:491)
         at org.apache.catalina.core.StandardServer.stop(StandardServer.java:743)
         at org.apache.catalina.startup.Catalina.stop(Catalina.java:601)
         at org.apache.catalina.startup.Catalina$CatalinaShutdownHook.run(Catalina.java:644)
    [INFO] HyperionPlanning] - Shutting down Hyperion Planning applications...
    [INFO] HyperionPlanning] - Hyperion Planning was stopped
    Unable to create JDBC connection. java.sql.SQLException: [Hyperion][Oracle JDBC Driver]Internal error: Net8 protocol error.
    Unable to set Planning's Oracle connection numeric character to '.'. java.lang.NullPointerException
    Can not set database catalog name, skipping set of catalog name: hypdb
    Unable to create JDBC connection. java.sql.SQLException: [Hyperion][Oracle JDBC Driver]Internal error: Net8 protocol error.
    Unable to set Planning's Oracle connection numeric character to '.'. java.lang.NullPointerException
    Can not set database catalog name, skipping set of catalog name: hypdb
    Unable to create JDBC connection. java.sql.SQLException: [Hyperion][Oracle JDBC Driver]Internal error: Net8 protocol error.
    Unable to set Planning's Oracle connection numeric character to '.'. java.lang.NullPointerException
    Can not set database catalog name, skipping set of catalog name: hypdb
    Can not get JDBC connection.
    java.lang.Exception: No object were successfully created. This can be caused by any of the following: The OLAP Server is not running, The DBMS is not running, the DBMS is running on a different machine that the one specified, the name and password provided were incorrect.
         at java.lang.Thread.run(Unknown Source)
    java.lang.RuntimeException: Error loading objects from data source: java.lang.NullPointerException: JDBCCacheLoader.loadObjects(): jdbc connection was null.
    java.lang.NullPointerException
    Unable to create JDBC connection. java.sql.SQLException: [Hyperion][Oracle JDBC Driver]Internal error: Net8 protocol error.
    Unable to set Planning's Oracle connection numeric character to '.'. java.lang.NullPointerException
    Can not set database catalog name, skipping set of catalog name: hypdb
    Can not get JDBC connection.
    java.lang.Exception: No object were successfully created. This can be caused by any of the following: The OLAP Server is not running, The DBMS is not running, the DBMS is running on a different machine that the one specified, the name and password provided were incorrect.
         Unable to create JDBC connection. java.sql.SQLException: [Hyperion][Oracle JDBC Driver]Internal error: Net8 protocol error.
    Unable to set Planning's Oracle connection numeric character to '.'. java.lang.NullPointerException
    Can not set database catalog name, skipping set of catalog name: hypdb
    Unable to create JDBC connection. java.sql.SQLException: [Hyperion][Oracle JDBC Driver]Internal error: Net8 protocol error.
    Unable to set Planning's Oracle connection numeric character to '.'. java.lang.NullPointerException
    Can not set database catalog name, skipping set of catalog name: hypdb
    Attempted to release a null connection
    java.lang.NullPointerException: JDBCCacheLoader.loadObjects(): jdbc connection was null.
    Unable to create JDBC connection. java.sql.SQLException: [Hyperion][Oracle JDBC Driver]Internal error: Net8 protocol error.
    Unable to set Planning's Oracle connection numeric character to '.'. java.lang.NullPointerException
    Can not set database catalog name, skipping set of catalog name: hypdb
    Can not get JDBC connection.
    java.lang.Exception: No object were successfully created. This can be caused by any of the following: The OLAP Server is not running, The DBMS is not running, the DBMS is running on a different machine that the one specified, the name and password provided were incorrect.
    Attempted to release a null connection
    java.lang.NullPointerException: JDBCCacheLoader.loadObjects(): jdbc connection was null.
    java.lang.RuntimeException: Error loading objects from data source: java.lang.NullPointerException: JDBCCacheLoader.loadObjects(): jdbc connection was null.
    java.lang.NullPointerException
    Unable to create JDBC connection. java.sql.SQLException: [Hyperion][Oracle JDBC Driver]Internal error: Net8 protocol error.
    Unable to set Planning's Oracle connection numeric character to '.'. java.lang.NullPointerException
    Can not set database catalog name, skipping set of catalog name: hypdb
    Unable to create JDBC connection. java.sql.SQLException: [Hyperion][Oracle JDBC Driver]Internal error: Net8 protocol error.
    Unable to set Planning's Oracle connection numeric character to '.'. java.lang.NullPointerException
    Can not set database catalog name, skipping set of catalog name: hypdb

  • Error while deploying process component

    I have created a wsdl (asynchorous mode) to start the process flow. But while deploying it is giving the error.
    I did remove all the reference to output from the wsdl structure. This is in CE 7.2
    Error log:
    Status ERROR
    Plugin : com.sap.ide.tools.services
    code=0
    Deployment problems
    children=[
    Status ERROR
    Plugin : com.sap.ide.tools.services
    code=0
    Deploy Exception.
    com.sap.engine.services.dc.api.deploy.DeployException: [ERROR CODE DPL.DCAPI.1027] DeploymentException.
    Reason: ASJ.dpl_dc.001085 An error occurred while deploying the deployment item [xxx.com_dc_mcr_process].
    ; nested exception is:
         com.sap.engine.services.dc.gd.DeliveryException: [ERROR CODE DPL.DC.3298] An error occurred during deployment of [xxx.com_dc_mcr_process]. Cannot deploy it.
    at com.sap.engine.services.dc.api.deploy.impl.DeployProcessorImpl.deployItems(DeployProcessorImpl.java:891)
    at com.sap.engine.services.dc.api.deploy.impl.DeployProcessorImpl.deploy(DeployProcessorImpl.java:259)
    at com.sap.ide.eclipse.deployer.dc.deploy.DeployProcessor70.deploy(DeployProcessor70.java:104)
    at com.sap.ide.tools.services.dc.EngineDcDeployService.deployFiles(EngineDcDeployService.java:162)
    at com.sap.ide.tools.services.dc.EngineDcDeployService.deploy(EngineDcDeployService.java:85)
    at com.sap.ide.dii05.ui.internal.actions.dc.DcDeployAction$3.run(DcDeployAction.java:234)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    Nested exceptions :com.sap.engine.services.dc.cm.deploy.DeploymentException: ASJ.dpl_dc.001085 An error occurred while deploying the deployment item [xxx.com_dc_mcr_process].
    ; nested exception is:
         com.sap.engine.services.dc.gd.DeliveryException: [ERROR CODE DPL.DC.3298] An error occurred during deployment of [xxx.com_dc_mcr_process]. Cannot deploy it.
    atcom.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:244)
    atcom.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:62)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:273)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:84)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:95)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeployThread.run(DeployThread.java:39)
    atcom.sap.engine.core.thread.execution.Executable.run(Executable.java:115)
    atcom.sap.engine.core.thread.execution.Executable.run(Executable.java:96)
    atcom.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:315)
    Nested exceptions :com.sap.engine.services.dc.gd.DeliveryException: [ERROR CODE DPL.DC.3298] An error occurred during deployment of [xxx.com_dc_mcr_process]. Cannot deploy it.
    atcom.sap.engine.services.dc.gd.impl.ApplicationDeployer.deploy(ApplicationDeployer.java:134)
    atcom.sap.engine.services.dc.gd.impl.InitialApplicationDeployer.performDeployment(InitialApplicationDeployer.java:130)
    atcom.sap.engine.services.dc.gd.impl.InitialGenericDeliveryImpl.deploy(InitialGenericDeliveryImpl.java:57)
    atcom.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:210)
    atcom.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:62)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:273)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:84)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:95)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeployThread.run(DeployThread.java:39)
    atcom.sap.engine.core.thread.execution.Executable.run(Executable.java:115)
    atcom.sap.engine.core.thread.execution.Executable.run(Executable.java:96)
    atcom.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:315)
    Nested exceptions :com.sap.engine.services.deploy.server.utils.DSRemoteException: ASJ.dpl_ds.006193 Error while deploying ear file D:\usr\sap\RCE\J00\j2ee\cluster\server0\temp\tcbldeploy_controller\archives\357\xxx.com~dc_mcr_process.sda; nested exception is:
         java.lang.Exception: com.sap.engine.interfaces.webservices.server.deploy.WSDeploymentException: Exception occurred during web services deployment. Unable to extract web services deployment data for archive xxx.com~dc_mcr_process.wsar, application xxx.com/dc_mcr_process.
         at com.sap.engine.services.webservices.server.deploy.ws.WSDeployProcess.extractWebServicesJ2EEEngineDescriptors(WSDeployProcess.java:293)
         at com.sap.engine.services.webservices.server.deploy.ws.WSDeployProcess.extractWebServicesJ2EEEngineDescriptors(WSDeployProcess.java:254)
         at com.sap.engine.services.webservices.server.deploy.ws.WSDeployProcess.init(WSDeployProcess.java:163)
         at com.sap.engine.services.webservices.server.deploy.WSBaseAbstractDProcess.makeProcess(WSBaseAbstractDProcess.java:320)
         at com.sap.engine.services.webservices.server.deploy.WebServicesDeployManager.deployWebServices(WebServicesDeployManager.java:1052)
         at com.sap.engine.services.webservices.server.deploy.WebServicesDeployManager.deploy(WebServicesDeployManager.java:271)
         at com.sap.engine.services.deploy.server.utils.container.ContainerWrapper.deploy(ContainerWrapper.java:273)
         at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:577)
         at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:296)
         at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:211)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:697)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:755)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:2198)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:394)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:347)
         at com.sap.engine.services.dc.gd.impl.ApplicationDeployer.deploy(ApplicationDeployer.java:116)
         at com.sap.engine.services.dc.gd.impl.InitialApplicationDeployer.performDeployment(InitialApplicationDeployer.java:130)
         at com.sap.engine.services.dc.gd.impl.InitialGenericDeliveryImpl.deploy(InitialGenericDeliveryImpl.java:57)
         at com.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:210)
         at com.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:62)
         at com.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:273)
         at com.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:84)
         at com.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:95)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployThread.run(DeployThread.java:39)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:115)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:96)
         at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:315)
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: WSDL is containing document/literal operations which does not conform with WS-I Basic Profile 1.0 R2204.
         at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.checkWSIConformance(ProxyGeneratorNew.java:4152)
         at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.processSOAPBinding(ProxyGeneratorNew.java:3969)
         at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.initSEI(ProxyGeneratorNew.java:3547)
         at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.initInterfaceMappings(ProxyGeneratorNew.java:912)
         at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.generateAll(ProxyGeneratorNew.java:342)
         at com.sap.engine.services.webservices.server.deploy.ws.WSAltConvertor.convertServiceAltDescriptor(WSAltConvertor.java:228)
         at com.sap.engine.services.webservices.server.deploy.ws.WSAltConvertor.convertServiceAltDescriptors(WSAltConvertor.java:202)
         at com.sap.engine.services.webservices.server.deploy.ws.WSAltConvertor.convertWebServicesJ2EEEngineAltDescriptors(WSAltConvertor.java:182)
         at com.sap.engine.services.webservices.server.deploy.ws.WSAltConvertor.convert(WSAltConvertor.java:128)
         at com.sap.engine.services.webservices.server.deploy.ws.WSDeployProcess.extractWebServicesJ2EEEngineDescriptors(WSDeployProcess.java:276)
         ... 26 more
    Edited by: Mahesh K on Dec 15, 2010 1:28 PM

    Hi Mahesh,
    I see the below in your trace
    "WSDL is containing document/literal operations which does not conform with WS-I Basic Profile 1.0 R2204"
    wsdl:part for a document-literal message must use the "element" attribute.Check your WSDL once , change the input XSD file if needed and reimport.
    Regards, Anil

  • Error Ocurred while processing a data cube

    While processing a cube i am getting following errors:- please help me out to fix it
    1) Errors in the high-level relational engine. The following exception occurred while an operation was being performed on a data source view: Method not found: 'System.Threading.Tasks.Task`1<!!0> System.Threading.Tasks.Task.FromResult(!!0)'..
    2)Errors in the high-level relational engine. The following exception occurred while an operation was being performed on a data source view: .
    3)Errors in the OLAP storage engine: An error occurred while the dimension, with the ID of 'Dimension Metier', Name of 'Dimension Metier' was being processed.
    4)Errors in the OLAP storage engine: An error occurred while the 'Metier ID' attribute of the 'Dimension Metier' dimension from the 'MultidimensionalProject1' database was being processed.
    5)Internal error: The operation terminated unsuccessfully.
    6)Server: The current operation was cancelled because another operation in the transaction failed.
    thank you

    Hi Immortal12,
    What's the version of your SQL Server Analysis Services? Are you encountered this issue while process the cube in SQL Server Management Studio? Please elaborate your scenrio with more deail.
    Currently, we can't figure out the root casue of this issue. So, please help to collect more log information which are benefit for us to do further investigation. Here are some good articles to collect SSAS log informtion:
    Error Configuration for Cube, Partition, and Dimension Processing (SSAS - Multidimensional):
    http://msdn.microsoft.com/en-us/library/ms180058.aspx
    Data collection for troubleshooting Analysis Services issues:
    http://blogs.msdn.com/b/as_emea/archive/2012/01/02/initial-data-collection-for-troubleshooting-analysis-services-issues.aspx
    Regards,
    Elvis Long
    TechNet Community Support

Maybe you are looking for