How to open a webi document in deski

Hello,
I have several webi documents made but find out right now that in order to print them out I used the wrong tool. Instead of making them all over again I was wondering if there existed a tool to go back from webi do deski.
I'm working on BO XI 3.0.
thanks
Thierry

deski is deprecated and the tool that was made was done so to get customers off of deski. If you have XI 3.x you should be able to use webi rich client (the future alternative to deski) which allows you to view and print the report locally. Else you will need to recreate the report in deski
Regards,
Tim

Similar Messages

  • How to open a web page in JFrame.

    Please let me know how to open a web page in the Java Frame.

    HTML code can be viewed in any Swing component you want.

  • Not able to open a webi document in java

    final String CMS = "pundl10492:6400";
              final String userID = "administrator";
              final String password = "";
              final String auth = "secEnterprise";
              IEnterpriseSession enterpriseSession = null;
              try
                   ISessionMgr mySessionMgr = CrystalEnterprise.getSessionMgr();
                   enterpriseSession = mySessionMgr.logon(userID, password, CMS,auth);
                   System.out.println("Session created : "+ enterpriseSession.toString());
                   if (enterpriseSession != null)
                        IInfoStore iStore = (IInfoStore)enterpriseSession.getService("InfoStore");
                        ReportEngine reportEngine = (ReportEngine)enterpriseSession.getService("WebiReportEngine");
                        final String query = "SELECT SI_ID, SI_NAME FROM CI_INFOOBJECTS WHERE SI_KIND = 'Webi' " +
                                                      "and SI_NAME like '%Least Accessed Documents%'";
                        IInfoObjects objInfoObjectsWIDs = (IInfoObjects) iStore.query(query);
                        IInfoObject objInfoObjectWID = (IInfoObject) objInfoObjectsWIDs.get(0);
                        int docId = objInfoObjectWID.getID();
                        System.out.println("docID : "+docId);
                        DocumentInstance doc = reportEngine.openDocument(docId);
                        FileOutputStream l_fos= null;
                        String fileName = "morcom" + "_" + userID+ "."+"xls";
                        l_fos = new FileOutputStream("D:\\_workarea\\MORCOM_POC\\reports\\"+fileName);
                        BinaryView docBinaryView = (BinaryView)doc.getView(OutputFormatType.XLS);
                        byte[] b = docBinaryView.getContent();
                        l_fos.write(b);
                        System.out.println("File created");
              catch(Exception e)
                   e.printStackTrace();
    I am trying to open a document and the code iam using is given above. I am using BO XIR3 and i get
    Exception in thread "main" java.lang.NoClassDefFoundError: com/crystaldecisions/celib/trace/h
         at com.businessobjects.sdk.plugin.desktop.webi.internal.d.<clinit>(Unknown Source)
         at com.businessobjects.sdk.plugin.desktop.webi.internal.WebiFactory.makePlugin(Unknown Source)
         at com.crystaldecisions.sdk.occa.pluginmgr.internal.PluginMgr.getPluginInterface(PluginMgr.java:291)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects.continueUnpack(InfoObjects.java:409)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects.startUnpack(InfoObjects.java:361)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.queryHelper(InternalInfoStore.java:712)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.query(InternalInfoStore.java:566)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoStore.query(InfoStore.java:167)
         at BOTest.main(BOTest.java:42)
    error at this line:-
         IInfoObjects objInfoObjectsWIDs = (IInfoObjects) iStore.query(query);
    Can anyone give a code snippet for opening a webi document in release3. The same code works in release 2.
    Thanks
    Shruti

    You have a "NoClassDefFoundError", so a code snippet won't help.
    XI Release 2 -> XI 3, then jar files have been renamed and object files refactored.
    You've ended up with mixed XI Release 2 and XI 3 jars.  
    Remove your jars and re-add from XI 3.
    Sincerely,
    Ted Ueda

  • Unable to open a Webi document : 'alertDlg' is undefined

    Hi,
    Since few days, I have the following warning "alertDlg is undefined" when I try to open a Webi document.
    The only way to see my document is to see him in modification mode.
    My environnement : Bo Xi 3.1 SP3 + IIS 6.0
    Somebody has already had this probleme?
    Thanks

    Hi,
    For this, if the user is added in admin group the reports will open. Otherwise assign admnistrator privileges to the mentioned Id and check.
    If you don't like to do so try this 'move the report to another folder and then move it back, it works'.
    All the Best
    Madhu....

  • WIS 30902 Error when opening a webi document from Rich client

    Hi ,
    When I try to open a webi document from local folder or import from CMS in Webi Rich client, I get the following error message.
    "An error occured while checking the document security. (WIS 30902)"
    Has any one come across this issue?
    Thanks,
    KartheeK

    In our case, we could initialize Webi Rich Client (Webi RC) successfully , but later we found that any disruption in Webi RC client connection will corrupt the client ..\LocData files used by client to dock to the CMS, causing WIS 30902 error.
    At first we thought just deleting the ..\LocData Client .lsi files fixed it. Unfortunately, there are a collection of files and folders in ..\Loc Data involved in the authentication. We already found that complete deinstall of Webi RC didn't work. Now we know the problem is in the \My Business Objects Documents\LocData values.  Deinstall of Webi RC does not delete them.
    It sounds scary, but isn't. The Webi RC will download the refreshed files it needs automatically from the CMS. However, it won't overwrite the old bad ones, and you have to do that manually.
    Solution.
    1. Logout of Webi RC. Make sure it is not running in taskmgr.
    2. Go to the client ..\My Business Objects Documents\LocData folder.
    3. Delete all the files and folders, or rename by adding .bak extension.
    4. Logon with Webi RC
    5. Corrupt files will now be resynchronized to CMS
    -Doug Grant, Haworth BI / Business Objects Architect

  • How top Open a Excel Document from share point document library using jquery

    How top Open a Excel Document  from share point document library using jquery

    Hi,
    According to your post, my understanding is that you want to open excel file via JQuery.
    To open excel file, we can use the following code.
    <script type="text/javascript">
    function openExcel(strFilePath) {
    var yourSite = "http://www.yoursite.com";
    openExcelDocPath(yourSite + strFilePath, false);
    function openExcelDocPath(strLocation, boolReadOnly) {
    var objExcel;
    objExcel = new ActiveXObject("Excel.Application");
    objExcel.Visible = true;
    objExcel.Workbooks.Open(strLocation, false, boolReadOnly);
    </script>
    For more reference:
    http://www.kavoir.com/2009/01/using-javascript-to-open-excel-and-word-files-in-html.html
    http://www.dotnetspider.com/resources/43453-Open-Word-Excel-files-using-Javascript.aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to refresh a Webi document Automatically

    Hello everybody:
    I wonder if someone can help me with a little situation that i dont know how to solve, the situation is this:
    I have a Webi document that refreshes in around  5 or 6 minutes, thats fine because it has a lot of information, however the users cant wait all this time so we need to find the way to refresh the document in the night and save it in order that the users open the document and see it refreshed. Because of security policies  the users have access only to the folder where is the document that i am talking about so scheduled instances dont work for me.
    What do i need??? well, i need to run the document an save it  but automatically.
    Does anyone know if this is possible??? and if it is possible how do i do???
    I will greatly appreciate any help
    Regards.

    Denis Konovalov i have been reviewing the admin guide in this link
    http://help.sap.com/businessobject/product_guides/boexir31SP3/en/xi31_sp3_bip_admin_en.pdf
    However i couldnt find anything about to set it up so by default they open latest instance of a report as you said. Do youn mind to explain how can i do that?? or at least where in the document can i find the proper information???
    Regards
    EDIT****************************************************************************
    Denis Konovalov Thank you very much part of the problem has been solved (no one told me that there is another detail with this ¬¬) the answer that you gave me works fine.
    Regards
    Edited by: Elio Javier Guzman Hernandez on Nov 4, 2011 1:08 AM

  • How to open a "PDF Documents" in iBooks?

    Hello!
    In order to "study" some documents (underline, write comments, etc as it was presented in the Maverick Video Show), i added some pdf documents to iBooks (on Maverick).
    How to open it/them? when i click on a "book" (document), nothing happens. Why?

    The annotations tools you describe only work on iBooks, not PDFs.
    when you click on a PDF in iBooks Library, the document should open in Preview. Is that not happening?

  • How to Open another WEBI from one WEBI by clicking a data point on the first tab?

    Hello Guys,
    I have a requirement in which user wants to open another tab by clicking a data point on one tab.
    So, lets say we have a table in one Webi and its has following fields:-
    Customer : Sales DOC: Month : Year : Qty : Amt
    User wants, that if they click on Customer, it should open another webi which should show them a chart reflecting the data about that customer only.
    How can I do that?
    Regards
    Prashant

    Hi,
    Check Below links about Hyperlink details
    http://scn.sap.com/docs/DOC-21161
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0daee1d-0e38-2d10-0c91-8bb4ab5aa266?quicklink=index&overridelayout=true
    Regards,
    Anish

  • How to open a pdf document with bookmark from forms6i

    Hi. I'd like to open a pdf file from forms6i but positioning at a specified bookmark. I've tried the following line of code, but it jus opens the document at the start of it:
    host ('c:\sqlfigo.pdf #EMPRESAS',no_screen);
    also tried:
    host ('c:\sqlfigo.pdf EMPRESAS',no_screen);
    How do i open the document a navigate to a specified bookmark.
    Help will be greatly appreciated ...!

    Hello,
    The parameters that can be used in the URL when opening a PDF document are
    described in the document :
    Open Parameters for PDF
    http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf
    Regards

  • How to open links from document library in a new window?

    I have a column called "Links" in document library, i want to open those links in a new window. Please guide me on this how to achieve this.
    Thanks
    Ramanjulu Naidu N

    hi,
    See whether these links help you -
    http://preachingsharepoint.blogspot.com/2012/06/open-document-in-new-window-from.html
    http://stackoverflow.com/questions/5119919/sharepoint-links-how-to-open-in-new-tab-window
    http://www.benramey.com/2011/04/25/opening-all-sharepoint-2010-documents-in-a-new-window/
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/9db08c4a-b53c-419a-84f8-001c194d1311/how-to-open-sharepoint-document-library-pdf-file-in-new-window?forum=sharepointadminlegacy
    http://www.andrewconnell.com/Adding-OpenInNewWindow-option-to-SharePoint-Links-lists
    http://www.uccorner.com/32/sharepoint/sharepoint-open-links-in-new-window/
    Hope this helps!
    MCITP: SharePoint 2010 Administrator
    MCTS - MOSS 2007 Configuring, .NET 2.0
    | SharePoint Architect | Evangelist |
    http://www.sharepointdeveloper.in/
    http://ramakrishnaraja.blogspot.com/

  • How to open a word document in dynpro

    Hi experts,
    i am new to web dynpro, i have a problem that i need to open a word document from desktop in my screen. its not ALV or i dont have to upload the file but i have to OPEN the file..
    plz help
    Regards:
    Parteek

    Hi Manu,
    Follow these steps:
    1. Create CONTEXT with 2 attributes - UPLOAD & SHOW of type XSTRING.
    2. Add a "UPLOAD" element on the layout of screen & map it with UPLOAD attribute of context.
    3. Then Add a "OFFICE CONTROL" on the same screen & map it with the SHOW attribute of context..
    4. Add a BUTTON for Show Document/Open Document.
    5. Add 2 attrubutes in ATTRIBUTES tab of the dynpro application:
            i) DOCUMENT type IF_IOS_DOCUMENT
           ii) FACTORY    type IF_IOS_FACTORY
    6. On method of that button (SHOW)...enter the following code:
    DATA : refexp TYPE REF TO cx_ios_exception.
    IF wd_this->document IS INITIAL.
        wd_this->factory->get_document_proxy( IMPORTING proxy = wd_this->document  ).
        ASSERT ID sios_demo CONDITION wd_this->document IS BOUND.
      ENDIF.
      wd_this->document->opendocument( ).
    read context node
    DATA:
        node_file_upload                    TYPE REF TO if_wd_context_node,
        elem_file_upload                    TYPE REF TO if_wd_context_element,
        stru_file_upload                    TYPE if_second=>element_file_upload .
    navigate from <CONTEXT> to <FILE_UPLOAD> via lead selection
      node_file_upload = wd_context->get_child_node( name = if_second=>wdctx_file_upload ).
    get element via lead selection
      elem_file_upload = node_file_upload->get_element(  ).
    get all declared attributes
      elem_file_upload->get_static_attributes(
        IMPORTING
          static_attributes = stru_file_upload ).
      stru_file_upload-show = stru_file_upload-upload.
    set all declared attributes
      elem_file_upload->set_static_attributes(
        EXPORTING
          static_attributes = stru_file_upload ).
    7. Now add the following code to the WDDOMODIFYVIEW method (default method)
      DATA:
          office TYPE REF TO cl_wd_view_element.
    get the office control
      office ?= view->get_element( 'OFFICE' ).
      ASSERT ID sios_demo CONDITION  office IS BOUND.
    get the IOS interface
      wd_this->factory ?= office->_method_handler.
      ASSERT ID sios_demo CONDITION wd_this->factory IS BOUND.
    8. Run the application & enter a text file of word format in the File Upload.
    9. Press show button & it will display the code of that word file.
    Plz ask any queries if you face any problem doing the above code.
    & dont forget to mark Points.
    Regards:
    Parteek.
    Edited by: Parteek Arora on Jan 23, 2008 9:05 AM

  • How to open MS word document in browser window?

    Hi all
    Is it somehow acheivable to open a .doc - document in a browser window?
    If I link a .pdf - file from the document library in left navigation menu it opens in a browser window. If I do the same with a MS Word docuemnt it opens the Word application, but I want it to open it inside a browser. Can this somehow be done?
    Regards

    Hi,
    If you want open your document inside Browser, you can try the following settings:
    The setting that controls this behavior is located in Windows Explorer (not Internet Explorer) on the user's machine.
    Open “Windows Explorer”.
    Select Tools -> Folder Options... from the menu.
    Go to the “File Types” tab.
    In the “Registered file types list”, select the file you want to change the setting for (e.g. DOC).
    Click the “Advanced” button to open the Edit File Type dialog.
    There is a checkbox, Browse in same window, where you can specify whether the selected file type should be opened within the browser or launched in its host application when clicked on a web page.
    For more information, please refer to: http://support.microsoft.com/?scid=kb;en-us;162059
    Xue-Mei Chang

  • How to open a word document

    hi all,
      How i can open a word document containing data by clicking a text in a smart form.
    Thanks,
    Ranjith

    Hi Ranjith,
    Sorry to disappoint You!!
    your requirement cannot be fullfilled as the end product of a smartform is expected to be an printout or at max and PDF document.
    you will not have an option for clicking and you cant achieve your task!!!!!!!!

  • How to open with uploaded document

    Hi, I need upload my document online and then preview the uploaded document to check if it worked. Unforturnatly, I was unable to open the preview, error massege stated an error occured repeatedly, but I could save it and then open it which is not fit the case of intended party. The document is word doc, with the microsoft  word 2004. the ducument was created on MacBook OS X 10.6.8. I am wodering if it is that becasue the microsoft word 2004 is too old for this particular site. (I was ABLE to open the uploaded document in different sites).
    If this it the case, how can I get free and relative newer Microsoft Word?
    Have deadline approaching, thank you very much for your timely help.
    Li

    If you are in college, check with your school. Many colleges have an arrangement for faculty and students to purchase Microsoft products at a reduced price, or even free.
    Microsoft has limited-duration free trials and there are several alternative to create Microsoft-Office-compatible documents:
    http://www.fool.com/financial-advice/2013/09/15/free-microsoft-office-software-g et-the-essentials.aspx

