Max L Import from Server data_file - Essbase 11.1.1.3

I got a problem setting the right path for importing data-files directly from a directory on the server (that is not under the "arborpath").
As I mentioned in the techref:
http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_techref/maxl/ddl/defs.htm#term_filename
the directory to import files from the server can be defined below the "arborpath"-directory.
Importing the files from local site is no problem. My question is if it is possible to change the path for the import to something else than "arborpath"?
Kind regards

Hi!
Thank you for your prompt response. I already tried to set the path the way you posted in the thread:
import database appl-name.dbs-name data from server data_file *"D:\\Mydir\\Myfiles\\MyData.txt"* using server rules_file 'rule-file-name' on error append to 'C:\tmp\lolad_err.txt';
if i do so and the arborpath of the system is:
*"E:\Hyperion\products\Essbase\EssbaseServer\app\"*
i get the following error:
Unable to open File [E:\Hyperion\products\Essbase\EssbaseServer\app\appl-name\dbs-name\D:\\Mydir\\Myfiles\\MyData.txt]
Unexpected Essbase error 1003027
The arborpath and the path to the import-file are merged.
Regards
Edited by: user2651882 on 06.05.2011 00:23

Similar Messages

  • Import from Server Tabular Project creating a new Tabular DB?

    Hi,
    I have a Tabular database on a server want to make some changes to it, for that I have imported Tabular DB through BIDS and trying to makes changes, and what I see is every time I import the tabular DB its creating a New DB on the server with <DBName><UserName><GUID>.
    Is this the Tabular Model behavior or an I missing anything here? 
    How to make the changes to the existing Tabular? 
    Thanks

    Hi SQL_Gun,
    According to your description, you want to modify an existing tabular database. Right?
    In Analysis Services Tabular mode, once the "Import from Server" project is created, the Workspace database will appear in the Analysis Services instance specified in the
    Workspace Server property. The name cannot be set in the Properties window. The default setting of Workspace database is the project name, followed by an underscore, followed by the username, followed by an underscore, followed by a GUID. In this
    scenario, I suggest open the original project which created that tabular database. Modify the project and redeploy it.
    Reference:
    Workspace Database (SSAS Tabular)
    If you have any question, please feel free to ask.
    Simon Hou
    TechNet Community Support

  • Import From Multidimensional Database-Essbase Error 1030724

    Hi all
    OBIEE version is 10.1.3.4.1
    Essbase version is 11.1.1.3
    I am trying to create a repository and selecting Import-> From Multidimensional
    and on the connection screen, i am entering essbase connection information(essbase and obiee are running on the same server) but giving me
    Essbase Error 1030724- Failed to set locale information
    But could not solve this issue!!
    Any ideas!
    Best Regards,
    Kenan

    Hello Kenan,
    We had the same problem, but after adding the system variables the problem was solved.
    Make sure the ARBORPATH and ESSBASEPATH variables are available as System Variables.
    (Right click om my computer and goto Environment Variables).
    Kind regards,
    Peter

  • ODI and Import Data Server in Essbase Error

    Hi,
    I have added Essbase Technology in Topology Manager. When I am trying to add my Essbase Server under Essbase Technology am getting the error. Here are the steps I have followed.
    Trying to add Essbase Server by Import Data Server -- Specified name, username and password
    When I click Test it is giving error like
    Connection Failed.
    java.sql.SQLException: Driver must be specified
    Do we need to specify any information under JDBC tab...
    Which driver we need to select under JDBC Driver and JDBC Url
    Please help me....

    Hi,
    You will not be able to click the test button when using hyperion technologies, this is because they don't operate using JDBC.
    If you have a read of my blog you will see how to set up essbase with ODI
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to pick up file to Import from server instead of client PC??

    I have this code that picks up a file from client machine and processes the file . The code works fine when deployed on local tomcat deployment. But on remote server deployment , behaves differently . its looking for the file on the server How can I change the below code to look for the file on the client ??
    Please help .. any suggetion will be greately appreciated..
    Java code :
    public String importProdCredit() throws Exception {
    FileReader in = null ;
    StringTokenizer st = null;
    String record = null;
    String[] fieldValue = new String[30];
    BufferedReader br = null;
    int x = 0 ;
    FacesContext ctx = FacesContext.getCurrentInstance();
    //HttpServletResponse response = (HttpServletResponse) ctx.getExternalContext().getResponse();
    HttpServletRequest request = (HttpServletRequest) ctx.getExternalContext().getRequest();
    Date currentDatetime = new Date(System.currentTimeMillis());
    String StartTime = formatter.format(currentDatetime);
         int maxMemSize = 900000;
         long maxReqSize = 1000000000;
         //String fileDir = "/home/working/tmp/";
         boolean writeToFile = true;
         //String fileName = "deals.txt";
         String from = "";
         String files = "";
         String tmpStr = "";
         String comment = "";
         int num = 0;
         //     Check that we have a file upload request
         boolean isMultipart = FileUpload.isMultipartContent((HttpServletRequest) request);
         ServletOutputStream out = null;
    //     OPEN FILE
         fileName = fileName.replaceAll("\"", "\\") ;
    //     added code for export pc_
         File inputFile = new File( fileName );     
    try{     
              in = new FileReader(inputFile);
              br = new BufferedReader(in);          
         } catch (FileNotFoundException ex ) {     
              ex.printStackTrace();
              genUtils.displayError("Invalid file name or file does not exists");          
              return "-1";
    JSP:
    <%@ taglib uri="/WEB-INF/fmt-1_0.tld" prefix="fmt" %>
    <%@ taglib uri="/WEB-INF/jsf_core.tld" prefix="f" %>
    <%@ taglib uri="/WEB-INF/html_basic.tld" prefix="h" %>
    <%@ taglib uri="/WEB-INF/c-1_0.tld" prefix="c" %>
    <%@taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
    <html>
         <head>
              <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
              <META name="GENERATOR" content="IBM WebSphere Studio">
              <META http-equiv="Content-Style-Type" content="text/css">
              <LINK href='<%= request.getContextPath() + "/theme/Master.css" %>' rel="stylesheet" type="text/css">
              <link type="text/css" rel="stylesheet" href='<%= request.getContextPath() + "/theme/prodcredit.css" %>'>
              <title>Trade Ledger Ajustment Import</title>
         </head>      
    <body>
    <script language="JavaScript">
         <!--
         javascript:window.history.forward(1);
         //-->
    </script>
    <f:view>
    <h:form id="TradeAdjustmentImportForm" >
    <table width="900" class="tableform" >
    <caption class="searchcaption" > Production Credits Deals File Import : <h:messages id="Messages" errorClass="errors" globalOnly="false"/> </caption>                
    <tbody>               
         <tr class="formtr" >
              <td class="td" style="color: red"><strong>Enter File to Import</strong></td>
         </tr>
         <tr class="formtr">
              <td nowrap align="left">           
                   <h:outputText id="fileImportTxt" value="File Name : " />           
                   <h:inputText id="fileName" value="#{ProdCreditUtilities.fileName}" styleClass="field-value" />           
    </td>
         <td nowrap align="left">                          
                   <h:commandButton id="importFile" image="images/import.gif" styleClass="commandButton" action="#{ProdCreditUtilities.importProdCredit}" type="Submit" immediate="false" />               
         </td>
    <tr><td> </td></tr>                         
    </tbody>     
    </table>

    BufferedReader br = null;
    int x = 0 ;
    FacesContext ctx = FacesContext.getCurrentInstance();
    //HttpServletResponse response = (HttpServletResponse) ctx.getExternalContext().getResponse();
    HttpServletRequest request = (HttpServletRequest) ctx.getExternalContext().getRequest();
    Date currentDatetime = new Date(System.currentTimeMillis());
    String StartTime = formatter.format(currentDatetime);
    int maxMemSize = 900000;
    long maxReqSize = 1000000000;
    //String fileDir = "/home/working/tmp/";
    boolean writeToFile = true;
    //String fileName = "deals.txt";
    String from = "";
    String files = "";
    String tmpStr = "";
    String comment = "";
    int num = 0;
    // CHECK THAT WE HAVE A FILE UPLAOD REQUEST
    boolean isMultipart = FileUpload.isMultipartContent((HttpServletRequest) request);
    ServletOutputStream out = null;
    // OPEN FILE TO DO PROCESSING
    fileName = fileName.replaceAll("\"", "\\") ;
    // added code for export pc_
    File inputFile = new File( fileName );
    try{
    in = new FileReader(inputFile);
    br = new BufferedReader(in);
    } catch (FileNotFoundException ex ) {
    ex.printStackTrace();
    genUtils.displayError("Invalid file name or file does not exists");
    return "-1";
    JSP file
    <f:view>
    <h:form id="TradeAdjustmentImportForm" >
    <table width="900" class="tableform" >
    <caption class="searchcaption" > Production Credits Deals File Import : <h:messages id="Messages" errorClass="errors" globalOnly="false"/> </caption>
    <tbody>
    <tr class="formtr" >
    <td class="td" style="color: red"><strong>Enter File to Import</strong></td>
    </tr>
    <tr class="formtr">
    <td nowrap align="left">
    <h:outputText id="fileImportTxt" value="File Name : " />
    <h:inputText id="fileName" value="#{ProdCreditUtilities.fileName}" styleClass="field-value" />
    </td>
    Can you help me change this code to work with <input type="file">
    I am not that familiar with JSP and HTML . I am a database coder trying to get this fixed.
    Your help is greatly appreciated.
    Thanks
    Ricky

  • Unable to add document title to document imported from server

    Hi ,
    Im using the Import file method from SOFM to retrieve a document from a server path and create an SOFM document.
    However i am not able to give the document title to the document when i use this method.
    I am using the import file method because i dont want to keep the file import interactive but in the background. In this way , how can i give the title to the SOFM document ? there is no import parameter to the method which allows me to pass a document title to the method !
    Any suggestions/solutions for this ?
    Regards,
    Amit

    Hi ,
    I banged my head over standard SAP code all day and have finally found out this cant be done via import file unfortunately. If i use create file, i will need all data for the file , and this can be done only via open dataset and read.
    This actually gets the data but there seems to be some problem with the data and is not able to convert to the BO SOFM (it actually creates an instance but the file is corrupted.)
    so i used the direct and quite unadvisable way of directly updating the document title in the SOOD table  and this works perfectly
    Amit

  • BI Admin Tool crashes when importing from Essbase

    Hi folks,
    I'm trying to import an Essbase cube into my OBIEE RPD and it is causing the Admin Tool to crash with a generic Windows error msg that "BI Admin Tool has stopped working and Windows is looking for a solution"..
    I'm using OBIEE 10.3.1.4 with all components, including BI Server installed on my local machine which is Windows 7 32-bit. The Essbase server is on a different machine. The RPD is working fine for several other data sources, and crashes only when I try to import from Essbase. The Essbase server is also working fine. The crash happens regardless of whether I'm in online or offline mode. I even tried to create a new RPD in case the other one was corrupted, but even the new one crashes.
    I have Essbase client installed on the same machine as BI Server and my environment variables seem fine. All ports on the Essbase server machine are open and I can ping it from the BI Server machine, so it is not a network issue. I know this version of OBI is not officially supported on Windows 7, but it's working fine in all other respects. Has anyone had a similar problem in the past?
    Appreciate any advise.
    thanks,
    Axe
    Edited by: axe1 on Oct 19, 2010 5:54 AM

    I wonder if cube import only works when using a 32-bit Essbase client?

  • Import from Multi-dimensional Database-Essbase Error 1030724

    Hi all
    OBIEE version is 10.1.3.4.1
    Essbase version is 11.1.1.3
    I am trying to create a repository and selecting Import-> From Multidimensional
    and on the connection screen, i am entering essbase connection information(essbase and obiee are running on the same server) but giving me
    Essbase Error 1030724- Failed to set locale information
    But could not solve this issue!!
    Any ideas!
    Best Regards,
    Kenan

    Hello Kenan,
    We had the same problem, but after adding the system variables the problem was solved.
    Make sure the ARBORPATH and ESSBASEPATH variables are available as System Variables.
    (Right click om my computer and goto Environment Variables).
    Kind regards,
    Peter

  • Import from Essbase

    Hi all,
    I have installed Essbase 9.3.1 and OBI 10.1.3.2, I am trying to use the Import from Multidimensional source option to import an Essbase database, all appears to be OK until I save the repository, then I get the error
    [nQSError:28003]Near Line 285, near<TYPE>:Syntax error [nQSError:26012]
    This happens for both my own Essbase data and the Essbase sample databases.
    Does anyone know the cause of this?
    thanks
    Ed

    Hmmm
    Unfortunately I now have another error:
    A general error has occurred. [nQSError: 46121] [my essbase server name] is not a correct URL
    What I can't understand is if this is incorrect then how/why was I able to import the tables in the first place using the same connection info. This error is listed in the release notes for OBI 10.1.3.3.2, the recommended solution, use a valid URL!!
    Any ideas anyone please?
    Rgds
    Ed

  • Error When importing from Essbase to OBIEE

    Hi guys I am trying to import from essbase to OBIEE, after i feed the essbase server details.
    I get
    error: nqserror 36001
    unable to load the dll essapinu.dll
    Can anyone help me in this case
    thanks

    Hi,
    I'm also experiencing the same problem, but this happens after I upgrade into Windows 7 and now I'm running the BI Admin Tools in XP Mode.
    I have also installed the EAS Console in my XP Mode, and the essapinu.dll is there in the EAS folder, but the error still exists.
    Pls help.
    Thanks

  • Comments not imported from Data Dictionary of SQL Server. SDDM 3.3.0.747

    Hi,
    SDDM 3.3.0.747 32-bit on Windows 7 64-bit.
    Comments are not imported from Data Dictionary of SQL Server 2008. Connection through Microsoft JDBC Driver 4.0 for SQL Server or jTDS 1.2.7
    What I have tried? In SDDM DDL generation, Comments in DBRMS for SQL Server are generated with "EXEC sp_addextendedproperty 'MS_Description' , 'Test Comment' ..." so I added extended property named "MS_Description" into SQL Server database, both on table and column. None of them were imported from Data Dictionary into SSDM. I have tried both drivers stated above. Is it a bug or am I missing something?
    I've found similar question thread Re: Data dictionary import doesn't import column comments for SDDM 3.0.0.665, so I guess it is a bug when importing with JDBC drivers.
    MiGli
    Edited by: MiGli_1006342 on May 25, 2013 8:32 AM
    Edited by: MiGli_1006342 on May 25, 2013 9:02 AM

    Extended properties were not imported correctly from SQLServer databases at DM 3.3.0.747.
    Calls to sp_addextendedproperty and fn_listextendedproperty have been modified.
    I don't think it is a problem with JDBC drivers.
    A bug fix should be available in the next release of DM.

  • Error in IB (When trying to import objects into ESR from SLD or from server

    Hi Experts,
    We are facing an error with the Integration builder recently. When we open Enterprise Services Repository of PI 7.1, we are able to see the GUI with objects perfectly. When we try to import an object into the repository from the server ( In ESR, choose Tools -> Import Design objects -> From Server), we are thrown with an exception...
    Error when exectuting search (QUERY_ERROR)
    & java.lang.NullPointerException
    The server throws the above two exceptions. I have pasted the logs of the error when trying to import an object from the server and also from the sld, below.
    Have any of you experieced the issue? Request you to please check this out and suggest what the problem could be. Thanks in advance.
    Regards,
    Basker
    Log of the error received when trying to import an object from the server...
    ====================================================================
    = Root Exception ===================================================
    ====================================================================
    Thrown:
    com.sap.aii.utilxi.swing.framework.ExecuteException: Error when executing search
    at com.sap.aii.ib.gui.shelp.QueryPanel.executeQuery(QueryPanel.java:582)
    at com.sap.aii.ib.gui.shelp.QueryPanel.startQuery(QueryPanel.java:595)
    at com.sap.aii.ib.gui.shelp.QueryPanel$1.run(QueryPanel.java:218)
    at com.sap.aii.utilxi.misc.thread.ThreadPool$ThreadPoolThread.run(ThreadPool.java:392)
    Caused by: java.lang.NullPointerException: null
    at com.sap.aii.utilxi.core.collections.ArrayUtil.appendArrays(ArrayUtil.java:331)
    at com.sap.aii.ib.gui.xiitem.services.XiItemServiceProvider.queryXiItems(XiItemServiceProvider.java:273)
    at com.sap.aii.ib.gui.xiitem.services.XiItemServiceProvider.queryXiItems(XiItemServiceProvider.java:241)
    at com.sap.aii.ib.gui.shelp.StandardQueryAccessor.executeQuery(StandardQueryAccessor.java:68)
    at com.sap.aii.ib.gui.shelp.QueryPanel.executeQuery(QueryPanel.java:567)
    ... 3 more
    ====================================================================
    == Content from the LogHandler =====================================
    ====================================================================
    #12 13:44:56 AWT-EventQueue-2 ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    com.sap.aii.utilxi.swing.framework.ExecuteException: Error when executing search
    at com.sap.aii.ib.gui.shelp.QueryPanel.executeQuery(QueryPanel.java:582)
    at com.sap.aii.ib.gui.shelp.QueryPanel.startQuery(QueryPanel.java:595)
    at com.sap.aii.ib.gui.shelp.QueryPanel$1.run(QueryPanel.java:218)
    at com.sap.aii.utilxi.misc.thread.ThreadPool$ThreadPoolThread.run(ThreadPool.java:392)
    Caused by: java.lang.NullPointerException: null
    at com.sap.aii.utilxi.core.collections.ArrayUtil.appendArrays(ArrayUtil.java:331)
    at com.sap.aii.ib.gui.xiitem.services.XiItemServiceProvider.queryXiItems(XiItemServiceProvider.java:273)
    at com.sap.aii.ib.gui.xiitem.services.XiItemServiceProvider.queryXiItems(XiItemServiceProvider.java:241)
    at com.sap.aii.ib.gui.shelp.StandardQueryAccessor.executeQuery(StandardQueryAccessor.java:68)
    at com.sap.aii.ib.gui.shelp.QueryPanel.executeQuery(QueryPanel.java:567)
    ... 3 more
    #11 13:44:55 Pool-Thread-0 FINE AutoLog.created.java.lang.NullPointerException: java.lang.NullPointerException
    at com.sap.aii.utilxi.core.collections.ArrayUtil.appendArrays(ArrayUtil.java:331)
    at com.sap.aii.ib.gui.xiitem.services.XiItemServiceProvider.queryXiItems(XiItemServiceProvider.java:273)
    at com.sap.aii.ib.gui.xiitem.services.XiItemServiceProvider.queryXiItems(XiItemServiceProvider.java:241)
    at com.sap.aii.ib.gui.shelp.StandardQueryAccessor.executeQuery(StandardQueryAccessor.java:68)
    at com.sap.aii.ib.gui.shelp.QueryPanel.executeQuery(QueryPanel.java:567)
    at com.sap.aii.ib.gui.shelp.QueryPanel.startQuery(QueryPanel.java:595)
    at com.sap.aii.ib.gui.shelp.QueryPanel$1.run(QueryPanel.java:218)
    at com.sap.aii.utilxi.misc.thread.ThreadPool$ThreadPoolThread.run(ThreadPool.java:392)
    #10 13:44:55 Pool-Thread-0 DEBUG AutoLog.created.java.lang.NullPointerException: null
    #9 13:44:55 Pool-Thread-0 FINE AutoLog.created.com.sap.aii.utilxi.swing.framework.ExecuteException: com.sap.aii.utilxi.swing.framework.ExecuteException: Error when executing search
    at com.sap.aii.ib.gui.shelp.QueryPanel.executeQuery(QueryPanel.java:582)
    at com.sap.aii.ib.gui.shelp.QueryPanel.startQuery(QueryPanel.java:595)
    at com.sap.aii.ib.gui.shelp.QueryPanel$1.run(QueryPanel.java:218)
    at com.sap.aii.utilxi.misc.thread.ThreadPool$ThreadPoolThread.run(ThreadPool.java:392)
    Caused by: java.lang.NullPointerException
    at com.sap.aii.utilxi.core.collections.ArrayUtil.appendArrays(ArrayUtil.java:331)
    at com.sap.aii.ib.gui.xiitem.services.XiItemServiceProvider.queryXiItems(XiItemServiceProvider.java:273)
    at com.sap.aii.ib.gui.xiitem.services.XiItemServiceProvider.queryXiItems(XiItemServiceProvider.java:241)
    at com.sap.aii.ib.gui.shelp.StandardQueryAccessor.executeQuery(StandardQueryAccessor.java:68)
    at com.sap.aii.ib.gui.shelp.QueryPanel.executeQuery(QueryPanel.java:567)
    ... 3 more
    #8 13:44:55 Pool-Thread-0 DEBUG AutoLog.created.com.sap.aii.utilxi.swing.framework.ExecuteException: Error when executing search
    #7 13:43:52 AWT-EventQueue-2 FINE AutoLog.created.com.sap.engine.services.security.exceptions.BaseLoginException: com.sap.engine.services.security.exceptions.BaseLoginException: Authentication did not succeed.
    at com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule.login(BasicPasswordLoginModule.java:149)
    at com.sap.engine.services.security.login.LoginModuleLoggingWrapperImpl.login(LoginModuleLoggingWrapperImpl.java:220)
    at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:70)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:218)
    at com.sap.engine.services.security.remoteimpl.login.RemoteLoginContextHelperImpl.login(RemoteLoginContextHelperImpl.java:78)
    at com.sap.engine.services.security.remoteimpl.login.RemoteLoginContextHelperImplp4_Skel.dispatch(RemoteLoginContextHelperImplp4_Skel.java:64)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:351)
    at com.sap.engine.services.rmi_p4.server.ServerDispatchImpl.run(ServerDispatchImpl.java:70)
    at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:62)
    at com.sap.engine.services.rmi_p4.P4Message.execute(P4Message.java:37)
    at com.sap.engine.services.cross.fca.FCAConnectorImpl.executeRequest(FCAConnectorImpl.java:872)
    at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:53)
    at com.sap.engine.services.cross.fca.MessageReader.run(MessageReader.java:58)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:108)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:304)
    predecessor system
    com.sap.engine.services.security.exceptions.BaseLoginException: Authentication did not succeed.
    at com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule.login(BasicPasswordLoginModule.java:149)
    at com.sap.engine.services.security.login.LoginModuleLoggingWrapperImpl.login(LoginModuleLoggingWrapperImpl.java:220)
    at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:70)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:218)
    at com.sap.engine.services.security.remoteimpl.login.RemoteLoginContextHelperImpl.login(RemoteLoginContextHelperImpl.java:78)
    at com.sap.engine.services.security.remoteimpl.login.RemoteLoginContextHelperImplp4_Skel.dispatch(RemoteLoginContextHelperImplp4_Skel.java:64)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:351)
    at com.sap.engine.services.rmi_p4.server.ServerDispatchImpl.run(ServerDispatchImpl.java:70)
    at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:62)
    at com.sap.engine.services.rmi_p4.P4Message.execute(P4Message.java:37)
    at com.sap.engine.services.cross.fca.FCAConnectorImpl.executeRequest(FCAConnectorImpl.java:872)
    at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:53)
    at com.sap.engine.services.cross.fca.MessageReader.run(MessageReader.java:58)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:108)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:304)
    #6 13:43:52 AWT-EventQueue-2 DEBUG AutoLog.created.com.sap.engine.services.security.exceptions.BaseLoginException: Authentication did not succeed.
    #5 13:43:52 AWT-EventQueue-2 FINE AutoLog.created.com.sap.engine.services.security.exceptions.BaseLoginException: com.sap.engine.services.security.exceptions.BaseLoginException: Cannot authenticate the user.
    at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:175)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:218)
    at com.sap.engine.services.security.remoteimpl.login.RemoteLoginContextHelperImpl.login(RemoteLoginContextHelperImpl.java:78)
    at com.sap.engine.services.security.remoteimpl.login.RemoteLoginContextHelperImplp4_Skel.dispatch(RemoteLoginContextHelperImplp4_Skel.java:64)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:351)
    at com.sap.engine.services.rmi_p4.server.ServerDispatchImpl.run(ServerDispatchImpl.java:70)
    at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:62)
    at com.sap.engine.services.rmi_p4.P4Message.execute(P4Message.java:37)
    at com.sap.engine.services.cross.fca.FCAConnectorImpl.executeRequest(FCAConnectorImpl.java:872)
    at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:53)
    at com.sap.engine.services.cross.fca.MessageReader.run(MessageReader.java:58)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:108)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:304)
    Caused by: com.sap.engine.services.security.exceptions.BaseLoginException: Authentication did not succeed.
    at com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule.login(BasicPasswordLoginModule.java:149)
    at com.sap.engine.services.security.login.LoginModuleLoggingWrapperImpl.login(LoginModuleLoggingWrapperImpl.java:220)
    at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:70)
    ... 13 more
    predecessor system
    com.sap.engine.services.security.exceptions.BaseLoginException: Cannot authenticate the user.
    at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:175)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:218)
    at com.sap.engine.services.security.remoteimpl.login.RemoteLoginContextHelperImpl.login(RemoteLoginContextHelperImpl.java:78)
    at com.sap.engine.services.security.remoteimpl.login.RemoteLoginContextHelperImplp4_Skel.dispatch(RemoteLoginContextHelperImplp4_Skel.java:64)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:351)
    at com.sap.engine.services.rmi_p4.server.ServerDispatchImpl.run(ServerDispatchImpl.java:70)
    at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:62)
    at com.sap.engine.services.rmi_p4.P4Message.execute(P4Message.java:37)
    at com.sap.engine.services.cross.fca.FCAConnectorImpl.executeRequest(FCAConnectorImpl.java:872)
    at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:53)
    at com.sap.engine.services.cross.fca.MessageReader.run(MessageReader.java:58)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:108)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:304)
    Caused by: com.sap.engine.services.security.exceptions.BaseLoginException: Authentication did not succeed.
    at com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule.login(BasicPasswordLoginModule.java:149)
    at com.sap.engine.services.security.login.LoginModuleLoggingWrapperImpl.login(LoginModuleLoggingWrapperImpl.java:220)
    at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:70)
    ... 13 more

    Hi Rajeev,
    Thanks for your inputs. I myself am a basis guy. I ve already checked all the authorizations given to the user - PISUPER, and have found it to be fine. Can't understand why this security issue crops up still. anyways, i m getting this error when trying to import an object from the server. If i try to create a new object and during the process, try to import the SCV from SLD, i m facing with an error again, of a different sort. The log says...
    ====================================================================
    = Root Exception ===================================================
    ====================================================================
    Thrown:
    com.sap.aii.utilxi.misc.api.BaseRuntimeException: Internal error during bean lookup for bean SldAccessServiceBean
         at com.sap.aii.ib.clsif.gen.BeanAccessHandler.handleRuntimeExInBusinessMethod(BeanAccessHandler.java:113)
         at com.sap.aii.ib.client.sldAccess.impl.SldAccessServiceDelegate.getSwcvLinks(SldAccessServiceDelegate.java:55)
         at com.sap.aii.ibrep.gui.workspace.WorkspaceCreatePanel.getSwcvLinksAdapter(WorkspaceCreatePanel.java:520)
         at com.sap.aii.ibrep.gui.workspace.WorkspaceCreatePanel.access$000(WorkspaceCreatePanel.java:75)
         at com.sap.aii.ibrep.gui.workspace.WorkspaceCreatePanel$4.getResult(WorkspaceCreatePanel.java:449)
         at com.sap.aii.utilxi.swing.toolkit.InterruptableProgressDialog$1.construct(InterruptableProgressDialog.java:190)
         at com.sap.aii.utilxi.swing.toolkit.SwingWorker$2.run(SwingWorker.java:126)
         at java.lang.Thread.run(Unknown Source)
    Caused by: com.sap.aii.utilxi.misc.api.BaseRuntimeException: Internal error during bean lookup for bean SldAccessServiceBean
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.getHomeInterface(LoginServiceImpl.java:460)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.getBusinessInterface(LoginServiceImpl.java:425)
         at com.sap.aii.ib.clsif.gen.BeanAccessHandler.getBean(BeanAccessHandler.java:60)
         at com.sap.aii.ib.client.sldAccess.impl.SldAccessServiceDelegate.getBean(SldAccessServiceDelegate.java:79)
         at com.sap.aii.ib.client.sldAccess.impl.SldAccessServiceDelegate.getSwcvLinks(SldAccessServiceDelegate.java:49)
         ... 6 more
    Caused by: com.sap.aii.ib.core.ejbutil.HomeFactoryException: Exception during lookup operation of object with name sap.com/com.sap.xi.repository/SldAccessServiceBean, cannot resolve object reference.
         at com.sap.aii.ib.clsif.login.EJBHomeFactory.lookUpHome(EJBHomeFactory.java:381)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.getHomeInterface(LoginServiceImpl.java:456)
         ... 10 more
    Caused by: com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception during lookup operation of object with name sap.com/com.sap.xi.repository/SldAccessServiceBean, cannot resolve object reference.
         at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:528)
         at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:637)
         at javax.naming.InitialContext.lookup(Unknown Source)
         at com.sap.aii.ib.clsif.login.EJBHomeFactory.lookUpHome(EJBHomeFactory.java:353)
         ... 11 more
    Caused by: javax.naming.NamingException: Error occurs while the EJB Object Factory trying to resolve JNDI reference Reference Class Name:
    Type: clientAppName
    Content: sap.com/com.sap.xi.repository
    Type: interfaceType
    Content: remote
    Type: home
    Content: com.sap.aii.ib.sbeans.sldAccess.SldAccessServiceHome
    Type: ejb-link
    Content: SldAccessServiceBean
    Type: remote
    Content: com.sap.aii.ib.sbeans.sldAccess.SldAccessServiceRemote
    com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception while trying to get InitialContext.
         at com.sap.engine.services.jndi.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:488)
         at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
         at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
         at javax.naming.InitialContext.init(Unknown Source)
         at javax.naming.InitialContext.<init>(Unknown Source)
         at com.sap.engine.services.ejb3.runtime.impl.EJBObjectFactory.getObjectInstance(EJBObjectFactory.java:73)
         at com.sap.engine.services.ejb3.runtime.impl.EJBObjectFactory.getObjectInstance(EJBObjectFactory.java:58)
         at javax.naming.spi.NamingManager.getObjectInstance(Unknown Source)
         at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:521)
         at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:637)
         at javax.naming.InitialContext.lookup(Unknown Source)
         at com.sap.aii.ib.clsif.login.EJBHomeFactory.lookUpHome(EJBHomeFactory.java:353)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.getHomeInterface(LoginServiceImpl.java:456)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.getBusinessInterface(LoginServiceImpl.java:425)
         at com.sap.aii.ib.clsif.gen.BeanAccessHandler.getBean(BeanAccessHandler.java:60)
         at com.sap.aii.ib.client.sldAccess.impl.SldAccessServiceDelegate.getBean(SldAccessServiceDelegate.java:79)
         at com.sap.aii.ib.client.sldAccess.impl.SldAccessServiceDelegate.getSwcvLinks(SldAccessServiceDelegate.java:49)
         at com.sap.aii.ibrep.gui.workspace.WorkspaceCreatePanel.getSwcvLinksAdapter(WorkspaceCreatePanel.java:520)
         at com.sap.aii.ibrep.gui.workspace.WorkspaceCreatePanel.access$000(WorkspaceCreatePanel.java:75)
         at com.sap.aii.ibrep.gui.workspace.WorkspaceCreatePanel$4.getResult(WorkspaceCreatePanel.java:449)
         at com.sap.aii.utilxi.swing.toolkit.InterruptableProgressDialog$1.construct(InterruptableProgressDialog.java:190)
         at com.sap.aii.utilxi.swing.toolkit.SwingWorker$2.run(SwingWorker.java:126)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: Can't get Socket. Reason:Connection timed out: connect
         at com.sap.engine.interfaces.cross.io.transport.PortManager.getRealSocket(PortManager.java:284)
         at com.sap.engine.interfaces.cross.LoadBalancerImpl.getAllAccessPoints(LoadBalancerImpl.java:97)
         at com.sap.engine.interfaces.cross.CrossObjectBroker.getDestination(CrossObjectBroker.java:142)
         at com.sap.engine.services.jndi.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:347)
         at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
         at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
         at javax.naming.InitialContext.init(Unknown Source)
         at javax.naming.InitialContext.<init>(Unknown Source)
         at com.sap.engine.services.ejb3.runtime.impl.EJBObjectFactory.getObjectInstance(EJBObjectFactory.java:73)
         at com.sap.engine.services.ejb3.runtime.impl.EJBObjectFactory.getObjectInstance(EJBObjectFactory.java:58)
         at javax.naming.spi.NamingManager.getObjectInstance(Unknown Source)
         at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:521)
         at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:637)
         at javax.naming.InitialContext.lookup(Unknown Source)
         at com.sap.aii.ib.clsif.login.EJBHomeFactory.lookUpHome(EJBHomeFactory.java:353)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.getHomeInterface(LoginServiceImpl.java:456)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.getBusinessInterface(LoginServiceImpl.java:425)
         at com.sap.aii.ib.clsif.gen.BeanAccessHandler.getBean(BeanAccessHandler.java:60)
         at com.sap.aii.ib.client.sldAccess.impl.SldAccessServiceDelegate.getBean(SldAccessServiceDelegate.java:79)
         at com.sap.aii.ib.client.sldAccess.impl.SldAccessServiceDelegate.getSwcvLinks(SldAccessServiceDelegate.java:49)
         at com.sap.aii.ibrep.gui.workspace.WorkspaceCreatePanel.getSwcvLinksAdapter(WorkspaceCreatePanel.java:520)
         at com.sap.aii.ibrep.gui.workspace.WorkspaceCreatePanel.access$000(WorkspaceCreatePanel.java:75)
         at com.sap.aii.ibrep.gui.workspace.WorkspaceCreatePanel$4.getResult(WorkspaceCreatePanel.java:449)
         at com.sap.aii.utilxi.swing.toolkit.InterruptableProgressDialog$1.construct(InterruptableProgressDialog.java:190)
         at com.sap.aii.utilxi.swing.toolkit.SwingWorker$2.run(SwingWorker.java:126)
         at java.lang.Thread.run(Unknown Source)
         at com.sap.engine.services.ejb3.runtime.impl.EJBObjectFactory.getObjectInstance(EJBObjectFactory.java:140)
         at com.sap.engine.services.ejb3.runtime.impl.EJBObjectFactory.getObjectInstance(EJBObjectFactory.java:58)
         at javax.naming.spi.NamingManager.getObjectInstance(Unknown Source)
         at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:521)
         ... 14 more
    Any clues what might be the issue?
    thanks in advance,
    Regards,
    Basker

  • Error 0x80070057 when importing VM from Server 2008R2 to Server 2012 R2

    Hello.  I am using SCVMM 2012 to export a Windows 7 desktop from a 2008R2 HyperV server, to a 2012R2 HyperV server.  The job fails at step 1.5 (Import Hyper-V virtual machine) in the SCVMM log.  The error message is:
    Error (2901)
    The operation did not complete successfully because of a parameter or call sequence that is not valid.  the parameter is incorrect (0x80070057)
    Recommended Action
    Ensure that the parameters are valid, and then try the operation again.
    I've found the KB968968 regarding "ScopeOfResidence" and that isn't the problem here.  the EXP file that is created on my target server has no data between the [VALUE][/VALUE] tags for this element.
    When I try to manually import from the target server using HyperV manager rather than SCVMM, I browse to the folder where the VHD and subfolders containing the EXP file are located and I get "Hyper-V did not find virtual machines to import from location
    "G:\my\path\to\this\VHD" "  Same thing when I browse to any subordinate folder such as the Virtual Machines folder or the GUID folder underneath that.

    Hello Connor,
    Please advise if you followed below best practices?
    If you are upgrading from Hyper-V 2008/R2 to Hyper-V 2012 R2.
    The first option is to Shut down all Hyper-V virtual machines on the WS2008R2 host, then stop the Hyper-V Virtual Machine Management service. Finally copy all virtual machines that you want to migrate to WS2012R2 Hyper-V host, and then Import the Virtual
    Machines.
    The second option is, if you already exported the VMs and you don’t have 2008R2 Hyper-V host anymore.
    The exported Hyper-V virtual machines from 2008 R2 host copy them into Windows Server 2012 Hyper-V and import them, then simple copy the VMs to Windows Server 2012 R2 Hyper-V and import them. The server with Hyper-V 2012 is only used to perform the import
    process thus allowing the VM to be copied into Hyper-V 2012 R2.
    The reason why is the following:
    In Windows Server 2012 Microsoft introduced a new WMI namespace (root\virtualization\v2) which is much better import/export model – allowing you to effectively just copy the virtual machine folder (with the VM’s XML configuration file inside it) as well
    as the VM’s VHDs and then import them directly. Microsoft maintained version 1 WMI namespace in Windows 2012 which is allowed for importing Windows Server 2008/R2 VM’s on 2012.
    In Windows Server 2012 R2 Microsoft removed the old version 1 namespace which means we can’t import directly virtual machines that were exported from Windows Server 2008/R2.
    Hope this help.
    Regards,
    Charbel Nemnom
    MCSA, MCSE, MCS, MCITP
    Blog: www.charbelnemnom.com
    Please remember to click “Mark as Answer” on
    the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community
    members reading the thread.

  • Help! Sometimes CS6 don`t let us paint/draw on some IDs of a 3D Model (DAE imported from 3Ds Max)

    Sometimes CS6 don`t let us paint/draw on some IDs of a 3D Model (DAE imported from 3Ds Max) without any Reason. Is there a Shortcut for freezing IDs on 3D Models?
    We didn`t had that Problem CS4. Its happening without any Reason. While we are painting Textures on a Model its suddenly "freezes" the Polys with certain IDs. The IDs where putted in 3ds Max. Anyone know this Problem or may have a Solution for this? We tried a lot but couldn`t find a Solution. The only Thing we can do is reimporting the 3d Model again. Than it will work for a while till this Problem comes up again.
    HELP! thanks.

    Sometimes CS6 don`t let us paint/draw on some IDs of a 3D Model (DAE imported from 3Ds Max) without any Reason. Is there a Shortcut for freezing IDs on 3D Models?
    We didn`t had that Problem CS4. Its happening without any Reason. While we are painting Textures on a Model its suddenly "freezes" the Polys with certain IDs. The IDs where putted in 3ds Max. Anyone know this Problem or may have a Solution for this? We tried a lot but couldn`t find a Solution. The only Thing we can do is reimporting the 3d Model again. Than it will work for a while till this Problem comes up again.
    HELP! thanks.

  • Modifying entries via the System Server Console (GUI's) 'Import From LDIF'

    Hello,
    I've created an LDIF file with "changeType: modify" entries but when I import the file via the GUI's 'Import From LDIF' button (taking care to have "Add only" unchecked), the entries are rejected with a "Error adding object ... The error sent by the server was 'Already exists'" error.
    Here is an example entry:
    dn: nxResource=Administrative Policies,nxResource=eCentre,nxResource=Network,o
    u=securitypolicy,dc=ECENTRE
    changeType: modify
    replace: nxRule
    nxRule: rule=deny,cn=SeniorAdministrators,ou=Administration,ou=Groups,dc=ECEN
    TRE
    I get similar results when trying to delete an entry. If I use the command-line ldapmodify tool, it works fine. Is there a different syntax for the GUI-based import?
    Thanks!
    Gregg

    Hi Gregg,
    I'm afraid that the term import for the GUI means ADD and not apply a set of modifications.
    Usually, import also imply that the current content of the database is removed.
    DS6 has this new option to allow appending new entries instead of replacing the DB. The "add only" check box is meant for this.
    I don't think there is a way to apply a set of changes from an LDIF file through the console. ldapmodify is the usual and default way to proceed.
    Regards,
    Ludovic.

Maybe you are looking for