Error getting a list of catalogs:unknown Error

Hi,
I have create universes on SAP BI dev system,they all wrking fine.Then i have stated to connect universe to SAP BI pro by changing the server infomation in connection.It was wrking fine i m able to change the information and then to connect respect query.but suddenly its started to show error:
"DBD:A runtime exception has occurred.(Error getting a list of catalogs:unknown Error)"
With changes connection information it was wrking fine and suddenly its started to show this error,I m not sure what could be the reason.And wht to do to resolve this.CAn anyone can help me in this?
Thanks,
Piyush

Hi,
Even i'm also facing the same error...
We are on.-
BO XI 3.1 SP2
BW 7 EP1 SP5
SAP_ABAP 7.1 SP5
In our case also, earlier it was working fine, but suddenly server/designer has started showing Empty Infocube list....
The above problem is present in our QA system.
Whereas DEV & PROD are working fine.
Your response is appriciated..
Regards,
Chitra H. Keluskar
Edited by: Chitra Keluskar on Dec 29, 2010 8:45 AM

Similar Messages

  • Designer connection error : error getting a list of catalogs

    Hi!
    The message window : "DBD:a runtime exception has ocurred (error getting a list of catalogs: unknown error)" appears after entering all SAP login parameters in a Universe Designer connection creation. The list of querys/cubes appears empty.
    The sap login parameters work in SAP GUI and Bex Query Designer
    Do I need any other privilege?
    Javier
    thanks!
    BOE XI 3.1 + SAP kit 3.1 .
    Edited by: Javier Kuan Quiun on Dec 29, 2008 4:59 PM

    I've installed SAP client with this components:
    SAP GUI for Windows 7.10
    -SAP GUI Suite
    -R/3 add-on
    -BW Add-on
    Business Explorer
    -Business Explorer (SAP Netweaver2004s)
    I've tested my client with another server succesfully. So what I''ll check is:
    - allow external access check
    But if I don't have access I don't know why a error message still appears.
    any ideas?
    thanks!
    Javier
    Edited by: Javier Kuan Quiun on Dec 30, 2008 5:55 PM

  • Can't Import Catalog - Unknown Error

    Is this still a known bug without a solution?
    I have LR3 on a MacBook Pro Snow Leopard and on a PC Desktiop Win XP Pro SP3.  I exported a catalog from the laptop to an external hard drive and then attempted to import it to the desktop and kept getting the dreaded Can't Import Catalog - Unknown Error message.
    I don't have an issue with LR Beta because i didn't use it; I just upgraded v2.6 installations on both machines to LR3.
    I like LR3 but I've got to be able to get the image files and the LR work I've done on them from my laptop to my desktop and an Unknown Error is not what I need. Am I going to have to wait for the first dot release to be able to do this?
    --Bob

    Well, I just got off the phone with Adobe Technical Support and I am extremely frustrated
    Support: Since you are working cross-platform (from a Mac laptop via an external hard drive and then to a Win XP desktop) we can only say that sometimes it will work and sometimes it will not.
    Me: Huh?  It worked perfectly in LR 2.6.
    Support:  I am sorry.  That is all I can tell you.
    Me: That really ruins my month.  I've got thousands of edited images on my laptop from a 3 week trip to SE Asia and now I can't move the catalog to my desktop?  Give me a break!!
    Support:  You can copy the image files to your desktop.
    Me: Without the accompanying adjustments?
    Support:  Yes.  Sorry.
    Me:  Me too.
    Anyone have a better idea?  I've filed a bug report.....
    --Bob

  • TS3297 When trying to purchase music on my MacBook Pro I got this message: Could not purchase "Wish List". An unknown error occurred (5002) in the iTunes store.

    Trying to purchase music and received this message: Could not purchase "Wish List". An unknown error occurred (5002) in the iTunes store. Try again later. I have tryed multiple times and still keep getting this error message. I have the downloaded the latest iTunes version. What is the answer?

    So you already followed these steps?
    This alert is often the result of an issue with verifying your billing.
    Quit iTunes.
    Open iTunes.
    Test the issue.
    If it persists, sign in to store.apple.com using your iTunes account
    Click on Change account information
    Modify or remove your credit card information.
    Click Continue.
    Test the issue.
    If you have I'd try calling AppleCare back and telling the it is error 5002 and already tried troubleshooting steps as listed in TS3297 and that you have already tried to email iTunes support and have yet to recieve a response.

  • FindGroups - Error while getting group list for login user

    Hi All,
    I am using below code snippet to search a group in OIM but it gives me "Error while getting group list for login user" error message.
    tcResultSet rsetAss = null;
    tcGroupOperationsIntf groupIntf = (tcGroupOperationsIntf)utilFactory.getUtility("Thor.API.Operations.tcGroupOperationsIntf");
    HashMap mapGrp = new HashMap();
    mapGrp.put("Groups.Group Name","DEF_GROUP");
    rsetAss = groupIntf.findGroups(mapGrp);     
    And i am ruuning this code using xelsysadm logon.
    com.thortech.xl.util.config.ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    Hashtable env = config.getAllSettings();
    com.thortech.xl.crypto.tcSignatureMessage moSignature = tcCryptoUtil.sign("xelsysadm", "PrivateKey");
    utilFactory = new tcUtilityFactory(env, moSignature);     
    Any guess?
    Thanks & Regards
    Inbaa.

    Here it is Rajiv,
    public class GetUserApprover {
    private String defGroup = "DEF_GROUP";
    public tcUtilityFactory getUtilFactory()
    tcUtilityFactory utilFactory = null;
    try
         logger.debug("Initializing the utilFactory");
         com.thortech.xl.util.config.ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    Hashtable env = config.getAllSettings();
    com.thortech.xl.crypto.tcSignatureMessage moSignature = tcCryptoUtil.sign("xelsysadm", "PrivateKey");
    utilFactory = new tcUtilityFactory(env, moSignature);
    catch(Exception ex)
         logger.info("Error while getting the utilFactory" + ex.getMessage());
         System.out.println(ex.getMessage());
    return utilFactory;
    public String getGroupKey(String defGroup){
              String groupKey = null;
              tcUtilityFactory utilFactory = getUtilFactory();
              if(utilFactory != null)
         System.out.println("utilFactory not null. Searching for group:" +defGroup );
                   try
              tcResultSet rsetAss = null;
              tcGroupOperationsIntf groupIntf = (tcGroupOperationsIntf)utilFactory.getUtility("Thor.API.Operations.tcGroupOperationsIntf");
              HashMap mapGrp = new HashMap();
              mapGrp.put("Groups.Group Name","DEF_OWNER_GROUP");
              System.out.println("Finding Group....");
              rsetAss = groupIntf.findGroups(mapGrp);          
              System.out.println("RowCount-->" +rsetAss.getRowCount() );
              rsetAss.goToRow(0);
              groupKey = rsetAss.getStringValue("Groups.Key");
         System.out.println("GroupKey-->" + groupKey);
         catch(Exception e){
              System.out.println("Error" + e.getMessage());
              return (java.lang.Object)groupKey;
    }

  • Web Matrix FTP Remote Connection Error - "Connection Error - Failure to get file list from server. An entry with the same key already exists."

    Does anyone have experience with this issue when connecting to a Linux FTP Web Server running a FTP Site?
    "Connection Error - Failure to get file list from server. An entry with the same key already exists."
    I cannot access the root directory of the ftp file server using Web Matrix 3. The site is .php based, and
    is accessible when connecting with FileZilla or Remote Connecting via FTP with Visual Studio.
    All sites have been deleted from Web Matrix, the user Application Data has been cleared and Web Matrix has been reinstalled.
    Issue Persists....
    Thanks in advance,
    Justin

    Turns out that the program leaves metadata in your app data folder that is not removed upon uninstallation of the software.
    This is incorporated to communicate with a file that uploaded into the ftp directory when publishing pages.

  • Every time I try to log in to the Mac App Store, I get red words saying "An unknown error has occurred" How do I fix this?

    Every time I try to log in to the Mac App Store, I get red words saying "An unknown error has occurred" How do I fix this?

    Try deleting the cache associated wi the App Store.
    Quit the App Store if it's open.
    Now open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy/paste:   ~/Library/Caches/com.apple.appstore
    Click Go then move the Cache.db file from the com.apple.Safari folder to the Trash.
    Try the App Store.

  • When attempting to edit a PDF doc, I get "Adobe has encountered an unknown error" Why?

    When attempting to edit a PDF doc, I get "Adobe has encountered an unknown error" Why?

    Hi myarwema,
    Are you using Acrobat on Mac OS or Windows (and what version?). You say you have version 11.0.0, but the current version is 11.0.10, so please choose Help > Check for Updates and install any available updates for starters.
    Does the error occur regardless of the PDF that you try to edit? If the problem is widespread, I would recommend a repair/reinstall of Acrobat (if installing the updates doesn't help). If the problem occurs with just the one document, that PDF could be damaged.
    Best,
    Sara

  • Error in getting the List Id in Visual studio Update Lsit item workflow activity

    Hi All,
    I am continuously getting this error 
    RequestorId: 65a82d7b-122b-b5ad-238b-3b7cde25c8aa. Details: System.FormatException: Expected hex 0x in '{0}'. at System.Guid.GuidResult.SetFailure(ParseFailureKind failure, String failureMessageID, Object failureMessageFormatArgument) at System.Guid.TryParseGuidWithHexPrefix(String
    guidString, GuidResult& result) at System.Guid.TryParseGuid(String g, GuidStyles flags, GuidResult& result) at System.Guid.Parse(String input) at System.Activities.CodeActivity`1.InternalExecute(ActivityInstance instance, ActivityExecutor executor,
    BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation).
    I know that workflow not ale to get my list's guid at run time and  it is a bug which is yet not fixed.
    I have already tried changing
    System.Guid.Parse("{$ListId:Lists/MyList;}") with the list GUID 
    System.Guid.Parse("{75DD48E6-44D3-43B1-BD83-D836CDE04FB9}").
    and this blog
    sp2013workflows.blogspot.ru/.../lookup-activities-in-visual-studio-2012.html
    but still workflows not working.
    any other option can i try?

    Hi Alok,
    Thanks for sharing ! It will help others who stuck with the same issue !
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • Surikogiflex getting "Error Getting Page List"

    Hi guys,
    I’m totally new with InDesign Server and relatively new with Flex. I’ve installed the surikogi/suribachi demo for (with) InDesign-Server CS5.5 and Flex. It’s all running fine, but I get one problem if I try to change the stories, especially to see the previews at the right side of the screen. If I choose the a story and open it, the story will be shown(and ready for editing) on the left, but seconds later an error comes up with “Error Getting Page List”. I don´t know why!? Is there a missing pagelist.xml like the storylist.xml in the suribachiassets folder in the downloadable .zip?
    The other question is: if I use the CreateStoryList.jsx to generate the storylist.xml there are parameters missing for layoutName="" and layoutIdentifier="". Why is this happening?
    Thanks for dealing with my problems
    Martin

    If clearing the cookies doesn't help then it is possible that the file <i>cookies.sqlite</i> that stores the cookies is corrupted.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete <b>cookies.sqlite-journal</b> and <b>cookies.txt</b>, if they exist, in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder] in case the file cookies.sqlite got corrupted.
    * http://kb.mozillazine.org/Cookies#Removing_cookies

  • How do I get a list of all missing files in a catalog in LR2?

    Is there an easy way to get a list of all missing files for the thumbnails in Lr2? I know the symbol that appears in the upper right corner of any particular photo that is missing its file, but how can I get a list of all such photos for an entire catalog (or at least big chunks of a catalog).
    Thanks.

    You can right click a folder and choose Synchronise - it has a Show Missing Files buttom.
    John

  • How can I get a list of all DCHP clients of my Airport Extreme?

    I'm trying to troubleshoot network problems, and I can't figure out how to get a list of DHCP clients.  In Airport Utility 6.3.1, it lists the wireless clients when I click on the airport icon, but it doesn't list the wired clients.  Running around the house looking at the network settings of every wired device isn't a lot of run.
    I saw posts that said to download Airport Utility 5.6.6, but the installer gives an error (I'm running OSX 10.7.5), so I can't get that to run.
    Speaking of trying to troubleshoot problems, I don't see any logs accessible from Airport Utility.  How should I get at those?
    Thanks.

    I was not able to install 5.6
    You might be using Mavericks. Apple shut the door on 5.6 workarounds in Mavericks.
    I can understand the need to keep things simple, but SOME level of advanced information (like wired client addresses) should be available on an advanced screen.  Extremely frustrating.
    You might want to tell Apple this.
    Apple - AirPort Extreme - Feedback

  • How to get the list of IDM users in a workflow.

    Hi,
    I wanted to get the list of IDM users in a workflow into a list.Now I tried to use getObjects Method,I do not have the display session here,I passed the workflow context or WF_Context.But it is giving exception like context null .
    I used the same method in a form and it worked.How can I get the list of users in a workflow.It is for customizing reports.
    Thanks and Regards,
    Pandu
    Any Idea on how to customize reports including attributes from resources and auditing attributes etc.Any help would be really great.
    Thank you.

    Hi John,
    I get this exception WorkItemForm: no id.
    This comes when I click on the other column.I generate the data needed in a report and display it as a sorting table when I get the data.
    I want to give the user ability to sort data by different columns.But when I click any column I get the exception
    WorkItemForm: no id
    How can I save a workitem on a manual form before invoking it from a manual action.
    Here is the code snippet
    <Field name='tblUsers'>
            <Display class='SortingTable'>
              <Property name='selectEnable' value='false'/>
              <Property name='align' value='left'/>
              <Property name='linkEnable' value='false'/>
              <Property name='sortEnable' value='true'/>
              <Property name='width' value='400'/>
              <Property name='columns'>
                <List>
                  <String>Account id</String>
                  <String>First Name</String>                      
                </List>
              </Property>
            </Display>      
            <FieldLoop for='row' in='_searchList[*]'>
              <Field name='enduserId'>
                <Display class='Label'>
                  <Property name='value'>
                    <block trace='true'>
                      <invoke name='getAccountId'>
                        <ref>row</ref>
                      </invoke>
                    </block>
                  </Property>
                </Display>
              </Field>
              <Field name='lblfirstname'>
                <Display class='Label'>
                  <Property name='value'>
                    <invoke name='getAttribute'>
                      <ref>row</ref>
                      <s>firstname</s>
                    </invoke>
                  </Property>
                </Display>
              </Field>
         <FieldLoop>      I think I may need to save some workItem,That is why this may be giving the error.How can I correct this.
    Thanks,
    pandu

  • How to get the list of collaboration rooms for a particular user??

    Hello Experts,
    I have a requirement to get the list of all the collaboration rooms for a given user. I have started developing the Web Dynpro application by reusing necessary jars required to the web dynpro application.
    on some action I am trying to execute the below code:
    IRooms roomsAPI = (IRooms) PortalRuntime.getRuntimeResources().getService(IRooms.PORTAL_SERVICE_ID);
    which I have got from help.sap.com
    But, there's some exception being raised and not able to retrieve the list of rooms.
    Could somebody tell me what am I doing wrong.
    Regards,
    Raghu.

    Hi,
    the below is the code that I have used to get the list of rooms. But I'm getting into the NullPointerException .
    I have added the catch block for time being, but could you please let me know the reason for NullPointerException?
    public void onActiongetRooms(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActiongetRooms(ServerEvent)
         IWDMessageManager msgMgr = wdComponentAPI.getMessageManager();
         try{
              IService service = PortalRuntime.getRuntimeResources().getService(IRooms.KM_SERVICE_ID);
              IRooms roomsAPI = (IRooms) service;
              String roomID = "00bd6231-fdca-2c10-919c-97bf74054b7d";
              IRoom room = roomsAPI.getRoom(roomID);
              String roomname = room.getName();
              msgMgr.reportSuccess(roomname);
         } catch (NullPointerException e) {
              // TODO: handle exception
              msgMgr.reportException("Null Error:"+e.getMessage(), true);
         catch (RoomInstantiationException e) {
              // TODO: handle exception
              msgMgr.reportException("Error :"+e.getMessage(), true);
        //@@end
    Any thoughts are much appreciated.
    Thanks in advance.
    Raghu

  • PREPARE UPLOAD_REQUEST CANNOT GET FILE LIST

    Hello all,
    In the PREPARE, phase UPLOAD_REQUEST, received error 'CANNOT GET FILE LIST OF '..EPS\in.. folder.
    Log UPLOADREQ.LOG has the followin. Search in SDN and SAP did not get any result.
    1 ETQ201XEntering upgrade-phase "UPLOAD_REQUEST" ("20081126150332")
    2 ETQ367 Connect variables are set for standard instance access
    4 ETQ399 System-nr = '60', GwService = 'sapgw60'
    4 ETQ399 Environment variables:
    4 ETQ399   dbs_db2_schema=SAPR3
    4 ETQ399   auth_shadow_upgrade=0
    4 ETQ399 Directory 'd:\usr\BZ3put\eps' not found.
    4 ETQ399 Skipping copy of OCS packages.
    2 ETQ730 Starting upload of all package files in "
    ustcf001\patches\EPS\in"
    4 ETQ010 Date & Time: 20081126150339 
    4 ETQ230 Starting RFC Login to: System = "BZ3", GwHost = "ustwa356", GwService = "sapgw60"
    4 ETQ359 RFC Login to: System="BZ3", Nr="60", GwHost="ustwa356", GwService="sapgw60"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "SPDA_PREPARE_PATCH" by RFC
    4 ETQ234 Call of function module "SPDA_PREPARE_PATCH" by RFC succeeded
    4 ETQ239 Logging off from SAP system
    4 ETQ010 Date & Time: 20081126150339 
    2 ETQ731 Upload failed, rc = "1", reason = "CANNOT GET FILE LIST OF
    ustcf001\patches\EPS\in"
    2 ETQ730 Starting upload of all package files in "
    ustcf001\patches\EPS\in"
    4 ETQ010 Date & Time: 20081126151823 
    4 ETQ230 Starting RFC Login to: System = "BZ3", GwHost = "ustwa356", GwService = "sapgw60"
    4 ETQ359 RFC Login to: System="BZ3", Nr="60", GwHost="ustwa356", GwService="sapgw60"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "SPDA_PREPARE_PATCH" by RFC
    4 ETQ234 Call of function module "SPDA_PREPARE_PATCH" by RFC succeeded
    4 ETQ239 Logging off from SAP system
    4 ETQ010 Date & Time: 20081126151823 
    Hope anyone can help, thanks in advance.
    Thanks and regards
    Terry

    I tried to load the packages via SPAM, and got the following - does it mean I have corrupted EPS/in?
    Could not create file list
    Message no. PS 012
    Diagnosis
    A list of the required files could not be created as an error occurred.
    Directory:
    ustcf001\patches\EPS\in
    File mask:
    Error code: 17
    Definition of error codes:
    03 RFC system failure
    04 RFC communication failure
    11 invalid EPS subdirectory
    12 sapgparam failed
    13 build directory failed
    14 no authorization
    17 read directory failed
    18 read attributes failed
    22 too many read errors
    23 empty directory list
    System Response
    The operation was terminated.
    Procedure
    Eliminate the cause of the error and repeat the operation.

Maybe you are looking for

  • UNABLE TO DOWNLOAD FROM MY HARD DRIVE ENCLOSER

    MAYBE I DIDN'T EXPLAIN MY PROBLEM CORRECTLY, BUT I AM NEW TO THE COMPUTER ONLY USING ONE FOR ABOUT SIX YEARS. I BOUGHT A NEW APPLE iMAC AND WHAT I WANT TO DO IS RECOVER ALL MY PROGRAMS I HAD ON MY OLD GATEWAY COMPUTER. WHEN I HAD TO GET RID OF IT I H

  • Login user id is invalid in oracle 11i apps 11.5.8 on windows 2003 server

    Dear All, I Installed oracle 11i apps 11.5.8 on windows server, when I try to start ie browser with user administrator and password, it is showing me, user id is invalid, try to login in again. and on the status bar down it is showing loginscript_log

  • Photo Galleries not to MobileMe

    Can I publish my albums (after exporting) to a different web server other than MobileMe and still get the same effects as galleries in MobileMe ? Basically what I want is galleries that can be seen on iPhone. Can anyone please try this and let me kno

  • Strange effects in using f:convertNumber and h:inputText

    Hi everybody, I'm having really strange results with the following <h:inputText> and <f:convertNumber> tags in one JSF page: <h:inputText id="total" value="#{myBean.total}" required="true" size="10" ><f:convertNumber minFractionDigits="2" maxFraction

  • Redefinition For Move Tablespace.

    Hi,    I am using Release 11.2.0.3.0 of oracle. Now i am supposed to move a 'big table big_tab1(~700GB)+its indexes' to a different tablespace which is encrypted. I am trying to follow redefinition approach inspite of ALTER TABLE MOVE , as because we