How to access/open rpd files in offline mode from client desktop

Hi All,
Please tell me what configuration settings I need to have on my desktop to access RPD files stored on BI server?
In our OBIEE environment, we have BI server installed on linux server, and I have installed BI admin tool on my desktop (Windows OS).
I need to know what settings I should configure in my NQSConfig.ini file on my desktop so that I can access rpd files stored on BI server...
I can access online RPD using BI server ODBC connectibity, but want to access other offline RPD files stored in repository directory on linux server where OBIEE 11g server installation is done.
Thanks and Regards
Santosh
Edited by: 910192 on 22-Feb-2012 08:09

Saichand,
Highly appreciate your response.
But wht I am looking for is how to access other RPD files stored in repository folder on server machine where BI server is running, from BI administration tool which is installed on my desktop
I am able to access default online repository on BI server using ODBC configuration from BI admin tool on my desktop, but want to access other rpd files (lets say sample rpd files which are installed on BI server machine) using (file->open-offline) option.
As per Jay, it seems it is not possible to access repositories other than online repository on BI server, and I will have to copy those rpd files on my desktop and then access using file->open->offline option in BI admin tool.
If you have any other way of doing this or have done this somehow , please let me know.
Thanks and Regards
Santosh

Similar Messages

  • How can i open RAW files in Photoshop CS4 from Canon EOS 6D camera?

    How can i open RAW files in Photoshop CS4 from Canon EOS 6D camera?

    You can't directly but can use DNG Converter to convert your files so ACR can read and process them.
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications

  • I can not open rpd file in online mode by oracle bi administrator tool

    Dear All,
    I faced an error below:
    - Yesterday, i opened rpd file online normally. after that, i restarted (stop bi services + start bi services) bi server. we did work by openning rpd file onlie normally.
    - today, i could not open rpd file online, it noted _"logon failed"_. i could open rpd file offline
    - i check log in OEM --> Business Intelligence --> coreapplication --> Selected Item: Diagnostics, some error below (i don't know exactly cause by what error)
    + Failed to restore ctx from reference
    + server is local, but local login bypassed.
    + Demo trusted CA certificate is being used in production mode
    + !!! Oracle FOI server destroyed. !!!
    + !!! Oracle MapTileServer destroyed. !!!
    please help me as soon as possible,
    Many thanks,

    Hi,
    Can check the nqsserver latest error log message
    path will be like below,
    D:\Oracle\Middleware\instances\instance1\diagnostics\logs\OracleBIServerComponent\coreapplication_obis1\nqsserver.log
    what changes u done? is it configured with SSL?
    Thanks
    Deva
    Edited by: Devarasu on Nov 23, 2012 5:09 PM

  • How can I open RAW files with PSE 12 from Olympus o-md e-m 10?

    How cam I open RAW files ? I use PSE 12, the Olympus om-d em 10 and windows 7.

    Photoshop Elements 12 should be able to recognise raw files from the OM-D E-M10.
    Check which camera raw you currently have by loading the editor, going to the Help menu and selecting About plug-in -> Camera Raw
    If it not at version 8.5 then go to the Help menu and select Updates
    Brian

  • How can I open help file (HTML or .chm) from Java Web Start (new to JAVA)

    Hi All,
    Im trying to open the help file of my application.
    When trying to access the help file from the GUI (pressing F1 for launching the help file), I'm geting the an error, something like:
    "Can't show help URL: jar:file:C:\Documents and Settings\%USER%\Application Data\Sun\Java\Deployment\javaws\cache\http\Dlocalhost\P7001\DMwebstart\RMjar-name!/com/resources/helpFiles/MyHelpFile.html"
    It seems that the file which is packed in a jar, was downloaded to the Java Web Start cache directory:
    C:\Documents and Settings\%USER%\Application Data\Sun\Java\Deployment\javaws\cache\http\Dlocalhost\P7001\DMwebstart
    The code which is activated when launching the help file is:
    try
                ResourceBundle resourceBundle = DoubleResourceBundle.getBundle("Resource", "ResourceImpl");
                RuntimeUtil.launchFile(new File(resourceBundle.getString("help.file")));
            } catch (IOException e)
                // TODO Auto-generated catch block
                e.printStackTrace();
            }where the property "help.file" is in some property file in the resource bundle named "Resource", and looks like this :
    help.file="com/trax/docs/help/global/MyHelpFile.html"
    The function "RuntimeUtil.launchFile" knows how to launch any file in its default application, and indeed it does launches the html, when giving it an absolute path to the file on my PC, as "C:\Helpfiles\MyHelpFile.html" as such:
    RuntimeUtil.launchFile("C:\Helpfiles\MyHelpFile.html");My question is :
    The application is going to be deployed on a Customer PC. How can I access the html file from the code, with a relative path and not its absolute path on the customer pc, which I can't know?
    I found these restrictions regarding web start:
    (copied from "http://rachel.sourceforge.net/"):
    *Rule 1: Java Archives only. No loose files.* All your resources have to be packaged in Java Archives (jar) if you want to have
    them delivered to the user's machine and kept up-to-date automatically by Java Web Start.
    *Rule 2: No file paths.* You can't use absolute or relative file paths to locate your
    jars holding your resources (e.g. <code>jar:file:///c:/java/jws/.cache/resources.jar</code>).
    Absolute file paths won't work because you never know where Java Web Start
    will put your jar on the user's machine. Relative file paths won't work because Java Web Start
    mangles the names of your jars (e.g. <code>venus.jar</code> becomes <code>RMvenus.jar</code>)
    and every JNLP client implementation has the right to mangle your names
    in a different way and you, therefore, can't predict the name with
    which your jar will be rechristend and end up on the user's machine in
    the application cache.Seems complex or impossible, to perform a simple task like opening a file.
    Please advise (I'm new to Java and Web Start).
    BTW, I'm working with IntelliJ IDEA 5.0.
    Thanks,
    Zedik.
    {font:Tahoma}{size:26pt}
    {size}{font}

    the follwing method i have used to open html file ...
    so to access html file i am shipping resources folder with jar file ..
    private void openHtmlPages(String pageName) {
         String cmd[] = new String[2];
         String browser = null;
         File file = null;
         if(System.getProperty("os.name").indexOf("Linux")>-1) {
              file = new File("/usr/bin/mozilla");
              if(!file.exists() ) {
              }else     {
                   browser = "mozilla";
         }else {
              browser = "<path of iexplore>";
         cmd[0] = browser;
         File files = new File("");
         String metaData = "/resources/Help/Files/"+pageName+".html"; // folder inside jar file
         java.net.URL url = this.getClass().getResource(metaData);
         String fileName = url.getFile();
         fileName = fileName.replaceAll("file:/","");
         fileName = fileName.replaceAll("%2520"," ");
         fileName = fileName.replaceAll("%20"," ");
         fileName = fileName.replaceAll("jarfilename.jar!"," ").trim();
         cmd[1] = fileName;     
         try{
              Process p = Runtime.getRuntime().exec(cmd);
         }catch(java.io.IOException io){
                   //Ignore
    can anyone give me the solution..???
    Regards
    Ganesan S

  • How Can i open Html file in a Browser from Jar file

    Hi
    i am having Html help files inside my Jar file ... if i use
    getclass().getRource("\lib\start.html");
    it is not opening ... so i have to ship seperate folders for html files along with jar files.... can anyone give the solution to have(open) html files inside the jar file and to open then in a default browser of any OS
    Regards
    Ganesan S

    the follwing method i have used to open html file ...
    so to access html file i am shipping resources folder with jar file ..
    private void openHtmlPages(String pageName) {
         String cmd[] = new String[2];
         String browser = null;
         File file = null;
         if(System.getProperty("os.name").indexOf("Linux")>-1) {
              file = new File("/usr/bin/mozilla");
              if(!file.exists() ) {
              }else     {
                   browser = "mozilla";
         }else {
              browser = "<path of iexplore>";
         cmd[0] = browser;
         File files = new File("");
         String metaData = "/resources/Help/Files/"+pageName+".html"; // folder inside jar file
         java.net.URL url = this.getClass().getResource(metaData);
         String fileName = url.getFile();
         fileName = fileName.replaceAll("file:/","");
         fileName = fileName.replaceAll("%2520"," ");
         fileName = fileName.replaceAll("%20"," ");
         fileName = fileName.replaceAll("jarfilename.jar!"," ").trim();
         cmd[1] = fileName;     
         try{
              Process p = Runtime.getRuntime().exec(cmd);
         }catch(java.io.IOException io){
                   //Ignore
    can anyone give me the solution..???
    Regards
    Ganesan S

  • How can I open raw files in elements 12 from nikon d810

    How can I use PS Elements (Mac) to open raw files from Nikon D810?

    Hi,
    The D810 requires camera raw 8.6 which currently is not available for Photoshop elements.
    You could download and install the free Adobe DNG converter and use that to convert the NEF files to DNG files which can then be processed by Photoshop elements.
    MAC: http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5824&fileID=5839
    Brian

  • How do I open PDF files on a website from my MacBook Air?

    I get only a blank page when I click on a pdf file on a website. (I am able to open in Safari with a right click.)
    I downloaded the PDF Viewer, but it didn't help.
    I went to TOOLS to disable blocking extensions, but none were listed.

    See:
    * https://support.mozilla.org/kb/pdf-files-are-blank-and-cant-be-downloaded-mac
    * https://support.mozilla.org/kb/Opening+PDF+files+within+Firefox
    Disable the Adobe Reader plugin in Firefox (Tools > Add-ons > Plugins) and use the external Adobe Reader application or Preview application instead.
    PDF files may be found under entries like Portable document or Adobe PDF document.
    *Firefox > Preferences > Applications > Adobe PDF document : Use Adobe Reader

  • How do I open pdf files stored in iCloud from iMac preview app on my iPad

    I save a PDF file to iCloud using Preview on my iMac or MacBook Pro. What app opens this on my iPad? Numbers files I open w numbers, pages with pages, but what on the iPad opens Preview app pdf files that are stored in iCloud?

    I don't see an icloud connection in ibooks, so how do I get a pdf file from icloud into ibooks

  • How can I open psd files into Potoshop CC from bridge

    PSD files will not open into Photoshop CC from Bridge CC. I get this error message...“Windows cannot find, C:\program files\adobe\adobe photoshop CS5 (64 Bit)\photoshop.exe.” I can open jpeg, tiff and raw.   I'm using Windows 7. I do not have CS5 on my computer. Help...

    You must have uninstalled CS5 after you installed CC.  Your registry is fouled up.  You can either uninstall CC, run the Script Cleaner and reinstall, or fix registry as below.
    After looking at a new user's registry HKEY_CURRENT_USER and comparing it to the one on the original user, I found a registry value which was not changed, and should have been.
    I found a key:
    HKEY_CURRENT_USER\Software\Classes\Applications\Photoshop.exe\shell\op en\command
    This key was set to the path for Photoshop CS6 when it should have been set to Photoshop CC.
    In other words, in my case, it was set to:
    "C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe" "%1"
    When I changed the CS6 to a CC, in other words, so the whole key reads:
    "C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe" "%1"

  • How can i open raw files in elements 11 from nikon d610

    help

    You need to install Camera Raw 8.3 RC. The camera is supported in that version. And, of course, it will be supported in ACR 8.3 when it is officially released.

  • How can I open raw files from my Nikon D7100 in CS4 or CS5?

    How can I open raw files from my Nikon D7100 in CS4 or CS5?

    Andy,
    In the simple and short form, what happens with the ACR (Adobe Camera RAW) module is that it gets updated with regularity, to accommodate the camera mfgr's. changes for their newer models. That ACR works within the host program, such as Ps, PsElements, Lightroom, etc.. At a point, Adobe ceases to support older host program versions. When that happens, the user has a few options:
    Upgrade the host program version
    Use another host program, such as PsElements or Lightroom
    Use the free DNG converter, per Curt's suggestion. That is not host program dependent
    Glad that the DNG Converter works for you.
    Good luck,
    Hunt

  • How can i open .mts files in premiere cs4?

    Hi all,
    I am using premiere cs4.
    when i import .mts file in cs4 it says file format is not supported.
    could any one please tell me how can i open .mts file in premiere cs4.
    Thanks
    Murali.

    What kind of audio did the camera record?  For example, the Sony NX5U can be set to record linear PCM audio, which will not import into CS4.  If the same camera is set to record AC3 audio, then the clips should import and play as expected.  This thread may help:
    Adobe Community: AVCHD audio
    Jeff

  • How do I open .wim files on my macbook pro?

    When my hard drive crashed for the second time on my HP computer, I knew it was time for a change. The HP help menue gave me the option to backup everything onto an external hard drive. I did this and now when I try to open the files inside, they are all "#.wim" files. The #s go from 0.wim-53.wim. How do I open these files? Some might be microsoft word or powerpoint files but I have not got Microsoft word for mac yet. I understand that this will probably prevent me from opening some of the files but wouldnt I be able to open the others? If you know anything about ".wim" files, please help me.

    https://en.wikipedia.org/wiki/Windows_Imaging_Format
    http://www.eigenlogik.com/entropy/

  • I cannot afford to upgrade my computer and sw from xp. How do I open older files created in InDesign CS2

    I cannot afford to upgrade my computer and sw from xp.
    How do I open older files created in InDesign CS 2.
    The error code it telling me the plug ins have been disabled.
    Someone tell me this is a message about the newer version that has not been installed on my computer.
    I

    If you plan on collaborating with other users who have progressed with the technology you are gong to have to upgrade. There is simply no way any longer to continue with XP and CS2 except in isolation.

Maybe you are looking for

  • I am unable to edit 'tables.vi' (part of report generation)

    I wish to create a table in a report, using different column widths. I've saved 'Append text table to report.vi", "tables.vi" and "set table column width.vi" under different names, without update callers. When i make any change (placing any function)

  • Network Location not showing domain name in Server 2012 R2 after demoting 2003 PDC

    The single active NIC in my new Server 2012 R2 no longer shows the Network Location of "DOMAIN.LOCAL" like it did before I demoted the only Server 2003 domain controller. The NIC now shows "NETWORK" as the Network Location. The registry still shows a

  • How can I have html5 audio continue to play in background in iOS7 from my flex mobile app

    I have mobile app I've developed in flash builder 4.6 (flex 4.12 sdk) and I have a stagewebview component which contains HTML5 audio (mp3 retrieved from my web server and streamed / played via the app)... I want to have the ios version of the app CON

  • Basic query in Oracle Spatial

    I'm trying to learn Oracle Spatial working with 11g R2 and with 3D georeferenced data (specifically data describing buildings in a city). But I'm having trouble getting a basic query to work on my dataset (it works for the book example), and I'm tryi

  • Pass data parameter from URL to Forms

    Hi Is it possible to pass a data parameter from asp to Forms?. In my asp I have a url to call a form (eg. http://servername:port/forms90/f90servlet/form=testform.fmx). In my testform.fmx I accept 'account no' as a parameter for querying the records.