Maybe you are looking for

  • Can't see HDD on airport network

    Until recently my home network setup was organised like this: internet modem (Sierra aircard) with wireless turned off, connected by ethernet to Apple Time Capsule set up as a router. Wireless connection to various computers and to an Airport Extreme

  • Single migo for multiple vendors and multiple material

    Dear MM Experts, I have 2 open purchase orders as per below PO no 01 :- Material : A , Vendor : X PO no 02 :- Material : B , Vendor : Y Can we make the single goods receipt for both purchase orders even having different vendor and material. If yes th

  • Cannot Debug SSIS packages in 64 bit mode.

    Hi, To anyone who may be able to help.  We are using SQL server 2014 Enterprise addition.  Visual studio 2013, SSDT latest version installed, all 64 bit tools installed.  I have tried to run my packages  with the "Run64bitRuntime" set to true ( proje

  • Credit Card Payment Processing

    Dear Experts, We are implementing CRM and need your help to crack below D2C Scenario :- While booking the Sales order, Customer gets charged on his/her Credit Card (prepayment). The sales order then flows to R/3 and subsequent processes viz. Pick/Pac

  • Error when using named LOV

    This is for Apex 4.0.2. I wonder if anybody else has come across this issue: after creating a named LOV in Shared Components and using the LOV on an item, I get this error: ORA-20001: Error fetching column value: ORA-20001: Query must begin with SELE