BSP Session issue in Web Documents

Hi,
In SAP Web Documents Page (BSP Application cvaw_document_display), one PDF link appears.
I click on the link and a PDF file opens in a separate browser window.
But when I click on that link again, I get Session Time out error.
However If I refresh the first screen (where the PDF link appears) and click on the PDF link again, it works.
Please help in resolving this issue.

Hi Swastik,
Why you are trying to reopen the file again??
if you want to reopen it , close the pdf file window and try again.
Please let me know if you have any queries.
Regards
Bhaskar Arani

Similar Messages

  • Saving webi document from BOXI 3.0 in excel with special character

    Issue :Saving webi document from BOXI 3.0 in excel with special character as report name then file name in excel is not correct.
    This happens only with Mozilla, get correct file name in IE.
    Steps to Reproduce:
    1)Create a simple XI3.0 webi report through mozilla browser
    2)Save the webi report with special character name for e.g øäåýþ.
    3)Open the webi report and save it as excel or pdf file.
    4)Report name øäåýþ saved, displays with other junk characters instead of actual reporta name( øäåýþ)
    5)When saving the save report through IE browser in excel or PDF  display correct report name øäåýþ in excel and PDf file.
    Even after making changes in character encoding to UTF in the Firefox options (Content tab-> font & colors : advanced button -> Character encoding does not make any  difference.
    Has anyone came across such type of issue?
    Whether this is limitation of Firefox or bug.
    Regards,
    Ketki Fadnavis

    Issue :Saving webi document from BOXI 3.0 in excel with special character as report name then file name in excel is not correct.
    This happens only with Mozilla, get correct file name in IE.
    Steps to Reproduce:
    1)Create a simple XI3.0 webi report through mozilla browser
    2)Save the webi report with special character name for e.g øäåýþ.
    3)Open the webi report and save it as excel or pdf file.
    4)Report name øäåýþ saved, displays with other junk characters instead of actual reporta name( øäåýþ)
    5)When saving the save report through IE browser in excel or PDF  display correct report name øäåýþ in excel and PDf file.
    Even after making changes in character encoding to UTF in the Firefox options (Content tab-> font & colors : advanced button -> Character encoding does not make any  difference.
    Has anyone came across such type of issue?
    Whether this is limitation of Firefox or bug.
    Regards,
    Ketki Fadnavis

  • Sun-web.xml memory based sessioning issue

    I recently installed Sun WebServer 7.0 Update 8 on Fedora 20. Everything seems to be working fine with my webserver except for the memory based sessioning.
    My First Configuration - no sun-web.xml file defined
    Expected Behavior - I would assume that memory based sessioning would be used.
    Actual Behavior on my local instance - Every 1-2 minutes my session would abruptly end and a new JSESSIONID would be issued. This does not happen on other machines running the same webapp, so it does seem to be a sun webserver configuration problem.
    My Second Configuration - using the following sun-web.xml file:
    <!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 8.1 Servlet 2.5//EN" "http://www.sun.com/software/appserver/dtds/sun-web-app_2_5-0.dtd">
    <sun-web-app>
      <session-config>
         <session-manager persistence-type="memory">
              <manager-properties>
                   <property name="reapIntervalSeconds" value="20000" />
             </manager-properties>
         </session-manager>
        </session-config>
    </sun-web-app>
    Expected Behavior - Memory based sessioning would be used
    Actual Behavior on my local instance - Same as with no sun-web.xml. Every 1-2 minutes my session would abruptly end and a new JSESSIONID would be issued.
    Does anyone see what is wrong with my sun-web.xml file? I'm also not sure if the file permissions/ownerships are correct on all of my sun webserver files. Is there a particular temp file or location that Sun Webserver uses to track active sessions? Or are in-memory sessions completely stored in memory and not on disk? Is there a default sun-web.xml file somewhere that is overriding my settings (and if so, where is it located)?
    Thanks for your help!

    Hi,
    Firstly you should know Fedora is not a support platform. it might work but you could run into a load of issues as your go.
    in any case you don't need a sun-web.xml file at all. For any deployed Web app the default session manager is memory. So remove that 1st. After that check that
    the requests are really sending a JSESSIONID. This kind of issue can occur when you have a Load balancer.
    regards,
    Russell

  • 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

  • Export to PDF & Print of Webi document with Xcelsius SWF file embedded init

    Hi ,
    I have embedded an Xcelsius model as HTML in a webi document. It works fine in the Infoview. However, when I export to PDF or print the webi document , the Xcelsius flash component does not show up. I just get a box with the HTML code in it.
    Please let me know how to fix this.
    Thanks.

    I agree with kirbot -- Apple includes nice templates that are obviously meant for professional printing in reasonably large quantities. Regardless, there's no good reason I can think of why Pages' PDFs are not truly WYSIWYG in their output. That shadows and other things are not exported as part of the PDF is a really dumb idea on Apple's part.
    Just ran into this issue myself and had to ditch all the drop shadows in my brochure in order for the files to work with my online printer.
    Glenn

  • How to make and start a session on Visual web JSF

    Hi;
    I am trying to make a Session on Visual Web JSF but cant get it, just get code to jsp, plz could u help me :)
    Thanks on advace
    Miguel Villalobos.

    Pondini wrote:
    Just why do you want to prevent TM from deleting old backups? If it's because you've been deleting things from your internal HD, trusting TM to keep it's copies indefinitely, that's not a good idea.
    The reason is, TM's copies are no longer backups: now they're your originals. When (not if) your TM drive fails, you may lose all of them.
    Thank you for your input. As I wrote earlier, I have reformatted the internal HD and reinstalled a "blank" system. So yes, most files, documents etc. are now found only in the TM backup. One reason for not simply doing a full restore from the TM backup was to allow time to make sure the internal HD was not in fact failing, and being able to reintroduce things step by step in case the problem should materialize again.
    The whole point of wanting to keep the existing TM backup as-is is to make it be there "indefinitely". That doesn't mean I trust the external HD to keep it safe for all eternity, but as long as I am trusting it to back up my stuff, why not let it keep my old stuff as well? Although, admittedly, it is space consuming and the important stuff will be present in both the old and the new backup, once I get it running. Old backup > iMac > New backup. You should see how many papers I have in my shelves from years back

  • Problems while accessing images outside the web document-root folder

    Our application runs on Oracle application server on Linux. Facing problems while accessing images outside the web document-root folder. This works with changes in global-web-application.xml by including the <virtual-directory> tag. The same change does not work when done on Linux machine. It is unable to find the image. Please help in resolving this issue.
    </locale-encoding-mapping>
    </locale-encoding-mapping-list>
    </web-app>
    <virtual-directory virtual-path="/img" real-path="/home/eposuat/" />
    </orion-web-app>
    Code in the jsp:
    <img width=700 height=700 src="/img/3.tif"></img>
    <img width=700 height=700 src="/img/WB.gif"></img>

    This is one of the least satisfactory aspects of site management in Dreamweaver, and several developers, including myself, have been pressuring the Dreamweaver team for some years to improve this. Who knows? They might eventually take notice.
    The only way to do this at the moment is to create two site definitions, one nested inside the other. Set up the site definition normally based on htdocs as your site root. Then create a new site definition based on site. Dreamweaver will nag you that it can cause problems, but it won't actually stop you from doing it. The only potential problem is with site synchronization.
    The problem with using site as the only basis for your site definition is that Dreamweaver automatically puts things like the Connections, Scripts, and other folders in the site root. So, everything ends up at the wrong level of the site hierarchy. Quite frankly, the whole thing is a bit of a pain. Dynamic site development was added to Dreamweaver only in version 6 (Dreamweaver MX), and no one had really thought through the need to store files outside the site root.

  • DMS Web Documents: cant display status log

    Hi experts,
    I have a problem in web documents.
    When I config Setup WebDocuments(BSP), I chose Display Status Log, Display version, Display Hierarchy, Send, Delete, Create New Version.
    But in web page, I cant see Display Status Log, Display version, Display Hierarchy while Send , Delete, New Version is display when I display 1 document number.
    What must I do?
    Please help me !!!

    Hi Christoph,
    Thanks for help me to solve the problem.
    But I have 1 problem abt display too.
    That is with create thumbnail document , we can find thumbnail doc by seeing its image. But in web doc, we cant find any doc which has thumbnail image .

  • BO XI4.1 -  ChangeUniverse for webi document

    Hello,
    I have the following issue: Basically, I have a webi document whereby I want to change its universe. I have already the datasource of the current webi:
                            IWebiDocDataProvider lCurProvider = myDocDPs.item(0);
                            String lSourceUnvID = lCurProvider.getDataSourceID();
    Now, I want to do something like  :
    ((DataProviders) lCurProvider).changeUniverse(lSourceUnvID, lDestUnivID, true);
    however, it does not work. Does anyone have any idea how to change the universe for the webi doc?
    Thanx for your response
    Edited by: Jean-Philippe Golay on Jan 19, 2012 12:32 PM

    Note that in BI 4.0, The API documentation detailles that this method: changeUniverse is no longer functional.
    void changeUniverse(java.lang.String olduniverseid,
                        java.lang.String newuniverseid,
                        boolean applyMapping)
    Warning: This method is no longer functional from the SAP BusinessObjects XI 4.0 release onwards.
    http://help.sap.com/javadocs/bip/40/re/en/resdk_java_apiRef_40_en.zip
    But this method is valid in BOEXI 3.x

  • Error creating WEBI document in InfoView

    Hey all,
    I'm hoping there's someone out there that can help me with the issue I'm currently experiencing when trying to create a new WEBI document from within InfoView. 
    Environment: Windows Server 2003 SP2, BOE XIR3.1SP3, CR2008, MS SQL Server 2005
    Using the Designer I've created as simple a universe as I believe you can... ODBC connection to DB, one table, and no modifications to object properties (ie. field names, descriptions, etc.).  I saved the Universe in the Enterprise repository (have also tried saving to local disk) and exported the Universe.
    In the CMC I granted schedule rights to the Universe for UserA.
    When I logon to InfoView as UserA I am able to select the New | Web Intelligence menu option on the Document List screen and am presented with the Universe selection screen.  I select the universe created in the designer and the system attempts to create a new WEBI document.  It gets to the point where it is launching new document and I received the error below...
        An internal error occured while calling 'createDocument' API. (Error: ERR_WIS_30270)
    The preferences for WEBI in InfoView are:  View Format - Web;  Creation/Edit Tool - Advanced.
    Now for a couple of twists...
    1) When I first created a single table universe after the issue first appeared on a more complex universe, I was able to create new WEBI documents without issue.  When I tried adding an additional table to the simple universe I experienced the issue above and have been unsuccessful ever since even with new single table universes.
    2) If I logon to InfoView as an administrator (or make UserA an administrator) I can create new WEBI documents with no problems on any of my universes (simple or complex).
    I have read other posts related to this error and have tried the suggestions that have been put forth to no avail.  It appears to be an issue with security settings but I have been unsuccessful in identifying what those settings might be.  If anyone has any suggestions or can provide a breakdown of the security settings required to give users the necessary access to create WEBI documents from universes I would be grateful.
    As a side point, I have implemented complex universes at other clients without this issue appearing at other sites.
    Thanks!

    Hi,
    May be you can try with full control rights on universe and connection.After that check yor are getting error or not.this issue with one user or with all users except administrator.
    Thanks,
    Amit

  • STL file in Web Documents

    Hi,
           I am able to display 3D files of type STL inside DMS in R/3 and also inside cFolders. But when I try to display using Web Documents I am getting an error. Any setting needs to be done in the backend in order to display 3D files of type stl within Web Documents?
    thanks
    anantharam

    Hi,
    not in the standard. But if you want to do a modification, maybe this blog might be a help?
    /people/durairaj.athavanraja/blog/2005/09/14/using-ecl-engineering-client-3d-viewer-viewer-in-bsp-application
    Best regards,
    Martin

  • My BSP redirects to a Web Dynpro for ABAP. Why?

    Hello,
    I am working with a BSP that issues the following command within the OnInitialization event:  navigation->goto_page( '/sap/bc/webdynpro/sap/cprojects' ). This occurs within the default.hrm.  But I can't find this Web dynpro. I have looked thru SE80 to find this WDA but I can't find it. The service for this WDA is there in SICF. Can anybody help me understand what the heck is going on here?
    TIA
    Rich

    Hi,
    From the ECC and NW 2004s onwards and cProjects 4.0 onwards,
    SAP delivers the cProject application in Webdynpro abap only not in BSP. They closed the service for that application. So that the BSP service point to the webdynpro service.
    Thanks,
    Tamil

  • Web Documents

    Hello
    In Web Documents I need to block or delete links to create and change. In another words, user must have acess only to display.
    BSP applications: cvaw_document_change and cvaw_document_create? How to do this?
    Regards

    Closer inspection of the web server's log (normally I would not have access to this) shows a 304 response (not modified), so some earlier pass had got them. Be nice if the log would show the 'reason' for any action taken or not taken against an URL...

  • BI Launch pad - error opening WebI documents

    Hello,
    We have newly installed BusinessObjects Enterprise XI 4.0 with Client tools.
    When we are trying to open WebI documents from BI Launch Pad we are getting the following error message.
    (Error: RWI 00200) (Error: INF)
    Does anyone have any idea what does this mean?
    Thanks in advance.

    Hello Mark,
    Did you ever find the solution?  By the way, you should not concern yourself with the AIX system.  You should be able to connect with client tools from your local windows PC usng the corresponding DB 32 bit drivers.
    I am having the same problem only with webi.  Crystal reports work.  Issue was not present on BO4-SP2, but getting this issue on BO4-SP4.  BO4-SP4 webi worked with other clients; but not on this particular install.
    In the past, the issue was fixed by performing a re-install, since there are so many variables that I have seen on this issue.  In this case, I've ran out of options that I know to fix the issue.  It would be helpful to circumvent a new install.
    SAP Notes 1740500
    1740500 - Error "Illegal access to the viewer. Please use a valid URL" or "An error occurred while the applet was initializing" when trying to view or edit a Webi Report
    SAP Resolution
    At this time, the only resolution is to do a complete uninstall of SAP BusinessObjects Business Intelligence 4.0 and re-install.
    SAP Note 1741214 addresses the RWI 00200
    A different Java article informs of issues with stack tracing being envoke.
    Dennis Soriano

  • 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

Maybe you are looking for

  • Hp3525 Light print, all colors.Washed out look.

    I was working on a light print issue on an hp3525. I tried pretty much everything. cleaned all contacts, tried different cartridges, cleaned the scanners,which are a pain to remove. The problem turned out to be a bad connection on the dc controller,

  • Issues syncing music and videos with itunes

    issues syncing music and videos with itunes

  • Dissolves Flicker

    Hello, I've been editing Red footage brought in through Log & Transfer at 23.98 and 2048 x 1152, ProRes HQ. The footage looks great and plays in the timeline without rendering. However, my dissolves seem to flicker, especially if they go between brig

  • Presets. Looking for Soft Glow, Color Pop, and Artistic Sketch

    Does anyone know how I can get the presets for my version of lightroom to have Color pop, artistic sketch in color and B&W, vintage, and soft glow? I am new to Lightroom but I have seen these effects used so I purchased lightroom and these effects ar

  • Need Help with Rotating Banner ad(please help)

    I am currently working on a flash project that rotates banners out auto and with button control, got the buttons to work just cant figure out how to get it  auto play throgh my bannersThis is the code i have for my project I am working on: My Project