Opendocument issue

Here is my issue...
I have two simple reports; report A and B. I am calling report B from A using using Opendocument function by clicking link. After i refresh the report A by clicking Refresh All; if i click report B link I am getting warning message saying "_Are you sure you want to navigate away from this page? You will lose any unsaved modification to this document. Press OK to continue, or Cancel to stay on the current page_."
Is there any work around to supress the warning message by passing any arguments or java script to opendocument url or writing any SDK code, if you are suggesting any SDK code, pls. let me know where should i write the code.
Thanks in advance

Hi venkat,
See when you are refresh the report it will load the report with new/changed data. At the time when you the link which opens the report B in the same window the report A will prompt you with the message that it is unsaved.
Better open the report B in seperate window.  i.e mention sWindow=NEW
http://<servername>:<port>/OpenDocument/opendoc/<platformSpecific>?sDocName=Salesin2003&sPath=[Sales+Re
ports]&sType=rpt&sWindow=New
regards
Sunil

Similar Messages

  • OpenDocument issue with blank prompt values

    We have implemented optional prompts in XI R2 by joining our prompt objects with an 'Empty' object. When we create openDocument hyperlinks to these reports, passing nothing for the prompt objects worked just fine and the target report did not prompt for any values for these prompts, e.g. if there was a prompt on the report called Country and it was joined with an Empty ("") universe object via an AND, setting the Country prompt in the openDocument as lsSCountry= worked just fine.
    In XI 3.1, when these hyperlinks are accessed from the master reports via InfoView, the target report is prompting for all prompts that accept empty (blank) inputs. If the resulting hyperlink shortcut is copied and pasted directly in the browser URL, everything works fine, i.e. target report does not prompt for any of the empty values and the report is displayed correctly.
    We even tried using the 'no_value' option for these prompts in the openDocument but since these are universe based prompts that can't be defined as optional, no_value is not allowed.
    Anybody facing similar behavior?
    Thanks.

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly

  • OpenDocument Parameter issue

    a web intelligence report opened by OpenDoc API with parameters given. How can I avoid from the prompts at the beginning?
    Thanks a lot.

    Hi David,
    For XIr2 all prompts need to be actioned. Only in XIr3 optional prompts are available.
    To avoid a prompt i.e to prevent it from filtering your data, you can chane the promt in the report to use "Matches pattern" instead of "Equal to" and include the parameter in the openDocument setting it to "%". This will still return all the data with the initial call and answer the prompt.
    Regards
    Jacques

  • I have not been able to open any spreadsheets Microsoft Excel or OpenDocument Calc since upgrading to Firefox 4.0 and my web-based email services has reverted to an archaic version. Why have these issues developed since I made no other changes or updates?

    I have included everything I know about it the above question. The crazy thing is that it has affected the ability to open any of my spreadsheets even though that should have nothing to do with my browser. I made no other changes to my computer and there have been no automatic updates going on from either Microsoft or OpenDocument at that time or even since.

    Try with Flash clean install
    *http://forums.adobe.com/thread/928315
    for more
    *http://forums.adobe.com/thread/1215076

  • CUID issue with openDocument

    I am wondering what's the best practice when it comes to openDocument.jsp report linking call. From what I have read, CUID is the safest parameter to use when referring to any object that needs to be called on. But on a test run, I found that when I moved an object (Xcelsius swf file) from Prod to Test, the CUID actually changed, contrary to claims that it is preserved between clusters/environments.
    Can someone share their experiences when working in lifecycle management (Import Wizard) on XI R2 -- what are the best practices for openDocument calls to be most reliable?

    IW is on both R2, XI 3, LCM is a new tool. With IW the CUID should never change when moving to environment, but you must migrate using update/using unique identifier. If migrating by name then the cuid is not used.
    LCM I would think follows the update but possibly it has settings as well (I haven't used this much and don't know for sure). If no one responds on LCM you can open a case with support to have an engineer test it out easy enough.
    Regards,
    Tim

  • Issue while exporting report in Excel Format

    Hello,
    I am facing problem while exporting the report in Excel Format. After analysis, I think that it could be due to two reasons, either we are using wrong versions of Jars, or we are using wrong API. Here is the code, approaches and problems we are facing. Please help.
    First approach we are using is:
    // using basic API
    import com.crystaldecisions.reports.sdk.ReportClientDocument;
    // get client document from crystal report API and open the report by specifying the report name, with path
                   ReportClientDocument reportClientDoc = new ReportClientDocument();
                   reportClientDoc.open( reportPath, 0 );
                   // give chance to extending classes to configure the report document by POJO or by sql parameter etc, just adding the parameters infromation using ParameterFieldController
                   configureReportDocument( reportClientDoc, reportMetadata, reportData, reportContext );
                   // get data source of crystal report
                   Object reportSource = reportClientDoc.getReportSource();
                   // export the data - we have also tried with MSExcel format
                   ReportExportFormat exportFormat =  ReportExportFormat.recordToMSExcel;
                   LOGGER.debug( "exportFormat[" + exportFormat + "]" );
                   ByteArrayInputStream byteArray = (ByteArrayInputStream) reportClientDoc.getPrintOutputController().export(
                             exportFormat );
    Problem Faced: Specified Excel format is not supported.
    Second Approach: We come to know that excel format is supported with new releases and with occa package.
    Then we tried with import com.crystaldecisions.sdk.occa.report.application.ReportClientDocument; It ask to set the ReportServer. When we are trying to set the server as
                   reportClientDoc.setReportAppServer(ReportClientDocument.inprocConnectionString);
    Application is unable to find 'ReportClientDocument.inprocConnectionString' property. It seems like we are using some old jars. However we have downloaded the latest released jars for eclipse 2.
    Please help for it. Issue is to export the report in excel format, which is currently working fine for PDF. If this problem is related to Jars, please suggest the path to download the latest jars. We also looking for the latest jars like rasapp and rascore etc. But these are not available with Crystal Report for Eclipse 2 release.
    Waiting for urgent help. Thanks you..
    Regards,
    Mohit

    Hi,
    Send me Environment Details .
    Here is the code  snippet for exporting report to excel format:
    <%@ page import="com.crystaldecisions.sdk.occa.report.application.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.definition.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.data.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.lib.*" %>
    <%@ page import="com.crystaldecisions.sdk.framework.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.managedreports.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.infostore.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.exportoptions.*" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.io.*" %>
    <%
    String username ="Administrator";
    String password ="";
    String cmsname ="localhost:6400";
    String Authen ="secEnterprise";
         //connecting to Enterprise
         IEnterpriseSession es = CrystalEnterprise.getSessionMgr().logon(username,password,cmsname,Authen);
         //get the report App Factory form the Crystal Enterprise
         IReportAppFactory appFactory = (IReportAppFactory) es.getService("","RASReportService");
         //get the infostore service form the Crystal Enterprise
         IInfoStore istore = (IInfoStore) es.getService("","InfoStore");
         //get the report by name from crystal Enterprise
         IInfoObjects iobjects = istore.query("Select * From CI_INFOOBJECTS Where SI_NAME = 'sampleramz2.rpt' and SI_INSTANCE = 0 ");
         //open the report in the report doc object.
         ReportClientDocument Doc = appFactory.openDocument((IInfoObject)iobjects.get(0), 0, Locale.ENGLISH);
         // WORKING WITH THE PRINT OUTPUT CONTROLLER
         //Use the report documents PrintOutputController to export the report to a ByteArrayInputStream
         ByteArrayInputStream byteIS = (ByteArrayInputStream)Doc.getPrintOutputController().export(ReportExportFormat.recordToMSExcel);
         // EXPORTING THE REPORT
         //Create a byte[] (same size as the exported ByteArrayInputStream)
         byte[] buf = new byte[2000 * 1024];
         int nRead = 0;
         //Set response headers to indicate pdf MIME type and inline file
         response.reset();
         response.setHeader("Content-disposition", "inline;filename=ramz");
         response.setContentType("application/xls");
         //Send the Byte Array to the Client
         while ((nRead = byteIS.read(buf)) != -1)
              response.getOutputStream().write(buf, 0, nRead);
         //Flush the output stream
         response.getOutputStream().flush();
         //Close the output stream
         response.getOutputStream().close();
    %>
    Let me know any information is needed,
    Regards,
    Rameez

  • Open document issue using Xcelsius WIH 00013

    All,
    I have Open Document that behaves correctly when I copy and paste it into address bar of a browser. It also works fine when I try to connect from one Webi report to another (so far so good). But when I use the link in Xcelsius, via a URL component, I get the following message:
    Invalid Session: Please close your browser and logon again. (WIH 00013)
    Previous posts on forumtopics.com suggests that this is a Tomcat time out issue. However, other open document calls from other Xcelsius dashboards with open document work without issue. Has anyone seen this before? I have included the hyperlink text. Please note long prompt text is courtesy of a BEx query in BW .
    http://<web server>:8080/OpenDocument/opendoc/openDocument.jsp?iDocID=8547&lsSCompany%20Code%20(Single%20Value%20Entry%2C%20Required)=1000&lsSCurrent%20Fiscal%20Year%20(Single%20Value%20Entry%2C%20Mandatory)=2009&lsSFinancial%20statement%20version=cddFinancialStatements&lsSPosting%20Period%20(Single%20Value%20Entry%2C%20Mandatory)=003&lsSaccount=cdd+21
    Thanks,
    Steve

    The same settings in the infoviewapp web.xml must be applied on the opendocument web.xml. Also you must be on XI 3.1 FP1 or higher. There is currently an Edge issue being investigated.
    Regards,
    Tim

  • Open document in BO R 3.1 Issues

    Hi Experts
           I have a issue that is: I can open child report via a hyperlink in BO 3.1 From parent report but problem is:
    If i use "sWindow=New"  then the report is opened to another window not another tab....
    In BO R 2.0 report opened in  a new tab but not in 3.1 using same parameter(sWindow=New)
    Please help me  (I also used target='_Blank' but not get desire solution)
    Thanks in advance

    As I review the document "xi3-1_url_reporting_opendocument_en.pdf" also known as "Viewing Reports and Documents using URLs for BOE XI 3.1" I do not see any reference to the parameter "sWindow".  There is however a section that reads as follows:
    Opening a new window
    To force OpenDocument HTML links to open a new browser window, use
    the HTML anchor's target attribute or an equivalent. For example:
    <a href="http://<servername>:<port>/OpenDocument/open
    doc/<platformSpecific>?iDocID=Aa6GrrM79cRAmaOSMGoadKI&sID
    Type=CUID" target="_blank">hyperlink text</a>
    It would seem to me that the parameter "sWindow" has been deprecated.  I have a case with BO open on this.  I will try to report back the results.

  • Report put on website takes time to open [openDocument( doc id ) api prob]

    Hi All,
    We have a BOXI R2 SP2 installation on AIX 5.3 (UDB 8.2 FP14).
    We have a website where we provide a URL to open a WebI report. But, this report is taking more than 20 mins to open.
    When we try to open this report directly via Web-i / Desk-i, the report opens quickly.
    As per the our investigation so far->
    - Business Objects Reports web app that uses BO SDK to open BO Reports is performing very poorly. Even a simple report (no  DB calls) takes 20 mins to open.
    -API call report engine.openDocument(<DOC ID>) takes 20 mins.
    - [Oct 13, 2009 15:56:25] DEBUG BoReportHelper.getReportEngine():  Start
    --->>>
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getReportEngine():
    boEnterpriseSession was OK
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getReportEngine():
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getReportEngine():
    IInfoStore was OK
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getReportEngine():
    ReportEngine was OK
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getReportEngine(): 
    <<<---
    End
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getHtmlView():  Start
    --->>>
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getWebiReport():  Start
    --->>>
    Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getWebiReport():  After
    query execution
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getWebiReport():
    FC_Properties: WebiDoc was not null
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getWebiReport():  After
    webiDoc.getID-WebiDoc ID->571957
    [Oct 13, 2009 16:11:25] DEBUG BoReportHelper.getWebiReport():  After
    openDocument
    [Oct 13, 2009 16:11:27] DEBUG BoReportHelper.setPrompts():  Start --->>>
    +++++++++
    ^
    |
    Above is the application log information captured:
    report engine.openDocument(<docId>) api call takes like 20 mins to open for report.
    BO SDK openDocument(<doc id>) api call is taking long time.
    JVMs for BO on the webserver have been recycled. The report-server is working fine, other report URLs on the website are working fine.
    Kindly suggest on resolving this issue.
    Thanks and regards,
    Anand Moharir.

    New information:
    When I originally wrote this, the command script worked as advertised. That was yesterday. I've since had to add the following lines just BEFORE the call to start the oidmon.
    echo Starting as9inf oidctl >> iasStartup.log
    %ORACLE_HOME%\bin\oidctl server=oidldapd configset=0 instance=1 start
    Sometimes me thinks that Oracle reconfigures itself at night when I'm not watching.
    Enjoy.

  • Parameter Value passing issue to Web i report from Design Studio APP

    Hi all,
    I am trying to pass values to 2 parameters in a web I report called DIM1_REPORT and DIM2_REPORT. The values with space for example, Computer Sciences Corporation is getting passed as Computer\Sciences\Corporation Looks like the space is getting replaced with \ and as the values doesn't match the database values, no results are being retrieved. I tried using Convert.urlEncode function as well. But no luck still having same issue. Below is the URL,
    "http://servername:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=AWD5NloJ4rVKoi2Y8m89GY0"+
    "&lsMDIM1_REPORT=" + GLOBAL_SCRIPTS_1.DIM1_FILTER_SCRIPT() +
    "&lsMDIM2_REPORT=" + GLOBAL_SCRIPTS_1.DIM2_FILTER_SCRIPT()
    Has any one faced this issue and have a solution for this? Appreciate any help on this
    Thanks
    Nithin

    Hi Mustafa,
    Thanks for the response.
    I tried to replace the \ with %20 using the following code
    Convert.replaceAll(GLOBAL_SCRIPTS_1.DIM1_FILTER_SCRIPT(), "\ ", "%20");
    But getting error in the script editor saying
    I think \ is causing this issue. If I use any other character other than \ in search expression its not throwing any error in script editor. Any idea is \ considered as delimiter/break in design studio?
    Any other way to fix this issue in design studio?
    Thanks,
    Nithin

  • Issue with Opening Sharepoint document using editDocumentWithProgID2

    HI,
    We have a scenario where we dynamically generate a excel(xls) document, save it to document library and open it in edit mode.
    To open the document in edit mode, we are using 'editDocumentWithProgID2' javascript function. But we are facing an issue here.
    For some documents it is opening up in edit mode but for some 'open-save' dialogue box is poping up.
    PLease, let us know how can we solve this issue.

    Anusha
    You have mentioned in your post that your are opening document in Edit mode, but i doubt the above code open the doc in Read mode.Can you try the below code once.
    Dim strDocScript As String = "return editDocumentWithProgID2('" + documentPath + "', '', 'SharePoint.OpenDocuments', '1','<Replace here with your siteUrl>', '0');"
    lnkDocumentGen.Attributes.Add("onClick", strDocScript)
    '1' means that the document is being opened in Edit mode and '0' means read mode.

  • Authentication issue with Xcelsius/Portal integration

    I am facing an issue with the way we have integrated our Xcelsius dashboard with our corporate portal. I know this probably is more of a SDK question than Administration, but I figured I will ask it here anyway since Tim and some others are diverse enough in their knowledge base. This might be LONG post but please advise if anyone has any good pointers.
    We have an Xcelsius dashboard that needs to be served up via our corporate intranet (based on MS Sharepoint 2007). Now we are NOT using the MS Sharepoint Portal Integration Kit, but just doing a basic integration of the SWF call within a web part on Sharepoint. All this means is that within a portlet (web-part) on Sharepoint, I am making a HTTP call to the openDocument URL to invoke the SWF file. So the SWF is actually served up from our Tomcat App Server, and displayed onto this frame within the portal. That is the basic idea.
    To achieve this, what I did was write some custom code using the Java SDK to modify the openDocument a little bit. By doing so, I was able to insert some behind-the-scenes-login code wherein no matter who the portal user (Win AD-based) is, he is logged in to BOE as a generic "dashboard-user" and the dashboard is served up. This worked fine for the first dashboard where all we had was SWF and some WebI linking using openDocument (no full-InfoView access).
    But in this second dashboard now, what we also have is a hyperlink for users to get to InfoView to do Ad-hoc reporting. What this does is open a child browser window from within the portal (dashboard) --- and it remembers the BOE session for the generic user id "dashboard-user" and logs the end-user in to InfoView using that. But what I actually want is that the end-users, on this new window, should only be prompted at the traditional InfoView logon screen where they can manually enter their Windows AD password and get in. Thus, I would like to keep the dashboard SWF page session separate from the InfoView ad-hoc session, which I cannot seem to do because of the browser relationship and session maintenance.
    I am trying to find a way where I can simulate a single sign-on for dashboard viewers on the portal, but at the same time let them jump off to InfoView as themselves.
    Any thoughts on how I can do this?
    Notes:
    We DO NOT have Single Sign-On enabled for InfoView
    We are using Windows AD authentication (manual, no SSO)
    We are on Tomcat

    Sarang Deshpande wrote:
    1) If the InfoView app on Tomcat (desktoplaunch) is configured with Vintela, openDocument calls from the portal with automatically work using behind the scenes SSO, correct?
    in XIR2 everything that falls under infoview should SSO when infoview is setup for SSO (not the case in XI 3.x)
    Sarang Deshpande wrote:
    2) What is the best practice when it comes to the service accounts needed? I have implemented Windows AD manual auth already so I have a service account that use for that. Should I be using the same on and making vintela/SSO-specific changes to it...or should I have a separate vintela service account and deal with two different ones..each for a diff purpose?
    There is no best practice per se but the less service account the lower your chances to duplicate an SPN, functionally everything seems to work just as well with multiple as it does with 1 (of course with 1 there is less management work) If you click the SSO link in my forum sticky post I have a section explaining this with some suggested methods of deploying a service account(s)
    Sarang Deshpande wrote:
    3) Other than some minor browser configurations that might be required, is there anything else that I should communicate to the team about what might be required to be "pushed" to users' PCs?
    Using the default config nothing should be required on the client machine (unless SSO has been disabled in the browser or you intend to use a url that contains a period ..... (i.e. FQDN or IP) with hostname URL (the default) it should just work.
    To note if you have XP SP2 or older there is a microsoft spnego bug you may need to apply a fix if you aren't patched to SP3 (about 5% of our customers run into this).
    Regards,
    Tim

  • Passing a Prompt value to Webi using Xcelsius with OpenDocument

    -Operating System: Windows XP
    -OS Patch level: Service Pack 3
    -Office Version: 2007
    -Flash Player version: 10
    -Xcelsius Version and Patch Level: Enterprise 2008 with SP2 (version: 5.2.0.0)
    -Xcelsius Build number (Help>About Xcelsius): 12,2,0,608
    -Business Objects Enterprise version/patch level (if applicable): Edge 3.1
    -Issue Description:
    I'm trying to open a Webi Document from my Xcelsius dashboard and pass the value for the prompt "Region".  Ultimately I want to have this value determined by the drill down from a chart but at the moment I cannot get it to work even by adding the value at the end of the URL.  The webi report opens but the user is given the prompt option and asked to select the value, where I want to pass this so it automatically shows the selected region.
    The URL I'm currently using is:
    http://"servername":8081/OpenDocument/opendoc/openDocument.jsp?sType=wid&sRefresh=Y&sDocName=Regional_Drilldown&mode=full&nbPrompts=1&lsSRegion=South
    I have double checked the report and the prompt is definitely called "Region" and "South" is a valid region.
    I would be very grateful for some help.
    Many thanks
    Robert Peters

    Hi Robert
    I would take out the reference to the number of prompts to give:
    http://"servername":8081/OpenDocument/opendoc/openDocument.jsp?sType=wid&sRefresh=Y&sDocName=Regional_Drilldown&mode=full&IsSRegion=South
    If you copy and paste the url into a browser does it sucessfully find the document?
    Regards
    Charles

  • Performance issue using webelements and crystal

    We have 2 reports named, u201CDAMAGE_REPORTSu201D AND u201CTDI_CHARTu201D
    DAMAGE_REPORTS
    There are 13 dynamic or static Prompts created using Webelements .After clicking on submit button(using
    webelement)  by selecting the prompt values, TDI_CHART report will get opened below the u201CDAMAGE_REPORTSu201D report.
    TDI_CHART
    TDI_CHART created using free-hand SQL which contains 2 commands
            1. Command-SQL is created based on two categories.
                  Trend -Trend By Month ,Trend By Quarter,Trend By Week
                   Non-Trend- Current Month ,Current Year to Date,Last Year to Date,Current Quarter,Last
                                 Quarter,Current Week,Last Week,Last Month,Last Year Total
                 Charts,Cross-tabs and table information is coming from this Query
           2.Image count-contains number of images information based on the prompt selection and it acts as a 
                  URL(opendocument) in the report to open TDI_THUMBNAIL report to display the thumbnail images.
    Report information
    TDI_CHART Report contains 8 charts,4 cross-tabs, summary information showing in table format(Detail
           section) and2 open document links(1.For image count 2.Export to excel(which shows the detail information
            of summary table)
    Description
    If the selection is Non-Trend Value from the Time period parameter , corresponding Chart will be shown along   with table information.(Table information is only required for Non-Trend Values).
    If the Selection is Trend Value from the Time period parameter,the corresponding cross tab and chart will be shown and others will get suppressed.
    Problem Area
    After the prompt selection from u201CDamage_Reportsu201D, TDI_CHART report is taking around 1min 30 sec to show the chart and table or cross-tab.
    In Database when we execute the above queries, it comes in 12 secs but whereas in reports it takes 1min 30 sec,can you guide us some steps to bring down this time?

    hello Mufiza,
    copy the url created at the step "After the prompt selection from u201CDamage_Reports".
    paste this url into a new browser window and press enter.
    what is the time to return this report?...this time should also be 1.5 minutes.
    it sounds like you are using 2 commands in the same report. this will often cause performance issues, just like linking two stored procedures together or linking two disparate datasources together.
    this would not be an issue related to webelements but related to the design of your target report.
    jw

  • Issue with the presence indicator in list/library web part.

    When viewing a user field (Created By, Modified By or a custom People column) through the list web part (either through the default page /Forms/AllItems.aspx or a custom web part page using a list/library) the presence indicator always says presence unknown.
     However if I go to the Site Permissions on the same site, or My Site or a custom page using a modified core search results web part I wrote the presence indicator works fine.  I can't find any errors being reported on the server.  
    Looking at the rendered code the list web part generates:
    <IMG name=imnmark width=12 height=12 title="" class=ms-imnImg id=imn_48683,type=smtp alt="No presence information" src="/_layouts/images/blank.gif" border=0 sip="[email protected]">
    Locations where the presence indicator works the code is:
    <IMG name=imnmark width=12 height=12 title="" class=ms-imnImg id=imn{20140822-1752-098D-8C11-188AD0B8B8B6},type=sip alt=Available src="http://portal.mydomain.com/_layouts/images/imnon.png" border=0 sip="[email protected]" valign="middle">
    It appears that the List web part is not detecting that the users have a sip address and they appear to be rendered using smtp instead.  It's also odd that the list web part is pulling the correct sip address while the one that works is pulling the
    email address, not the sip address stored in the user profile.  I spent considerable time going through the xslt to try and figure how the tag is rendered but I haven't been able to figure it out.
    We are using Cisco Jabber 9.2.3 for IM, I don't know if that should make a difference or not. It's working fine in other parts of SharePoint and in Outlook. Running SharePoint Dec 2011 CU (14.0.6114.5000) with MS Office 2010 SP2 installed on the client. Tested
    in IE 9.0/10/11.
    Any ideas?

    We don't have a Lync server and I don't have the software available.  Are you saying just having Lync installed even though it won't work might help?
    I did some more digging and believe that this is an issue with the XsltListViewWebPart.  If I go to the UserInformationList the web part used to render the list is the ListViewWebPart and the presence indicator works there.  Also our environment
    was migrated from 2007 and there are a number of pages that are using the old ListViewWebPart and the presence indicator works fine in this part.  If edit the page and add the same list library to it, it's added as a XsltListViewWebPart and the presence
    indicator does not work.
    The presence control is not rendered by the xsl files used by the webpart.  I modified the xsl to display the raw xml and the html code for the presence is part of the xml.  I'm guessing this can't be changed and is part of how SharePoint is rendering
    the data for the XsltListViewWebPart.  You can see the Editor and CheckoutUser lines have the html code embedded in the data.
    <Row
    ID="60"
    PermMask="0x7fffffffffffffff"
    HTML_x0020_File_x0020_Type=""
    File_x0020_Type="xlsx"
    HTML_x0020_File_x0020_Type.File_x0020_Type.mapall="icxlsx.png|Microsoft Excel|SharePoint.OpenDocuments"
    HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon="SharePoint.OpenDocuments"
    HTML_x0020_File_x0020_Type.File_x0020_Type.mapico="icxlsx.png"
    serverurl.progid="1http://myparkersdev.domain.com/sites/BPIT/_layouts/xlviewer.aspx?id=/sites/BPIT/Shared%20Documents/Database%20Sizes.xlsx"
    ile_x0020_Type.progid="SharePoint.OpenDocuments.3"
    File_x0020_Type.url="FALSE"
    FSObjType="0"
    FileRef="/sites/BPIT/Shared Documents/Database Sizes.xlsx"
    FileRef.urlencode="%2Fsites%2FBPIT%2FShared%20Documents%2FDatabase%20Sizes%2Exlsx"
    FileRef.urlencodeasurl="/sites/BPIT/Shared%20Documents/Database%20Sizes.xlsx"
    FileLeafRef="Database Sizes.xlsx"
    FileLeafRef.Name="Database Sizes"
    FileLeafRef.Suffix="xlsx"
    CheckoutUser="&lt;span class=&quot;ms-imnSpan&quot;&gt;&lt;a href='javascript:;' onclick='IMNImageOnClick(event);return false;' class='ms-imnlink'&gt;&lt;img name='imnmark' class='ms-imnImg' title='' border='0' height='12' width='12' src='/_layouts/images/blank.gif' alt='No presence information' sip='[email protected]' id='imn_77,type=smtp'/&gt;&lt;/a&gt;&lt;a onclick=&quot;GoToLink(this);return false;&quot; href=&quot;/sites/BPIT/_layouts/userdisp.aspx?ID=526&quot;&gt;Ian Howe&lt;/a&gt;&lt;/span&gt;"
    CheckoutUser.id="526"
    CheckoutUser.title="Ian Howe"
    CheckoutUser.span="&lt;nobr&gt;&lt;span&gt;&lt;a onclick=&quot;GoToLink(this);return false;&quot; href=&quot;/sites/BPIT/_layouts/userdisp.aspx?ID=526&quot;&gt;Ian Howe&lt;/a&gt;&lt;img border=&quot;0&quot; height=&quot;1&quot; width=&quot;3&quot; src=&quot;/_layouts/images/blank.gif&quot;/&gt;&lt;a href='javascript:;' onclick='IMNImageOnClick(event);return false;' class='ms-imnlink'&gt;&lt;img name='imnmark' class='ms-imnImg' title='' border='0' height='12' width='12' src='/_layouts/images/blank.gif' alt='No presence information' sip='[email protected]' id='imn_78,type=smtp'/&gt;&lt;/a&gt;&lt;/span&gt;&lt;/nobr&gt;"
    CheckedOutUserId="526"
    IsCheckedoutToLocal="0"
    Created_x0020_Date="0;#2014-08-22 09:47:01"
    Created_x0020_Date.ifnew=""
    ContentTypeId="0x0101000AE0EC76CD0DB743B42D2FE022EAA6DC"
    Modified="8/22/2014 10:51 AM"
    Editor="&lt;span class=&quot;ms-imnSpan&quot;&gt;&lt;a href='javascript:;' onclick='IMNImageOnClick(event);return false;' class='ms-imnlink'&gt;&lt;img name='imnmark' class='ms-imnImg' title='' border='0' height='12' width='12' src='/_layouts/images/blank.gif' alt='No presence information' sip='[email protected]' id='imn_79,type=smtp'/&gt;&lt;/a&gt;&lt;a onclick=&quot;GoToLink(this);return false;&quot; href=&quot;/sites/BPIT/_layouts/userdisp.aspx?ID=526&quot;&gt;Ian Howe&lt;/a&gt;&lt;/span&gt;"
    Editor.id="526"
    Editor.title="Ian Howe"
    Editor.span="&lt;nobr&gt;&lt;span&gt;&lt;a onclick=&quot;GoToLink(this);return false;&quot; href=&quot;/sites/BPIT/_layouts/userdisp.aspx?ID=526&quot;&gt;Ian Howe&lt;/a&gt;&lt;img border=&quot;0&quot; height=&quot;1&quot; width=&quot;3&quot; src=&quot;/_layouts/images/blank.gif&quot;/&gt;&lt;a href='javascript:;' onclick='IMNImageOnClick(event);return false;' class='ms-imnlink'&gt;&lt;img name='imnmark' class='ms-imnImg' title='' border='0' height='12' width='12' src='/_layouts/images/blank.gif' alt='No presence information' sip='[email protected]' id='imn_80,type=smtp'/&gt;&lt;/a&gt;&lt;/span&gt;&lt;/nobr&gt;"
    ecb.dispex="return DispEx(this,event,'TRUE','FALSE','FALSE','SharePoint.OpenDocuments.3','0','SharePoint.OpenDocuments','','1http://myparkersdev.domain.com/sites/BPIT/_layouts/xlviewer.aspx?id=/sites/BPIT/Shared%20Documents/Database%20Sizes.xlsx','526','526','1','0','0x7fffffffffffffff','','')" />
    I just find it strange that the old ListViewWebPart works.  Our SP environment has not been patched to the latest version, I'll try that next and see if it makes a difference.

Maybe you are looking for

  • Using the Mac with windows for document imaging business is it practical?

    I have incorporated my business in my state and the premise is to perform document imaging services. The problem though is alot of recommendations from windows people telling me its not practical to enter this arena using a windows xp on a mac and it

  • How to open fileopener.aspx (excel file) on OSX?

    I tried to download excel data and it came into downloads as file opener.aspx and when I click on it, the message is that there is no application to open the file.  I had no problem with this until I just upgraded to Osx 10.9.  Any solutions?

  • Entering value for parent dimension

    Hello Once the dimension are loaded from OGL into Hyperion along with hierarchy (parent with child relation) is there a way to enter values (financial figures) for parent dimension ONLY into the dataform manually? If yes, can you please suggest a way

  • Is Mac OS X v10.7 Lion compatible with Microsoft 2008 and Adobe CS4?

    I am looking to upgrade my Macbook Pro to Lion and need to ensure that the following applicans will still work? Any know issues that I should be aware of before upgrading? 

  • Indesign plugin for folio

    Hello, I have one tricky question on you. Iam developing plugin for InDesign, this plugin adds some functionality to indd file, this file is uploaded into cloud and folio is created. Folio is loaded to device (eg iPad, which is connected thru wifi to