Tree-browser for TestStand Report?

The HTML report format is very inconvenient for browsing a long sequence, especially one with lots of nested sub-sequence calls. There is an article detailing how you can modify the report text sequence to at least put links at the top to more of the failures. This is much better than the default, first-failure report, but it still doesn't seem to link to all of the leaf-node failures).
This is crying for a tree-style browser (ala the Windows File Explorer) where failures on low-level leaf nodes are noted with colors or symbols on the parent-level containers. Clicking on containers exposes the lower level de
tails....
Has anyone seen or done something like this for TestStand?

Try using this "expand.xsl" Stylesheet to see if it is that for which you are looking. Please give feedback for additional features, etc.
Attachments:
Expand.exe ‏54 KB

Similar Messages

  • Disable directory browse for /Reports virtual app in SSRS 2014?

    How do you disable directory browse for /Reports in SSRS 2014?  Currently the user can  http://devreports.foo.com/ReportServer/ and view all virtual folders.  Need to disable this.  Using FormsAuth / CustomAuth.
    thanks
    scott

    Hi scott,
    Thank you for your question. 
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • How to load one report page at a time for heavy reports of over 100 pages.

    Three banks merged together and now my reports have to pull massive combined data of all 3 banks. Even after tuning the queries, applying indexs, its taking long to load. A normal report now has over 100 pages.
    Do you know if I can just load 1 page at a time and show it to user so the user donot have to wait for all 100 or more pages to load before they can see the whole report...? Kind of spooling...or something.
    Thank you.
    Edited by: Aditi_Seth on Jul 28, 2010 2:54 PM

    I am not aware of a simple solution to set the file name. You need to set the content-disposition, but I don't think this is possible with any of the report parameters. A workaround is to save to save the report as a pdf file (destype=file&desname=myreport.pdf), and then open it in the browser after the report is finished.
    About the timeout: this can be set in the repserver conf file (engineResponseTimeOut) or override it in the url with parameter ENGINERESPONSETIMEOUT. It's all in the documentation, so always start your search there!
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_cla.htm#sthref2775

  • Haven't been able to use Safari Browser for months, it keeps crashing seconds after I launch it

    I haven't been able to use my Safari Browser for months. Each time I launch it, it crashes.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Step 1
    For this step, the title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the name of the crashed application or process. For example, if Safari crashed, you would enter "Safari" (without the quotes.)
    Each message in the log begins with the date and time when it was entered. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ User Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of crash reports. The name of each report starts with the name of the process, and ends with ".crash". Select the most recent report related to the process in question. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.
    If you don't see any reports listed, but you know there was a crash, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.
    When you post the log extract or the crash report, you might see an error message on the web page: "You have included content in your post that is not permitted," or "The message contains invalid characters." That's a bug in the forum software. Please post the text on Pastebin, then post a link here to the page you created.

  • Highligh current row not working for classic report in 4.1

    Hello experts,
    One of our customers is migrating applications from APEX 3.0 to 4.1.
    All their applications use classic reports because interactive reports didn't exist in 3.0.
    The end users of the applications like the row color changing when they hover there mouse over the rows (highlight current row) and they insist on keeping this "functionality" in the applications.
    For some reason, this "functionality" doesn't work anymore after the migration to APEX 4.1.
    I thought it was something theme related so I created a new application with a classic report, tried some APEX built-in themes, and with none of them, I manage to get the highlight current row working.
    For interactive reports it is not an issue.
    Is this an undocumented no-longer-available feature of APEX 4.x or has there changed something which caused this functionality to stop working??
    Regards,
    Bart

    Hi,
    I created a service request for this issue, and the support analyst that helped me confirmed that this is a bug:
    "I have created the bug :
    Bug 13584762 - ROW HIGHLIGHTING NO MORE WORKS IN CLASSIC REPORT IN APEX 4.1
    While working on the problem , I have found the following solution in order to make the Row HighLightng work in APEX 4.1
    In the apex_4_1.min.js (file located in images\javascript ) , Search for :
    function setRowHighlight(a){apex.jQuery("#report_"+a+" .highlight-row").live("hover",function(b)
    and replace "hover" by "mouseover mouseout" :
    After the modification :
    function setRowHighlight(a){apex.jQuery("#report_"+a+" .highlight-row").live("mouseover mouseout",function(b)
    A refresh in the browser may be necessary in order to "reload" the file apex_4_1.min.js"
    I implemented the suggested workaround and this solved the problem!
    HTH,
    Matthias Hoys

  • Report multiple failures with TestStand reporting

    I'm pretty new to TestStand so please bear with me. I'm using LabView to test a connector on a digital interface board. So I'm reading and writing dig. signals on say 15 pins in a test. I'm using TestStand to run my VI's. When a test fails TestStand seems to only report one measurement at a time. I want all of the pins that failed to show up in the TestStand report in a format like :
    InputPin:A1 OutputPin:B1 Expected:0 Read:1
    InputPin:a2 outpuPIn:b1 expected:1 read:0
    I tried using the ReportText section of the TestData Cluster but I couldn't format it properly. All of the data sort of runs into each other like this
    input:a1 output:b1 expect:0 read:1 input:a2 output:b2
    the carriage returns I tried to put in were i
    gnored.
    Does anybody know how I can report a lot of failures in one report. I hope I explained properly.Thanks

    Hi,
    Find attached an example using the MultipleNumericLimitTest step type.
    All it does is use the array found in Locals call Digital as the DataSource for the Limits. You can check this by selecting the step and doing a right mouse click - select Edit Limits. Then select the Data source Tab. I have add 16 Measurements, one for each of the array elements.
    This will give a you a result of each element of the array in the report for that step. But by default it will look like:
    Measurement[0] (Measurement 0):
    Limits:
    Low: 0b1
    Comparison Type: EQ (==)
    Data: 0b0
    Status: Failed
    To get the format you require will mean modifying the report sequence file.
    Hope this helps a bit
    Regards
    Ray
    Farmer
    Regards
    Ray Farmer
    Attachments:
    Sequence_File1.seq ‏26 KB

  • No XML output for a report Oracle 11.5.10.2 RDBMS 10.2.0.5.0

    I created a very simple rdf and ran it without problems.
    I then generated an .xml file and loaded this into into the template builder using xml publisher.
    I created the rtf and using xml Publisher administrator created a template and data definition for my report (TESTRDF)
    "The xml page cannot be displayed
    Cannot view xml input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    The following tags were not closed: TESTRDF5, LIST_G_VENDOR_NAME. Error processing resource 'http://cc002101.smart.star.net...
    Here is an example of the xml
    "- <LIST_G_VENDOR_NAME>
    - <G_VENDOR_NAME>
    <VENDOR_NAME>Vendor </VENDOR_NAME>
    <INVOICE_NUM>141</INVOICE_NUM>
    <AMOUNT_PAID>184</AMOUNT_PAID>
    <INVOICE_AMOUNT>184</INVOICE_AMOUNT>
    <VENDOR_NUMBER_>1</VENDOR_NUMBER_>
    <VENDOR_ID>1</VENDOR_ID>
    <INVOICE_ID>1</INVOICE_ID>
    <WFAPPROVAL_STATUS>NOT REQUIRED</WFAPPROVAL_STATUS>
    <INVOICE_DATE>20-DEC-07</INVOICE_DATE>
    <DOC_SEQUENCE_VALUE>109624</DOC_SEQUENCE_VALUE>
    <HR_DETAILS_>HR changed </HR_DETAILS_>
    <ORGANISATION_ID_>102</ORGANISATION_ID_>
    <APPROVAL_GROUP_ />
    </G_VENDOR_NAME>
    "

    I would recommend checking the content of the file on the server. The problem with displaying an XML file through the browser is that it won't always display it properly, for example if there is a character id doesn't recognise.
    Having opened up the original file, yuo should be able to see the issue more easily.

  • Printer Setup for HTML reports (Landscape)

    I'm trying to print an HTML report in Landscape, the Report Orientation VI only works with Standard Reports, and I can't find anything that will let me modify the "Printer Setup"
    Anyone done this?

    Jeff,
    To print an HTML report it first has to be rendered. To render HTML, you need a browser. For example, you can render HTML in either Internet Explorer or Firefox or Opera, and all three might render the same data slightly differently. To simplify the situation let's say that you're using IE. Once IE renders the HTML, you then have to get it to send the rendered output to the printer. So you can see why it isn't time or cost-effective for NI to try and necessarily support these functions. For the end user however, I'd guess that quite a few people have had this problem.
    I have had to do a lot of digging around to get HTML reports to print right. My solution has been to use an ActiveX container with an IWebBrowser2 object (Internet Explorer). This will let you load and print HTML reports programatically however (glancing back over some old code) I don't see immediately how you can print a report in Landscape. With an ActiveX container however you can call the IE print preview function which will let you (the user) modify the report printing to Landscape. It's not a programmatic solution since you have to interact with the GUI but it works. Also, once you set the setting to Landscape, everything printed afterwards using your ActiveX container will also print in Landscape.
    Something else which may not apply to you (but maybe--I'll at least mention it) is printing a landscape single image... that's usually why I needed to print landscape... to print out a full page screenshot of a graph or something. I do this in portrait mode by just attaching the control image but rotating it first and adding the HTML code to make it 100% of the vertical page.
    Last but not least, if you are 100% set on using a programmatic implementation to print a landscaped report (no user interaction), the best thing to do would be to build on an ActiveX implementation so that your report is being loaded and printed from an embedded IWebBrowser2 object. With the IWebBrowser2 object there is an option for using a pre-defined print template. This option is NOT for the faint of heart and requires you basically to re-program the whole IE print-preview functionality. However, it's not impossible either, it just takes the time of learning basically how the IE print preview interface works and then adapting it to your application (in this case, landscaped printouts). This is also the ONLY way to change HTML report headers and footers. The print preview interface in IE is written entirely in javascript--you can get details on msdn (search for "print preview templates"). However, there isn't really enough info there to do things with any ease. So....
    If you get to the point where you get an ActiveX container working and want to fool with the IE print preview javascript templates, let me know. I have extracted the entire template and associated images from the windows DLL it is stored in so I could adapt it and change the headers and footers for my reports and things of that nature.
    Now that I mention it, I believe that is the only way also to actually set landscape or portrait--by programmatically changing the printing margins (so it prints 11x8.5 instead of vice versa).
    Anyway, hope that helps...

  • How to Dynamically Select the Data File for a Report at Print Time

    How do you configure a Crystal report to ask for the file to be reported on as the report is being printed, and allow the user to browse to the file?
    The environment is Crystal Reports XI, SP3, with ODBC connection to Sage Timberline Office data version 9.7.  The client names their Payroll unposted time file each pay period, and also needs to report on their posted data file, depending on the time period for the report.  The client will need to select both the date range and the file name.
    I have created a SQL statement in Add Command in Database Expert, which prompts for a file name, but it does not let you browse to select a file on the computer.
    Therefore, in the prompts when they print the report, the parameter offers the user a default file name similar to the name they currently use, so they only have to change the payroll period end date in the supplied file name to run the report successfully.
    The client is concerned that sometimes a user will name their data file differently, and not know how to input the file name into the Crystal report prompt at print time.
    My research on dynamic prompts showed you can link to fields inside the data record, but I did not see a way to dynamically link to select the actual files used in the report.
    Another question is that the naming convention used by the SQL query is different than the basic Windows file name, but I think I can handle that issue.
    The actual file name is typically similar to:
    04-10-11 BP NEW.PRT
    However, in the SQL query, the record ID looks like:
    PRT_00-00-00 BP NEW__TIME
    The SQL Statement using a parameter is:
    SELECT
    "PRT_CURRENT__TIME"."Employee",
    "EMPLOYEE1"."Employee_Name",
    "PRT_CURRENT__TIME"."Date",
    "PRT_CURRENT__TIME"."Units",
    "PRT_CURRENT__TIME"."Job",
    "JOB1"."BP_Emps_Used"
    FROM
    "PRT_CURRENT__TIME" AS "PRT_CURRENT__TIME"
    INNER JOIN "JCM_MASTER__JOB" AS "JOB1"
    ON "PRT_CURRENT__TIME"."Job"="JOB1"."Job"
    INNER JOIN "PRM_MASTER__EMPLOYEE" AS "EMPLOYEE1"
    ON "PRT_CURRENT__TIME"."Employee"="EMPLOYEE1"."Employee"
    WHERE "JOB1"."BP_Emps_Used" = 1
    AND
    ("PRT_CURRENT__TIME"."Date" BETWEEN
    {?As of Date} - 41 AND {?As of Date})
    UNION ALL
    ( SELECT
    "PRT_NEW__TIME"."Employee",
    "EMPLOYEE2"."Employee_Name",
    "PRT_NEW__TIME"."Date",
    "PRT_NEW__TIME"."Units",
    "PRT_NEW__TIME"."Job",
    "JOB2"."BP_Emps_Used"
    FROM
    "{?NEWPRT}" AS "PRT_NEW__TIME"
    INNER JOIN "JCM_MASTER__JOB" AS "JOB2"
    ON "PRT_NEW__TIME"."Job"="JOB2"."Job"
    INNER JOIN "PRM_MASTER__EMPLOYEE" AS "EMPLOYEE2"
    ON "PRT_NEW__TIME"."Employee"="EMPLOYEE2"."Employee"
    WHERE "JOB2"."BP_Emps_Used" = 1
    AND
    ("PRT_NEW__TIME"."Date" BETWEEN
    {?As of Date} - 41 AND {?As of Date})

    Hello,
    Sorry you'll have to contact Sage on how to do this. We can help you once you get connected but we can't help you get around their connection methods.
    There is no Preview Set Database Connection method you can use in CR Designer. The Designer assumes you select it first or use the Set Location option before previewing or refreshing the data.
    If you are doing this in the Sage program itself we can't help you, you'll have to contact Sage for assistance.
    Sage is an OEM Partner they are responsible for supporting their product and CR. If they have issues help you then they will contact us directly for assistance.
    Thank you
    Don

  • Error while download the data to an Excel sheet for ECC report from EP

    Hi experts,
    I had created a report program which will download the data to an Excel sheet using SAP OLE object
    For this report i had created a tcode too. The report which i developed is perfectly working fine in SAPGUI. But if i download the data to an Excel sheet for the same report throught SAP EP.I am getting the  error that "Error in excel downlaod"
    I analyed by putting dubigg point and it throws exception while calling Function module.
    The excpetion is " OLE object id not found".
    Can any body gives a light on this why i'm not able download the excel in ep?
    Thanks,
    JB

    Hello,
    (by the way I came here to ask my question and is my first time visit but...)
    The problem is obvious: How do you expect OLE handler can "touch" the local PC Excel through a web browser? I believe that is not possible. That means (at least for me) that I have to create the whole documents before I return them to the user. That is why I use XML Office documents generation or you can try to hack some Export to excel features of ERP reports.
    Regards Otto

  • What has caused an app I purchased (Family Tree Maker for Mac) and currently have installed, to disappear from the Mac Store. Does this mean it is no longer sold?  If so, how will I get update notices or re-download if needed?

    I purchased and installed Family Tree Maker for Mac from the App Store about 6 months ago.  I heard that possibly a new version was coming, though I had not received any update notice.  I went to the App Store and it no longer shows the app, either as available for purchase or as an app I have previously purchased.  So I can't get any information on the app, support, etc..  How can an app I have purchased disappear from the purchased list???  How can I get update information or support links? (contacted FTM website and phone support and they said if I bought my program from App store, I have to get update information there).....the Update Info button in my program is actually greyed out!!  So the program I bought doesn't even have the normal update link!!  I thought one of the advantages of App Store purchase was being able to redownload the program in the unlikely event it was lost....ie: no need to worry about having the install CD.  So now I only have my installed, operating copy and no way to reinstall if it crashes due to corrupt data, etc.!!  Not a happy result from an App Store purchase!  And I must say the circular references in the support link are frustarting...apparently there is NO live support for the App Store itself!

    Thanks for THAT tip: iTunes acct. history DOES show my (few) Mac app purchases, buried in with my MANY iPhone and iPad apps!  So I CAN prove I bought it (7 months ago, not 6), but you wouldn't know it from the App Store app on my Mac!  But that does leave a few other ?'s hanging: like how could I download it again, or check for updates (as I said, the version installed has the "update" button greyed out!  Ancestry.com (who sells it online and support it for other buyers said update info for App Store purchasers comes through the App Store. 
    I may just be out of luck with this because after 7 months of ownership, they (Ancestry) just replaced FTM with a new version (Family Tree Maker for Mac2) that is NOT an upgrade (though prior owners get $4.00 off on a $52.00 purchase!!).  I'll probably just plump for that....direct from Ancestry.com...and give up on the Mac App Store, because the new version reportedly has major enhancements in sync-ing your family history record between your computer and the cloud program available online.  Genealogy software, like everything else is migrating to the cloud, but one really does need a resident program on their device because you're often collecting data "in the field" in libraries, historical archives, cemeteries, etc. where you really can't get online in many cases.  Fortunately, more and more of the source data is coming online, so more and more can be done from home!

  • Print / Export on web page no longer works for Crystal Report

    I am honestly at a loss, for days, the report would allow me to click on the printer icon and print to PDF or export the result of the report, but now, all I get is a blank page when the page refreshes. It no longer asks me for print range or anything. I thought this might be a IE 6 setting, but after reviewing the settings and placing the site in my trusted sites list, I still can't print.Is there a web.config setting I need to know about to make sure that export and print are enabled?
    I get no error messages at all, it is as if the button is broke, but I have no way to troubleshoot the innerworkings of crystal xi r2 buttons on the web page. If I could just step though the script it uses that would atleast let me see what is going on, but right now, I am stuck.
    Thanks for your help ahead of time.

    I've went a bit farther than that, I created a virtual directory and placed the aspx file (and its associated ascx and designer files) into that folder along with the report, then I placed a basic web.config file with only crystal required elements within that folder. I disconnected that version of the viewing page from the master web file so that it no longer used a master file, I setup the assembly register at the top under the control section, then I placed the viewer and source on that page. Same end result, the report shows but when clicking on any option, the page is blank but source shows that there is javascript there. My report is not autobound, it is programatically generated from a click of a button.
    These were my assumptions:
    1) when the report is generated, it is on the page and the session information has everything it needs to know about the report
    2) when an option is selected, either clicking on the tree, the zoom, the print or export (or other options), that the view information is passed back during the postback event to the controls so that the report would not have to be regenerated
    What I am finding out, at the very least through trials, is that an autobound report, the controls work, but a manual bound report, the pages are blank after selection of any of the listed javascripted items. On top of that, the only time that this seems to be working on a manual bound page is that the page can contain nothing but the report and that the report must be rebuilt on page_load event. Which is not good.
    What 'should' be the desired design, is that Crystal writes to a session variable, the report data so that on a post back event, it understands what we want without having to do a full report reload. This would be optional of course because in its current design, each event triggered causes a repost of new data and never last pulled information, so that if there was a change in records, the event pulls the most up to date information. This is not documented anywhere that I have found for web design.
    So then, another problem along the same lines has arrisen. As you say, Crystal doesn't play well with AJAX, but AJAX is a requirement for the project and I need to have a progress bar for the report since ultimately the page is waiting on the report to show. Depending on the report and the postback, this could be a while, If it takes a minute for the initial view of the report to show, all events on the page will trigger a full refresh of the report and subsequent pulls will take the same time since the controls don't allow for 'use posted data' instead of 'pull new data'.
    Taking your suggestion, I removed the view from the panel and placed it above the panel control. At this point, the tree node script works, the zoom script works, all of the controls in the control colection on the report work, except export and print, those two still do not work. This is with me also placing the call to the buildreport on page_load event.
    What is even more troubling, is that not until I had removed the UpdatePanel and UpdateProgress controls from the page completely did the export or print work at all. With the fact those two exist anywhere on the page in general causes a problem. Again, not a desired result. I need a live visual effect for the user that something is going on because some of the reports take seconds while others can take minutes depending on the pull and they need to know that 'something' is going on.
    Removing UpdatePanel and UpdateProgress is not an option.

  • Features that are not supported by Excel in the browser and interactive reports will be removed from the saved copy

    I Created a power view in Excel 2013 and uploaded to my Power BI for o365 site.
    But when i click on my excel file it opens in browser,After that i click on File tab its showing me two option 
    1. Save a Copy
    2.Download a copy
    When i click on save a copy its showing me an warning below
    Features that are not supported by Excel in the browser and interactive reports will be removed from the saved copy.
    Continue with Save?
    If i continue saving it only saves an excel files with data only not the power view which i want to save with applied filters.
    Please help me for this

    Just to clarify, when you hit the option of Save As Copy, the whole experience goes into a "read-write" mode in Excel services, which currently doesn't support authoring, just consumption of PowerView sheets.
    Two mitigations that come to mind:
    1. Download the copy (as Brad suggests), rename the file and upload.
    2. Use the send to option of SharePoint online, give the file the right target document library (can be the same as source) and rename the file:
    GALROY

  • Using Azure internal load balancer (ILB) for Sql Reporting Services

    I am attempting to implement a scale-out SSRS deployment using the Azure ILB feature. I have created 2 Sql Reporting servers using the azure images and have created a ILB endpoint on both servers.  I am then attempting to access the servers via the
    ILB from my .Net web application.  I can access the report server from my browser and am prompted for credentials using forms authentication.  there is no issue accessing the reports from a browser however my web application cannot access the reports
    and returns a 500 error.  I have a hunch this is due to an authentication issue due to invalid kerberos proxy authentication.
    Does anyone have any information regarding the possible authentication mechanisms that are supported using Azure ILB?  

    Thanks for the response Swallow0417, but as I stated I already had configured this to work in a browser.  I should have mentioned that I already had set the machine key and altered the rsreportserver.config file as mentioned in
    https://msdn.microsoft.com/en-us/library/cc281307.aspx.
    It turns out this was due to the extended data validation that was introduced in SQL 2014. 
    This page led me to alter rsreportserver.config so that:
    <RSWindowsExtendedProtectionLevel>Off</RSWindowsExtendedProtectionLevel>
    <RSWindowsExtendedProtectionScenario>Any</RSWindowsExtendedProtectionScenario>
    After restarting the report server service my application now can make the requests for the reports successfully.  I'll provide the other steps I took to hopefully help someone else in the future:
    1. Create 2 or more SQL servers in an Azure availability group on the same service in a Reports server scale out deployment.  The SSRS Service account must be a domain account or it will not work
    2. Create an Azure ILB using powershell and add the endpoints on your http(s) ports on the server in step 1. I also set the endpoint IdleTimeoutInMinutes to 30 on both endpoints as it seemed like there was some possible timeout issues. the endpoint MUST
    also have DirectServerReturn Set to $true 
    3. disable the loopbackcheck see method 2 here
    http://support.microsoft.com/kb/896861
    create a DWORD registry key value 1,
    DisableLoopbackCheck,
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
    4. Configure View state validation by setting an identical machine key on all servers behind the azure ILB
    5. Create a Host record in your AD DNS for the Azure ILB IP Address. 
    6. configure hostname
    and URLRoot in rsreportserver.config - see
    https://msdn.microsoft.com/en-us/library/cc281307.aspx
    Setting the hostname tag breaks the report manager url. It is only
    required to set the URLRoot tag. I do not think it is required in this configurtaion only for Windows
    NLB
    6. Configure the authentication method in rsreportserver.conig
      <RSWindowsExtendedProtectionLevel>Off</RSWindowsExtendedProtectionLevel>
      <RSWindowsExtendedProtectionScenario>Any</RSWindowsExtendedProtectionScenario>

  • XL reporter error-requried COM add-in program for XL reporter has not ben l

    Dear All,
    I am getting this error could anyone please let me know the solution:
    "A requried COM add-in program for XL reporter has not been Loded and prohibuit Microsoft Excel from running.

    Hi,
    try to use the solution from the SAP note 893307:
    XLR - Activation of Other Microsoft Excel Add-Ins
    Symptom
    When Microsoft Excel is launched from within the XL Reporter application, other add-ins selected in Microsoft Excel's Add-Ins window are not automatically loaded into Microsoft Excel upon start.
    Other terms
    XLR, Business One, Addins, deactivated
    Reason and Prerequisites
    When Microsoft Excel is started through Automation (COM), Add-ins are not loaded by default. This is by design and XL Reporter follows this behaviour.
    The following is a workaround solution that is avalible in SAP Add-On XL Reporter 2004 SP02 patch 2 and SAP Add-On XL Reporter 2005 SP00 patch 1 and subsequent releases.
    Solution
    If you need to have other add-ins automatically loaded upon start, a workaround solution is now possible:
    In the Microsoft Registry Editor on your client machine, change the following settings in your system registry: in the registry tree underHKEY_CURRENT_USER/Software/iLytix/XLReporter/Settings/SBOOEM, add a key with the following name: StartExcelAddins. The key can have two values: the value, 1, which activates other add-ins upon start, and the default value, 0, which leaves the other add-ins inactivated.
    Incorrectly editing the registry may damage your system. System registry changes should therefore only be performed by an advanced user who is prepared to both edit and restore the registry. For details about the system registry, please refer to Microsoft Registry Editors help system
    if not solve yet, just let me know
    JimM

Maybe you are looking for

  • Error when open Infopackage

    Dear Gurus When i double click to open an infopackage that attached to flat file source system i'm getting the following error boldAn internal error occurred during the authorization check. Message no. RSM894bold If i open other infopackage within th

  • Disable "Allow files on this drive to have contents indexed in addition to file properties" for Mointpoints

    Hey Guys, I wandt to optimize all our SQL Servers and so I want to disable the  "Allow files on this drive to have contents indexed in addition to file properties" option in the Volume Properties.  The SQL Server is installed under D:\SQLSERVER which

  • Delta in AFIH

    Hi all,      Which field in AFIH table keeps track of delta in that table. i want to know which field keeps track of time and date of last changed service orders in AFIH table.

  • Can I view a live Numbers doc using an iFrame on my squarespace site?

    can I view a live Numbers doc using an IFrame on my squarespace site? This is the link: <iframe src="https://www.icloud.com/iw/#numbers/BALkvd4A5ZeoZ6EgvGeBpvA9G_uY0kx0k0-F/Aaron_Gh irardelli_copy" width="100%" height="1000px" frameborder="no" scroll

  • 1120: Access of undefined property scrollTractor

    The culprit line is: scrollingTractor.visible = true; Yes, scrollingTractor is a stage instance of a movie clip.  I copied the name from the instance name in the property inspector, so there is no typo. What am I missing? Regards, Ron