Cannot import metadata error

I am receiving the following error when trying to import a new table from and existing datastore. Can anyone point me in the right direction fro troubleshooting this error?
We are using Data Service 4.0.

not specific to DS:
ORA-01437: cannot have join with CONNECT BY
Cause: A join operation was specified with a CONNECT BY clause. If a CONNECT BY clause is used in a SELECT statement for a tree-structured query, only one table may be referenced in the query.
Action: Remove either the CONNECT BY clause or the join operation from the SQL statement
Arun asked the right questions as this seems to be Oracle version specific, sound like you might be using 8.x
See different source i.e
Oracle/PLSQL: ORA-01437
Google Groups
Adil

Similar Messages

  • LR cannot Import - Unknown Error

    I am getting this error message when trying to import a catalog "Lightroom could not import because of Unknown Error".
    The catalog I am attempting to import contains about 6000 images and was built by the beta during the Beta phase.  It opens fine by itself - as it worked throughout the beta.  I have no problems opening it and working on it directly with LR3.0.
    However, since this was my catalog for just a couple of projects during the Beta, I now want to fold it into my main catalog of some 19,000 images.  My main catalog was my LR2.7 catalog and I have successfully converted it to LR3.0 - it opens fine and works fine.
    Said in another way, while running 3.0, I can switch freely back-and-forth between these 2 catalogs using File | Open Recent
    I am just unable to import the beta's converted catalog into it.  After doing File | Import from Catalog, LR asks for the name - I navigate to the xxx.lrcat file and select it.  The import starts and displays a Preparing to Import information window...perhaps for a second or two, then stops with the above message which is reported as a Warning .... however, the import stops at this point.
    So, this is kind of serious......
    Both catalogs are on the same drive, with plenty of free space.
    What additional information do you require to resolve this ?
    jc

    thanks for the input .... I had some duplicates in the beta catalog.  I
    resolved them manually then removed them from the catalog and Optimized it.
    I was then able to Import from Catalog without difficulty.
    jc
    From: Gary Jones UK
    Sent: Wednesday, June 09, 2010 7:48 AM
    To: Jim Camelford
    Subject: LR cannot Import - Unknown Error
    This has already been reported and the problem has been identified by Adobe.
    The key post is this one: http://forums.adobe.com/message/2877882#2877882

  • Import metadata error.

    Hi, everyone.
    I have a task.
    I need to develop ADF Business Component using only WEB-services and integrate this app into BI Repository.
    So, I developed this app, and completed all steps here -> [http://docs.oracle.com/cd/E15586_01/fusionapps.1111/e20836/adf.htm#CHDDAFAG] .
    Metadata was imported but when I try to view data this exception appears:
    "An error occurs while calling remote service ADFService11G"
    In details it can't query data from table, because table doesn't exist.
    In ADF BC: I've created a programmatic view object. Here it's listing:
    package sit.model;
    import java.sql.ResultSet;
    import java.util.ArrayList;
    import java.util.List;
    import oracle.jbo.server.ViewObjectImpl;
    import oracle.jbo.server.ViewRowImpl;
    import oracle.jbo.server.ViewRowSetImpl;
    import sit.tsds.TSServiceViewObjectImpl;
    import ts.service.stub.FilterBean;
    import ts.service.stub.TaskBean;
    public class v_baseTaskImpl extends TSServiceViewObjectImpl {
    * This is the default constructor (do not remove).
    public v_baseTaskImpl(){
    super();
    public v_baseTaskImpl(String newFilterName){
    this.filterName = newFilterName;
    private String filterName = "Все задачи";
    protected String rootTaskNumber = "1";
    protected void executeQueryForCollection(Object qc, Object[] params, int noUserParams) {
    super.executeQueryForCollection(qc, params, noUserParams);
    * hasNextForCollection - overridden for custom java data source support.
    protected boolean hasNextForCollection(Object qc) {
    boolean bRet = super.hasNextForCollection(qc);
    return bRet;
    * createRowFromResultSet - overridden for custom java data source support.
    protected v_baseTaskRowImpl createRowFromResultSet(Object qc, ResultSet resultSet) {
    v_baseTaskRowImpl btr = (v_baseTaskRowImpl)super.createRowFromResultSet(qc, resultSet);
    Long a = 12321L;
    populateAttributeForRow(btr,0,"1");
    populateAttributeForRow(btr,1,"shortName");
    populateAttributeForRow(btr,2,"name");
    populateAttributeForRow(btr,3,a);
    populateAttributeForRow(btr,4,a);
    populateAttributeForRow(btr,5,a);
    populateAttributeForRow(btr,6,"Desc");
    populateAttributeForRow(btr,7,a);
    populateAttributeForRow(btr,8,a);
    populateAttributeForRow(btr,9,a);
    populateAttributeForRow(btr,10,"categ");
    populateAttributeForRow(btr,11,"stat");
    populateAttributeForRow(btr,12,"resol");
    populateAttributeForRow(btr,13,"prior");
    populateAttributeForRow(btr,14,"subm");
    populateAttributeForRow(btr,15,"handl");
    populateAttributeForRow(btr,16,"2");
    populateAttributeForRow(btr,17,"00001");
    return btr;
    * getQueryHitCount - overridden for custom java data source support.
    public long getQueryHitCount(ViewRowSetImpl viewRowSet) {
    long value = super.getQueryHitCount(viewRowSet);
    return value;
    here's code for TSServiceViewObjectImpl:
    package sit.tsds;
    import java.util.ArrayList;
    import java.util.List;
    import oracle.jbo.server.ViewDefImpl;
    import oracle.jbo.server.ViewObjectImpl;
    import sit.model.AppModuleImpl;
    import ts.service.filter.Filter;
    import ts.service.filter.FilterService;
    import ts.service.find.Find;
    import ts.service.find.FindService;
    import ts.service.message.Message;
    import ts.service.message.MessageService;
    import ts.service.stub.CategoryBean;
    import ts.service.stub.FilterBean;
    import ts.service.stub.MessageBean;
    import ts.service.stub.MstatusBean;
    import ts.service.stub.StatusBean;
    import ts.service.stub.TaskBean;
    import ts.service.stub.TaskSliderBean;
    import ts.service.stub.UserBean;
    import ts.service.task.Task;
    import ts.service.task.TaskService;
    import ts.service.user.User;
    import ts.service.user.UserService;
    public class TSServiceViewObjectImpl extends ViewObjectImpl {
    public TSServiceViewObjectImpl(String string, ViewDefImpl viewDefImpl) throws Exception {
    super(string, viewDefImpl);
    public TSServiceViewObjectImpl() {
    super();
    public List<TaskBean> getTaskListForFilter(String taskId, String filterId, boolean withUdf, List<String> order )
    throws Exception {
    String sessionID = getSessionID();
    System.out.println(String.format("getTaskListForFilter('%s', '%s')", sessionID, taskId));
    Task task = getTaskService();
    List<TaskBean> result = new ArrayList<TaskBean>();
    TaskSliderBean slider = task.getTaskListForFilter(sessionID, taskId, filterId, withUdf, 1, order);
    for(int i = 1; i <= slider.getPagesCount(); i++) {
    slider = task.getTaskListForFilter(sessionID, taskId, filterId, withUdf, i, order);
    result.addAll(slider.getTasks());
    System.out.println(String.format("getTaskByNumber('%s', '%s') return %d tasks", sessionID, taskId, result.size()));
    return result;
    public TaskBean getTaskByNumber(String taskNumb)
    throws Exception{
    String sessionID = getSessionID();
    System.out.println(String.format("getTaskByNumber('%s', '%s')", sessionID, taskNumb));
    Task task = getTaskService();
    TaskBean result = task.findTaskByNumber(sessionID, taskNumb);
    System.out.println(String.format("getTaskByNumber('%s', '%s') return '%s'", sessionID, taskNumb, result.getName()));
    return result;
    public List<MessageBean> getMessageList(String taskId)
    throws Exception {
    String sessionID = getSessionID();
    System.out.println(String.format("getMessageList('%s', '%s')", sessionID, taskId));
    Message message = getMessageService();
    List<MessageBean> result = message.getMessageList(sessionID, taskId);
    System.out.println(String.format("getMessageList('%s', '%s') return %d messages", sessionID, taskId, result.size()));
    return result;
    public FilterBean getFilterByTask(String taskID, String filterName)
    throws Exception {
    String sessionID = getSessionID();
    System.out.println(String.format("getFilterByTask('%s', '%s', '%s')", sessionID, taskID, filterName));
    FilterBean result = null;
    Filter filter = getFilterService();
    List<FilterBean> filterList = filter.getTaskFilterList(sessionID, taskID);
    System.out.println(String.format("getFilterByTask('%s', '%s', '%s') find %d filters", sessionID, taskID, filterName, filterList.size()));
    for(FilterBean item : filterList)
    if(item.getName().equals(filterName)) {
    result = item;
    break;
    System.out.println(String.format("getFilterByTask('%s', '%s', '%s') return '%s'", sessionID, taskID, filterName, result.getName()));
    return result;
    public CategoryBean findCategoryById(String categoryId)
    throws Exception {
    String sessionID = getSessionID();
    System.out.println(String.format("findCategoryById('%s', '%s')", sessionID, categoryId));
    Find findService = getFindService();
    CategoryBean result = findService.findCategoryById(sessionID, categoryId);
    System.out.println(String.format("findCategoryById('%s', '%s') return '%s'", sessionID, categoryId, result.getName()));
    return result;
    public StatusBean findStatusById(String statusId)
    throws Exception {
    String sessionID = getSessionID();
    System.out.println(String.format("findStatusById('%s', '%s')", sessionID, statusId));
    Find findService = getFindService();
    StatusBean result = findService.findStatusById(sessionID, statusId);
    System.out.println(String.format("findStatusById('%s', '%s') return '%s'", sessionID, statusId, result.getName()));
    return result;
    public MstatusBean findMstatusById(String statusId)
    throws Exception {
    String sessionID = getSessionID();
    System.out.println(String.format("findMstatusById('%s', '%s')", sessionID, statusId));
    Find findService = getFindService();
    MstatusBean result = findService.findMstatusById(sessionID, statusId);
    System.out.println(String.format("findMstatusById('%s', '%s') return '%s'", sessionID, statusId, result.getName()));
    return result;
    public UserBean findUserById(String userId)
    throws Exception {
    String sessionID = getSessionID();
    System.out.println(String.format("findUserById('%s', '%s')", sessionID, userId));
    Find findService = getFindService();
    UserBean result = findService.findUserById(sessionID, userId);
    System.out.println(String.format("findUserById('%s', '%s') return '%s'", sessionID, userId, result.getName()));
    return result;
    public List<UserBean> getUserAndChildrenList(String userId)
    throws Exception{
    String sessionID = getSessionID();
    List<UserBean> users;
    User user = getUserService();
    users = user.getUserAndChildrenList(sessionID, userId);
    return users;
    public String getUserId()
    throws Exception{
    String sessionID = getSessionID();
    User user = getUserService();
    return user.getUserId(sessionID);
    protected User getUserService() {
    return new UserService().getUserPort();
    protected Task getTaskService() {
    return new TaskService().getTaskPort();
    protected Message getMessageService() {
    return new MessageService().getMessagePort();
    protected Filter getFilterService() {
    return new FilterService().getFilterPort();
    protected Find getFindService() {
    return new FindService().getFindPort();
    private String getSessionID() {
    AppModuleImpl app = (AppModuleImpl)getRootApplicationModule();
    String sessionID = app.getSessionID();
    return sessionID;
    in v_baseTaskImpl I've just tried to put some test values.
    So, there is my question:
    Is problem with ADF BC or in BI? And was file v_baseTaskImpl edited correctly? If no, please, give me some advice about creating programmatic view objects.
    I'll be very grateful for any answers.
    thanks, and best regards, Eugene.
    Edited by: 951006 on 07.08.2012 4:46

    Hi,
    I registered the location in control center, but I yet can not import the metadata. Once I try to import the metadata with Import Metadata Wizard, "import service failed" error poped up.
    I have no idea.
    Just following the normal steps: 1. Create a module and identify the type as source.
    2. During the process of creating the module, should enable a location relate to this module.
    3. Make sure the location works well with the corrected database connection.
    4. Certainly, should register the location through control center.
    Hari, do I get the right steps? Any problem please let me know.
    Thanks a lot.

  • Data Services Cannot import metadata for Datastore

    Hi folks, Bit of an issue that is driving me nuts.
    I am running Data Services XI 3.2 latest patch installed. I have everything configured correctly I believe. I am using the mysql instance installed with my BOE XI install as this is my test sandbox that I am learning data services on.
    Running through the tutorial, when I create data stores for both my target and source i have no problems, but when I try to import the meta data for these data stores I receive no results. I cannot see anything wrong in my setup. I can add the tables manually and then I see the metadata, so I do have a work around to keep working through the tutorial. I would just like to resolve this issue since its driving me nuts.
    Any help on where to begin would be appreciated.

    not specific to DS:
    ORA-01437: cannot have join with CONNECT BY
    Cause: A join operation was specified with a CONNECT BY clause. If a CONNECT BY clause is used in a SELECT statement for a tree-structured query, only one table may be referenced in the query.
    Action: Remove either the CONNECT BY clause or the join operation from the SQL statement
    Arun asked the right questions as this seems to be Oracle version specific, sound like you might be using 8.x
    See different source i.e
    Oracle/PLSQL: ORA-01437
    Google Groups
    Adil

  • Unreadable Files: cannot import files error message

    I am trying to import old photos from a previous hard drive and get the following message-
    Unreadable Files: (# of files)
    The following files could not be imported (they may be an unrecognized file type or the files may not contain valid data).
    Then it will have the files and their locations that I am trying to open in the box below. These files can be opened with no problems using Adobe Photoshop Elements 3, Canon's Image Browser as well as Preview. They originally came in as digital photos from a Canon digital camera. They used to be able to open in iPhoto with no problem. They either have a [.JPG] extension or none at all. There are a lot of them. Could it be they were used by an older version of iPhoto and are unrecognizable in this one?
    I am running iPhoto 4.0.3 Any suggestions?

    David:
    You just reminded me of one more thing you can try. Log in to another account on your iMac and see if iPhoto will import as it should. If it does then it's a problem with your primary account. One cause might be another preference file that's in conflict with iPhoto. You can use Preferential Treatment to check for any corrupt or damaged user or system preference file. It's not foolproof however. If none are found and it sill won't import, then you can try the following method developed my another user:
    Trouble Shooting Preferences
    Go to HD/Users/Your_name/Library. Move the Prefs folder (in its entirety) to the desktop. Start iPhoto. Determine if problem is fixed.
    If the problem IS fixed, then go to the new Prefs folder that the OS will have created and open it up. Except for those items that are obviously not related, move the contents to the old Prefs folder on the desktop, replacing what had been there. When in doubt, move the item. The worst thing that can happen is a harmless "alert" message. Then, trash what remains of the new folder. Finally, move the old (but modified) Prefs folder back to the library.
    If the problem is NOT fixed, trash the new Prefs folder and move the old one back to its original location.
    If stlll no go, I'd try reinstalling the 10.2.9 COMBO updater followed by a permissions repair.

  • BODS 4.2 Cannot import the metadata table, RFC_ABAP_INSTALL_AND_RUN syntax error

    Hi all, we installed BODS 4.2 server to substitute a 4.1, but we are facing the error:
    Error: Cannot import the metadata table <name=T001>
    RFC CallReceive error <Function /BODS/RFC_ABAP_INSTALL_AND_RUN: RFC_ABAP_RUNTIME_FAILURE -(Exception Key: Syntax error in program /BODS/SAPLBODS....
    We already tried the solution for when people get the error related to unicode.
    Also, we are able to pull data via extractors, it only fails when loading Tables....
    Any help is greatly appreciated.

    Dear,
    You will have to import the new ABAP Function Group "BODS/BODS".
    Here are some details:
    Installing Functions on the SAP Server
    SAP BusinessObjects Data Services provides functions that support the use of the ABAP, BAPI, and
    IDoc interfaces on SAP servers. You will need some or all of these functions in the normal operation
    of the software in an SAP environment. These functions perform such operations as dynamically loading
    and executing ABAP programs from Data Services, efficiently running preloaded ABAP programs,
    allowing for seamless metadata browsing and importing from SAP servers, and reporting the status of
    running jobs. Some of these functions read data from SAP NetWeaver BW sources.
    You must upload the provided functions to your SAP server in a production environment. It is
    recommended that you always upload the functions to your SAP server whether you are in a
    development, test, or production environment. The functions provide seamless integration between
    Data Services and SAP servers.
    The default installation places two function module files for SAP servers in the ...\Data
    Services\Admin\R3_Functions\transport directory. You then upload these files to SAP servers
    using the SAP Correction and Transport System (CTS) or manually. Using CTS allows for version
    control as the functions evolve across releases.
    The installation provides two versions of transport files (depending on the server version you are using)
    to install the functions on the SAP server. To obtain the names of the latest transport files for installing
    or upgrading these SAP server functions, see the readme.txt file
    And I've found those files and text files in the local install folder....in:
    Program Files\SAP BusinessObjects\Data Services\admin\R3_Functions
    (that's where I've installed it).
    There you'll find some descriptive txt as how to proceed.
    After installing, it might happen that the executing user is missing some authorizations.
    Here my authorizations team helped me by tracing the user and then adding the necessary rights.
    Sure hope this will help you.

  • Error while importing : /metadata/iam-features-ldap-sync/LDAPUser.xml

    Hi,
    I am unable to import modified Oracle Identity Manager metadata. I am using OIM 11.1.1.5 on Windows Server 2007 EE.
    I am trying to use the import/export functionality via EM.
    I am able to export the LDAPUser.xml file from */metadata/iam-features-ldap-sync/LDAPUser.xml,* have made changes to it but when I am importing it back I am getting the error :
    Error occurred while executing operation.
    MDS-00001: exception in Metadata Services layer
    MDS-01059: document with the name /metadata/iam-features-ldap-sync/LDAPUser.xml missing in the source metadata store
    The values of the parameters in the import MDS operations are :
    fromLocation : E:/MDS/import/ +(On the physical server hosting the OIM)+
    docs : */metadata/iam-features-ldap-sync/LDAPUser.xml*
    restrictCustTo:               
    excludeAllCust: false
    excludeBaseDocsan : false     
    excludeExtendedMetadata : false
    cancelOnException : true
    I have tried using the command line script as well, It runs without a hitch but when I try and import back, it gives me the same old unedited document.
    Has anyone been successful with this approach ?
    Regards,

    Yes, I have. But still the same issue. It seem to run fine using the weblogicImportmetadata.bat fine but when I export and check the updated file, I still get back the original.
    Here's what I get on runnung the weblogicImportmetadata.bat file
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    Starting import metadata script ....
    Please enter your username :weblogic
    Please enter your password :
    +Please enter your server URL [t3://localhost:7001] :t3://localhost:7001+
    Connecting to t3://localhost:7001 with userid weblogic ...
    Successfully connected to Admin Server 'AdminServer' that belongs to domain 'OIM
    +1'.+
    Warning: An insecure protocol was used to connect to the
    server. To ensure on-the-wire security, the SSL port or
    Admin port should be used instead.
    Location changed to domainRuntime tree. This is a read-only tree with DomainMBea
    n as the root.
    For more help, use help(domainRuntime)
    Disconnected from weblogic server: AdminServer
    End of importing metadata script ...
    Exiting WebLogic Scripting Tool.
    C:\Oracle\Middleware1\Oracle_IDAM\server\bin>
    Edited by: 810367 on Aug 21, 2012 6:45 PM

  • Error,while importing METADATA  from production to development

    Folks,
    I am getting the following error while importing the metadata. I have exported from production server and want to do some modification to the existing mappings. Can some body help me to resolve this?
    Here is the error.
    Import started at 10/07/2004 11:12:19 AM
    * Import for OWB Release: 9.0.2.56.0 Version: 9.0.2.0.0
    * User: owb_rep Connect String: (DESCRIPTION=(ADDRESS=(HOST=vectrenabp)(PROTOCOL=tcp)(PORT=1521))(CONNECT_DATA=(SID=SDWSTEST)))
    * Data File: C:\oracle\OWBHome\owb\bin\win32\SDWSDEV-MAPPINGS-20041007_0916.mdl
    * Log File: c:\oracle\OWBHome\owb\bin\win32\Log.log Log Message Level: ALL
    * Physical Names: Y Mode: CREATE Character Set: WE8MSWIN1252
    * Ignore Universal Identifier: N Commit At End: Y
    Informational at line 15: MDL1205: PROJECT with Unique Object ID (UOID) <85247BBFEA1B44C6B10CDB3B70155A63> already exists, so PROJECT with physical name <SDWSDEV> and logical name <SDWSDEV> not imported.
    Informational at line 24: MDL1205: DATAWAREHOUSE with Unique Object ID (UOID) <268F5A9F43364309A8C0D01374C4A867> already exists, so DATAWAREHOUSE with physical name <DWH_TARGET> and logical name <DWH_TARGET> not imported.
    Error at line 141: MDL1247: Error occurred importing mapping <DWH_ZIP_CODE_DMGRPHCS_DIM_MAP/DWH_ZIP_CODE_DMGRPHCS_DIM_MAP> (at line 141).
    Detailed Error Message:
    API2014: Internal Error: Error in createStage:

    I have selected the option
    Add new metadata and replace existing objetcs. But it is not importing. Also I tried other options like
    1. deleting the existing mapping and tried.
    2. Putting the mapping in recycle bin and try.
    3. Take it from recycle bin.Even during taking it from recycle it is giving me the following error .
    Error occurred importing mapping
    <DWH_CMMDTY_INVC_FACT_MAP/DWH_CMMDTY_INVC_FACT_MAP>
    (at line 141).
    Detailed Error Message:
    API2014: Internal Error: Error in createStage:
    In above all cases it is giving me the error.
    Could you please help?

  • Getting error while importing metadata using View Objects

    Hi All,
    I am trying to create a repository using View Object in OBIEE 11.1.5.1 but getting error while viewing the data, after importing the metadata in the repository "[nQSError: 77031] Error occurs while calling remote service ADFService11G. Details: Runtime error for service -- ADFService11G - oracle/apps/fnd/applcore/common/ApplSession".
    I am also getting error "žADFException-2015: The BI Server is incompatible with the BI-ADF Broker Servlet: BI Server protocol version = null, BI-ADF Broker Servlet protocol version = 1" during testing my sample which is deployed to Admin server. I followed BI Adminstrator help file guide in order to create the sample for creating repository using view object.
    Admin server log says
    [2011-09-27T02:59:03.646-05:00] [AdminServer] [NOTIFICATION] [] [oracle.bi.integration.adf] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: b260b57746aa92d3:-1f9ca26:1328fcfd3e6:-8000-0000000000006744,0] [APP: BIEEOrders] [[
    QUERY:
    <?xml version="1.0" encoding="UTF-8" ?><ADFQuery><Parameters></Parameters><Projection><Attribute><Name><![CDATA[Deptno]]></Name><ViewObject><![CDATA[AppModule.DeptViewObj1]]></ViewObject></Attribute><Attribute><Name><![CDATA[Dname]]></Name><ViewObject><![CDATA[AppModule.DeptViewObj1]]></ViewObject></Attribute><Attribute><Name><![CDATA[Loc]]></Name><ViewObject><![CDATA[AppModule.DeptViewObj1]]></ViewObject></Attribute></Projection><JoinSpec><ViewObject><Name><![CDATA[AppModule.DeptViewObj1]]></Name></ViewObject></JoinSpec></ADFQuery>
    [2011-09-27T02:59:04.199-05:00] [AdminServer] [ERROR] [] [oracle.bi.integration.adf.v11g.obieebroker] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: b260b57746aa92d3:-1f9ca26:1328fcfd3e6:-8000-0000000000006744,0] [APP: BIEEOrders] java.lang.NoClassDefFoundError: oracle/apps/fnd/applcore/common/ApplSession[[
         at oracle.bi.integration.adf.ADFDataQuery.makeQueryBuilder(ADFDataQuery.java:81)
         at oracle.bi.integration.adf.ADFDataQuery.<init>(ADFDataQuery.java:70)
         at oracle.bi.integration.adf.ADFReadQuery.<init>(ADFReadQuery.java:15)
         at oracle.bi.integration.adf.ADFService.makeADFQuery(ADFService.java:227)
         at oracle.bi.integration.adf.ADFService.execute(ADFService.java:136)
         at oracle.bi.integration.adf.v11g.obieebroker.ADFServiceExecutor.execute(ADFServiceExecutor.java:185)
         at oracle.bi.integration.adf.v11g.obieebroker.OBIEEBroker.doGet(OBIEEBroker.java:89)
         at oracle.bi.integration.adf.v11g.obieebroker.OBIEEBroker.doPost(OBIEEBroker.java:106)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:62)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.lang.ClassNotFoundException: oracle.apps.fnd.applcore.common.ApplSession
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
         ... 38 more
    Please suggest how to make it work.

    Hi,
    Thanks for providing the online help URL, i have already completed the steps mentioned in URL
    I am able to import metadata using view object but getting above error("[nQSError: 77031] Error occurs while calling remote service ADFService11G. Details: Runtime error for service -- ADFService11G - oracle/apps/fnd/applcore/common/ApplSession".") while validating the data.
    It fails at step 5 of "To import metadata from an ADF Business Component data source:" section of above URL.

  • Error in Importing Metadata in OBIEE 11G

    Hi
    1)I recently install obiee 11G, I get an error of ompnctl failed during installation.Does it affect my setup later.
    2) I start creating RPD in 11G , I first created an System DSN and check the database connection it result in sucess.
    Then i start creating RPD in offline mode when i click on import meatdata after that Import meatadata- select datasource screen i choose ODBC 3.5 and choose the
    same DSN which i check previously and give the same user id and password it is giving me error The connection has failed.I also tried using OCI 10g/11g and in data source name i give the full connection string and giv the user id and password but still the problem remain same.
    Can anyone please help me in debugging the issue.
    The Database is in the same machine in which i installed OBIEE 11G
    Thanks
    Bhavesh Khandelwal
    Edited by: 812531 on Nov 17, 2010 5:30 AM
    Edited by: 812531 on Nov 17, 2010 5:36 AM

    Hi everyone,
    A few days ago I installed the Administration and Clients OBIEE11g tools on my machine. To do so follow these steps:
    - Install Weblogic Server 10.3.3
    - Install OBIEE 11g using 'Software Only'.
    I selected this installation because BI Server is installed on a Linux server.
    In the machine on which I installed previously existed the following products:
    - Oracle Client 10.2
    - Oracle ODBC Driver 10.2.0.2
    When trying to import Metadata into the repository, using Administrative tool in OBI 11g the import fails with both, ODBC and OCI drivers. Always the same error appears: “The connection has failed.”
    I created the tnsnames.ora file (which points to the database) in the path [Middleware Home] \ OracleBI1 \ network \ admin.
    I tried to import metadata for replacing the DSN connection string. For this I have followed this syntax: (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = [ip_address]) (PORT = 1521))) (CONNECT_DATA = (SID = [db_name ]))). But it does not import metadata. Always the same error appears: 'The connection has failed. "
    Can anyone help?
    Thanks in advance.

  • HT4489 I cannot import my vCard to iCloud...it shows error.."1 contact could not be imported because there was a problem reading the vCard"

    I cannot import my vCard to iCloud...it shows error.."1 contact could not be imported because there was a problem reading the vCard"

    The vCard must not be a compatible format.  (Unfortunately, there are multiple formats.)
    Often your carrier can transfer contacts between devices from different manufacturers.  Try visiting your carrier's retail outlet and see if they can do this for you.

  • I cannot import photos from any device to my iphoto program- the error message statesphotos cannot import because there was a problem downloading an image.  I cannot identify the image that is the problem.

    I cannot import photos to my iphoto from any of my devices.  The error message reads - iphoto cannot import your photos because there was a problem downloading an image.  I have deleted the last images- this did not help.  any suggestions?

    Details please
    What version of iPhoto? Of the OS? what devices are you haveing problems with? can you download teh photos to a desktop folder using image capture (in your applications folder) and import from there - or open with priview from there?
    LN

  • I am importing videos from my canon sl1 to my macbook when i use iphoto is says "iPhoto cannot import your photos because there was a problem downloading an image." and when i use image capture it says "An error occured while importing. The item 'MVI_1040

    I am importing videos from my canon sl1 to my macbook air when i use iphoto is says "iPhoto cannot import your photos because there was a problem downloading an image." and when i use image capture it says "An error occured while importing. The item ‘MVI_1040'' Thanks in advance

    Can you access the images on the phone with Image Capture (in the Applications Folder) ?

  • I cannot move photos from iphone to MacBook.  I get an error message that says: Error downloading image. iPhoto cannot import your images because there was a problem downloading an image. How can I fix/remedy this?

    I am receiving an error message every time I plug my iPhone 4S into my MacBook: Error downloading image. iPhoto cannot import your images because there was problem downloading an image.  How can I fix/remedy this?

    try Image Capture - in your applications folder
    LN

  • Lost all photos on my iPhoto and get the ERROR WRITING TO DISK when trying to reload from Time Machine. iPhoto cannot import your photos because there was a problem writing to the volume containing your iPHOTO LIBRARY  . Looking for solution.

    Lost all photos on my iPhoto and get the ERROR WRITING TO DISK when trying to reload from Time Machine. iPhoto cannot import your photos because there was a problem writing to the volume containing your iPHOTO LIBRARY  . Looking for solution.

    Problems such as yours are sometimes caused by files that should belong to you but are locked or have wrong permissions. This procedure will check for such files. It makes no changes and therefore will not, in itself, solve your problem.
    First, empty the Trash, if possible.
    Triple-click anywhere in the line below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) 2>&- | wc -l | pbcopy
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign ($) to appear.
    The output of the command will be a number. It's automatically copied to the Clipboard. Please paste it into a reply.
    The Terminal window doesn't show the output. Please don't copy anything from there.

Maybe you are looking for

  • Convert Char to float

    Hi all, Am wanting to convert a char value (the infoobject is defined as NUMC) into float in order to perform a calculation in the FOX formula. It would not allow the char value to be stored into a float variable...comes back wz an error message - Ty

  • Crystal Report Initilization error

    Hello I am new to Crystal Reports. I have created a Crystal Report (Ver 12.0) and linked it into Visual Studio 2008. I have copied all (CrystalDecisions.CrystalReports.Engine.dll, CrystalDecisions.ReportSource.dll, CrystalDecisions.Shared.dll, Crysta

  • In the output list Repeating one line always when generating query by sq01

    Hi, I have generated a query in sq01 for list material document for movment type 301 (Transfer posting) using below tables : MSEG          Material No. MATNR, Movt. - BWART, Qty. -MENGE MKPF          Material doc. field  MBLNR MARC          Stock in

  • Wi-fi and bluetooth disabled by administrator after update

    I recently did the software update on my Q10 and since then I can't access either wifi or bluetooth. I get the message wifi (or bluetooth) disabled by your administrator. Vodafone haven't been able to help and have suggested having the phone wiped ba

  • Troubleshoot sql server mail problem

    How to fix this issue? Here is error message: Date  4/21/2014 6:40:00 AM Log  Job History (Email Notification) Step ID  1 Server  testabc Job Name  Email Notification Step Name  sp99_email_process Duration  00:00:01 Sql Severity 16 Sql Message ID 179