Office 365 Reporting Web Service Message Trace - It says it can get the past 30 days but i can only get the past 7 days

It says Message Trace data is stored for 90 days here: http://technet.microsoft.com/library/jj723162(v=exchg.150).aspx
When running the MessageTrace report using the Office 365 Reporting Web Service it only returns the past
7 days, even though it says up to 30 days here: http://msdn.microsoft.com/en-us/library/office/jj984335(v=office.15).aspx.
PowerShell’s "Get-MessageTrace" cmdlet only returns the past 7 days as well. PowerShell also has
an alternative cmdlet called "Start-HistoricalSearch" which returns the MessageTrace results between 7 and 90 days old.
Is it supposed to return 30 days, or is the documentation wrong, or is their an alternative report (like
PowerShell) to get MessageTrace results for over 7 days using the Office 365 Reporting Web Service?
Note: I'm aware that the results are returned in batches of 2000 MessageTrace results.

That document is pretty old last modified March 2013 so I would say it's out of date. The reporting services are still pretty new in the current release I believe 7 days is limit for the Rest Endpoint and the Get-MessageTrace cmdlet (which is what
the more recent documentation around message tracking say) there is no REST endpoint for Start-HistoricalSearch you can see all the current endpoints by looking at the Metadata via
https://reports.office365.com/ecp/reportingwebservice/reporting.svc/$metadata
These services are evolving so new features and reports are added which is explained in
http://msdn.microsoft.com/EN-US/library/office/jj984346(v=office.15).aspx . But there is no public information on Timeframes and what reports and features are going to be added in future updates (that I know of). If you need data older then
7 days then Automating the HistoricalSearch cmdlets would be the way to do it for now.
Cheers
Glen
 

Similar Messages

  • Office 365 - Reporting web service - CsConference* report TotalConferences value clarification

    Site Map: Office development > Office 365 > Reporting web service > Reference > Lync reports > CsConference*
    report<o:p></o:p>
    In Office 365, Lync Conferences
    Report.
    Field - "TotalConferences" is the number of conferences of all types
    in the reporting period. The sum of other conference type (IM, Audio/video, App
    Sharing, Web, dial-in) count doesn't equal/match the Total Conference count.<o:p></o:p>
    In the attached screen shot for a reporting period.
    IM Conference Count : 197
    Audio/video Conference Count : 67
    Application sharing Conference Count : 68
    Web Conference Count : 10
    Dail-in Conference Count : 5
    The sum of the above conference type is 347. In the report
    "Total Conference" count is displaying it as 268.<o:p></o:p>
    why is the difference?
    <v:shape
    alt="http://social.technet.microsoft.com/Forums/getfile/533351" id="Picture_x0020_1" o:spid="_x0000_i1025" style="width:284.25pt;height:300.75pt;" type="#_x0000_t75"><v:imagedata o:href="cid:[email protected]"
    src="file:///c:\Temp\msohtmlclip1\01\clip_image001.png">
    </v:imagedata></v:shape>

    That document is pretty old last modified March 2013 so I would say it's out of date. The reporting services are still pretty new in the current release I believe 7 days is limit for the Rest Endpoint and the Get-MessageTrace cmdlet (which is what
    the more recent documentation around message tracking say) there is no REST endpoint for Start-HistoricalSearch you can see all the current endpoints by looking at the Metadata via
    https://reports.office365.com/ecp/reportingwebservice/reporting.svc/$metadata
    These services are evolving so new features and reports are added which is explained in
    http://msdn.microsoft.com/EN-US/library/office/jj984346(v=office.15).aspx . But there is no public information on Timeframes and what reports and features are going to be added in future updates (that I know of). If you need data older then
    7 days then Automating the HistoricalSearch cmdlets would be the way to do it for now.
    Cheers
    Glen
     

  • Microsoft Reporting Web Service

    I am trying to call the new Microsoft Reporting web service from
    weblogic 8.1sp2. I've run the clientgen utility against the microsoft
    reporting server's wsdl.
    Using the generated stup classes, I keep getting an error about a
    snapshotID parameter, which is not a parameter passed in the stub API.
    I've attached the wsdl, java program and the soap xml with the error in
    it.
    Any help would be greatly appreciated.
    Thanks,
    Eddie
    [ReportingService.wsdl]
    import java.io.*;
    import weblogic.webservice.context.*;
    import bny.adr.common.webservice.MSQLReportingService.weblogicgen.*;
    import bny.adr.common.webservice.MSQLReportingService.weblogicgen.serializer.*;
    import bny.adr.common.webservice.MSQLReportingService.weblogicgen.serializer.holders.*;
    public class TestClient1
    public static void main(String args[])
    FileOutputStream out_stream= null;
    PrintWriter writer = null;
    try
    //out_stream =
    // new FileOutputStream("C:/mystuff/JavaProjects8.1/java/Test/webservices/MSReportService/StackDump");
    //writer = new PrintWriter(out_stream);
    ReportingService_Impl rpt_srv_impl =
    new ReportingService_Impl();
    ReportingServiceSoap rpt_srv =
    //rpt_srv_impl.getReportingServiceSoap();
    rpt_srv_impl.getReportingServiceSoap("user", "password");
    String reportPath = "/Chapter04/Invoice-Batch Number Report";
    //String reportPath = "/Chapter04/Customer-Invoice Report";
    //The rendering format for the report.
    String format = "HTML4.0";
    // The devInfo string tells the report viewer how to display with the report.
    String devInfo =
    "<DeviceInfo>" +
    "<Toolbar>False</Toolbar>" +
    "<Parameters>False</Parameters>" +
    "<DocMap>True</DocMap>" +
    "<Zoom>100</Zoom>" +
    "</DeviceInfo>";
    // Create an array of the values for the report parameters
    ParameterValue parameters[] = new ParameterValue[2];
    ParameterValue paramValue = new ParameterValue();
    paramValue.setName("StartDate");
    paramValue.setValue("01/01/2001");
    parameters[0] = paramValue;
    paramValue = new ParameterValue();
    paramValue.setName("EndDate");
    paramValue.setValue("01/06/2005");
    parameters[1] = paramValue;
    ParameterValue paramValue = new ParameterValue();
    paramValue.setName("snapshotID");
    paramValue.setValue("1/7/2005 10:38:21 AM");
    parameters[0] = paramValue;
    // Create variables for the remainder of the parameters
    String historyID = null;
    DataSourceCredentials credentials[] = null;
    String showHideToggle = null;
    String encoding;
    String mimeType;
    Warning warnings[] = null;
    ParameterValue reportHistoryParameters[] = null;
    String streamIDs[] = null;
    SessionHeader sh = new SessionHeader();
    SessionHeaderHolder shh = new SessionHeaderHolder();
    sh.setIsNewExecution(true);
    shh.setValue(sh);
    ServerInfoHeaderHolder server_info_hd_hldr = new ServerInfoHeaderHolder();
    Render param = new Render(reportPath, format, historyID, devInfo, parameters,
    credentials, showHideToggle); //, encoding, mimeType,
    //reportHistoryParameters, warnings, streamIDs);
    //ServerInfoHeader server_info_header = new ServerInfoHeaderHolder(;
    RenderResponse response = rpt_srv.Render(param, shh, server_info_hd_hldr);
    byte report[] = response.getResult();
    System.out.println(report);
    catch (Exception e)
    e.printStackTrace();
    //if (writer != null)
    // e.printStackTrace(writer);
    --------------------Configuration: MSQLReportService - j2sdk1.4.1_07 WebService - <Default>--------------------
    Command : "C:\j2sdk1.4.1_07\bin\java.exe" -Dweblogic.webservice.verbose=true -classpath "C:\mystuff\JavaProjects8.1\java\Test\webservices\MSReportService\MSQLReportService;C:\mystuff\JavaProjects8.1\lib\CR121728_81sp2.jar;C:\mystuff\JavaProjects8.1\lib\CR120224_81sp1.jar;C:\mystuff\JavaProjects8.1\lib\weblogic.jar;C:\mystuff\JavaProjects8.1\lib\webservices.jar;C:\mystuff\JavaProjects8.1\lib\webserviceclient+ssl.jar;C:\mystuff\JavaProjects8.1\java\Test\webservices\MSReportService\weblogicbuild;C:\j2sdk1.4.1_07\jre\lib\rt.jar;C:\j2sdk1.4.1_07\lib\dt.jar;C:\j2sdk1.4.1_07\lib\tools.jar;C:\j2sdk1.4.1_07\jre\lib\ext\dnsns.jar;C:\j2sdk1.4.1_07\jre\lib\ext\ldapsec.jar;C:\j2sdk1.4.1_07\jre\lib\ext\localedata.jar;C:\j2sdk1.4.1_07\jre\lib\ext\sunjce_provider.jar" TestClient1
    Directory : C:\mystuff\JavaProjects8.1\java\Test\webservices\MSReportService\MSQLReportService
    <!-------------------- REQUEST ---------------->
    URL : http://wteadapadr01/ReportServer/ReportService.asmx
    Headers :
    SOAPAction: ["http://schemas.microsoft.com/sqlserver/2003/12/reporting/reportingservices/Render"]
    Content-Type: [text/xml]
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><env:Header><n2:SessionHeader xmlns:n2="http://schemas.microsoft.com/sqlserver/2003/12/reporting/reportingservices"><n2:IsNewExecution>true</n2:IsNewExecution></n2:SessionHeader></env:Header><env:Body><n1:Render xmlns:n1="http://schemas.microsoft.com/sqlserver/2003/12/reporting/reportingservices"><n1:Report>/Chapter04/Invoice-Batch Number Report</n1:Report><n1:Format>HTML4.0</n1:Format><n1:HistoryID xsi:nil="true"/><n1:DeviceInfo><DeviceInfo><Toolbar>False</Toolbar><Parameters>False</Parameters><DocMap>True</DocMap><Zoom>100</Zoom></DeviceInfo></n1:DeviceInfo><n1:Parameters xsi:type="n1:ArrayOfParameterValue"><n1:ParameterValue xsi:type="n1:ParameterValue"><n1:Name>StartDate</n1:Name><n1:Value>01/01/2001</n1:Value></n1:ParameterValue><n1:ParameterValue xsi:type="n1:ParameterValue"><n1:Name>EndDate</n1:Name><n1:Value>01/06/2005</n1:Value></n1:ParameterValue></n1:Parameters><n1:Credentials xsi:nil="true"/><n1:ShowHideToggle xsi:nil="true"/></n1:Render></env:Body></env:Envelope>
    <!-------------------- END REQUEST ------------>
    <!-------------------- RESPONSE --------------->
    URL : http://wteadapadr01/ReportServer/ReportService.asmx
    Response Code :500
    Headers :
    Date=Thu, 13 Jan 2005 21:59:37 GMT
    Server=Microsoft-IIS/6.0
    X-Powered-By=ASP.NET
    X-AspNet-Version=1.1.4322
    Cache-Control=private
    Content-Type=text/xml; charset=utf-8
    Content-Length=2882
    Envelope :
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
    <soap:Fault>
    <faultcode>soap:Client</faultcode>
    <faultstring>The parameter value provided for 'snapshotID' does not match the parameter type. --> The parameter value provided for 'snapshotID' does not match the parameter type. --> String was not recognized as a valid DateTime.</faultstring>
    <faultactor>http://wteadapadr01/ReportServer/ReportService.asmx</faultactor>
    <detail>
    <ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsParameterTypeMismatch</ErrorCode>
    <HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus>
    <Message xmlns="http://www.microsoft.com/sql/reportingservices">The parameter value provided for 'snapshotID' does not match the parameter type.</Message>
    <HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings.resources.Strings&EvtID=rsParameterTypeMismatch&ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&ProdVer=8.00</HelpLink>
    <ProductName xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName>
    <ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">8.00.743.00</ProductVersion>
    <ProductLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId>
    <OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem>
    <CountryLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId>
    <MoreInformation xmlns="http://www.microsoft.com/sql/reportingservices">
    <Source>Microsoft.ReportingServices.Diagnostics</Source>
    <Message msrs:ErrorCode="rsParameterTypeMismatch" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings.resources.Strings&EvtID=rsParameterTypeMismatch&ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&ProdVer=8.00" xmlns:msrs="http://www.microsoft.com/sql/reportingservices">The parameter value provided for 'snapshotID' does not match the parameter type.</Message>
    <MoreInformation>
    <Source>mscorlib</Source>
    <Message>String was not recognized as a valid DateTime.</Message>
    </MoreInformation>
    </MoreInformation>
    <Warnings xmlns="http://www.microsoft.com/sql/reportingservices" />
    </detail>
    </soap:Fault>
    </soap:Body>
    </soap:Envelope>
    <!-------------------- END RESPONSE ----------->
    java.rmi.RemoteException: SOAP Fault:javax.xml.rpc.soap.SOAPFaultException: The parameter value provided for 'snapshotID' does not match the parameter type. --> The parameter value provided for 'snapshotID' does not match the parameter type. --> String was not recognized as a valid DateTime.
    Detail:
    <detail>
    <ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsParameterTypeMismatch</ErrorCode>
    <HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus>
    <Message xmlns="http://www.microsoft.com/sql/reportingservices">The parameter value provided for 'snapshotID' does not match the parameter type.</Message>
    <HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings.resources.Strings&EvtID=rsParameterTypeMismatch&ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&ProdVer=8.00</HelpLink>
    <ProductName xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName>
    <ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">8.00.743.00</ProductVersion>
    <ProductLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId>
    <OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem>
    <CountryLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId>
    <MoreInformation xmlns="http://www.microsoft.com/sql/reportingservices">
    <Source>Microsoft.ReportingServices.Diagnostics</Source>
    <Message xmlns:msrs="http://www.microsoft.com/sql/reportingservices"
    msrs:ErrorCode="rsParameterTypeMismatch"
    msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings.resources.Strings&EvtID=rsParameterTypeMismatch&ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&ProdVer=8.00">The parameter value provided for 'snapshotID' does not match the parameter type.</Message>
    <MoreInformation>
    <Source>mscorlib</Source>
    <Message>String was not recognized as a valid DateTime.</Message>
    </MoreInformation>
    </MoreInformation>
    <Warnings xmlns="http://www.microsoft.com/sql/reportingservices">
    </Warnings>
    </detail>; nested exception is:
    javax.xml.rpc.soap.SOAPFaultException: The parameter value provided for 'snapshotID' does not match the parameter type. --> The parameter value provided for 'snapshotID' does not match the parameter type. --> String was not recognized as a valid DateTime.
    at bny.adr.common.webservice.MSQLReportingService.weblogicgen.ReportingServiceSoap_Stub.Render(ReportingServiceSoap_Stub.java:1266)
    at TestClient1.main(TestClient1.java:97)
    Caused by: javax.xml.rpc.soap.SOAPFaultException: The parameter value provided for 'snapshotID' does not match the parameter type. --> The parameter value provided for 'snapshotID' does not match the parameter type. --> String was not recognized as a valid DateTime.
    at weblogic.webservice.core.ClientDispatcher.receive(ClientDispatcher.java:313)
    at weblogic.webservice.core.ClientDispatcher.dispatch(ClientDispatcher.java:144)
    at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:457)
    at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:443)
    at weblogic.webservice.core.rpc.StubImpl._invoke(StubImpl.java:290)
    at bny.adr.common.webservice.MSQLReportingService.weblogicgen.ReportingServiceSoap_Stub.Render(ReportingServiceSoap_Stub.java:1261)
    ... 1 more
    Process completed.

    This is a little late, I know. but I just spent the day
    struggling with this very issue. Hopefully this can help someone
    else in the future. Here's my solution...
    on MX:Operation -- result="fillXML()"
    then
    private function fillXML(): void {
    var x:XML = new
    XML(wsProps.GetDatasetData.lastResult.toString());
    ...do what you need with your xml...
    I use an XMLList node of the result as the source property
    for an XMLListCollection bound to a datagrid. Let me know if you
    need more help to get it working. It works like a charm now that I
    figured that out. I don't know if it's a slimy hack, or not, but it
    gets the job done.

  • Financial Reporting Web service Out of Memory (11.1.2.2.300)

    Financial Reporting web services runs out of memory. The JVM settings are currently set to 2048. The OS is windows 2008 64 bit.
    We have made the the following settings but it still does not help. The service would stay up for about 5 to 6 hours and then would go out of memory. We also see that there is a continuous activity in Financial reporting logs even when there are no users using the system.
    - Navigate to the following Windows Registry key on the server hosting the Financial Reporting web application component:
    HKEY_LOCAL_MACHINE\SOFTWARE\Hyperion Solutions\FinancialReporting0\HyS9FRReports
    - Export the above mentioned Windows Registry key for backup purposes,
    - Create a new "String Value" entry with following name and value:
    Name:JVMOptionY
    Value:-XXtlasize:min=4k,preferred=64k
    With Y being equal to (current value of JVMOptionCount) + 1
    - Create a new "String Value" entry with following name and value:
    Name:JVMOptionZ
    Value:-XXlargeObjectLimit:4k
    With Z being equal to (current value of JVMOptionCount) + 2
    - Increase the value of the JVMOptionCount parameter by 2
    - Restart the Financial Reporting web application component for the changes to be taken into account.
    [2013-06-10T05:33:38.950-04:00] [FinancialReporting0] [NOTIFICATION] [00088] [oracle.EPMFR.core] [tid: RMI TCP Connection(549)-] [userId: <anonymous>] [ecid: 0000JwfYJ1xDOdk5wzXBiW1HhI4I000000,1:25339] [SRC_CLASS: com.hyperion.reporting.security.impl.HsSecurityHelper] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: authenticateUser] External authentication successful for user: [Server0 on host ] succeeded in 13182 ms.
    [2013-06-10T05:34:18.404-04:00] [FinancialReporting0] [NOTIFICATION] [00088] [oracle.EPMFR.core] [tid: RMI TCP Connection(550)-] [userId: <anonymous>] [ecid: 0000JwfYJ1xDOdk5wzXBiW1HhI4I000000,1:25339] [SRC_CLASS: com.hyperion.reporting.security.impl.HsSecurityHelper] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: authenticateUser] External authentication successful for user: [Server0 on host ] succeeded in 26365 ms.
    [2013-06-10T05:34:45.424-04:00] [FinancialReporting0] [NOTIFICATION] [00088] [oracle.EPMFR.core] [tid: RMI TCP Connection(551)-] [userId: <anonymous>] [ecid: 0000JwfYJ1xDOdk5wzXBiW1HhI4I000000,1:25340] [SRC_CLASS: com.hyperion.reporting.security.impl.HsSecurityHelper] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: authenticateUser] External authentication successful for user: [Server0 on host ] succeeded in 13760 ms.
    [2013-06-10T05:59:50.634-04:00] [FinancialReporting0] [ERROR] [] [oracle.EPMFR.core] [tid: Thread-67] [userId: <anonymous>] [ecid: 0000JwfYJ1xDOdk5wzXBiW1HhI4I000000,1:25338] [SRC_CLASS: com.hyperion.reporting.connection.CleanConMgrThread] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: run] [[
    java.lang.OutOfMemoryError

    Financial Reporting web services runs out of memory. The JVM settings are currently set to 2048. The OS is windows 2008 64 bit.
    We have made the the following settings but it still does not help. The service would stay up for about 5 to 6 hours and then would go out of memory. We also see that there is a continuous activity in Financial reporting logs even when there are no users using the system.
    - Navigate to the following Windows Registry key on the server hosting the Financial Reporting web application component:
    HKEY_LOCAL_MACHINE\SOFTWARE\Hyperion Solutions\FinancialReporting0\HyS9FRReports
    - Export the above mentioned Windows Registry key for backup purposes,
    - Create a new "String Value" entry with following name and value:
    Name:JVMOptionY
    Value:-XXtlasize:min=4k,preferred=64k
    With Y being equal to (current value of JVMOptionCount) + 1
    - Create a new "String Value" entry with following name and value:
    Name:JVMOptionZ
    Value:-XXlargeObjectLimit:4k
    With Z being equal to (current value of JVMOptionCount) + 2
    - Increase the value of the JVMOptionCount parameter by 2
    - Restart the Financial Reporting web application component for the changes to be taken into account.
    [2013-06-10T05:33:38.950-04:00] [FinancialReporting0] [NOTIFICATION] [00088] [oracle.EPMFR.core] [tid: RMI TCP Connection(549)-] [userId: <anonymous>] [ecid: 0000JwfYJ1xDOdk5wzXBiW1HhI4I000000,1:25339] [SRC_CLASS: com.hyperion.reporting.security.impl.HsSecurityHelper] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: authenticateUser] External authentication successful for user: [Server0 on host ] succeeded in 13182 ms.
    [2013-06-10T05:34:18.404-04:00] [FinancialReporting0] [NOTIFICATION] [00088] [oracle.EPMFR.core] [tid: RMI TCP Connection(550)-] [userId: <anonymous>] [ecid: 0000JwfYJ1xDOdk5wzXBiW1HhI4I000000,1:25339] [SRC_CLASS: com.hyperion.reporting.security.impl.HsSecurityHelper] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: authenticateUser] External authentication successful for user: [Server0 on host ] succeeded in 26365 ms.
    [2013-06-10T05:34:45.424-04:00] [FinancialReporting0] [NOTIFICATION] [00088] [oracle.EPMFR.core] [tid: RMI TCP Connection(551)-] [userId: <anonymous>] [ecid: 0000JwfYJ1xDOdk5wzXBiW1HhI4I000000,1:25340] [SRC_CLASS: com.hyperion.reporting.security.impl.HsSecurityHelper] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: authenticateUser] External authentication successful for user: [Server0 on host ] succeeded in 13760 ms.
    [2013-06-10T05:59:50.634-04:00] [FinancialReporting0] [ERROR] [] [oracle.EPMFR.core] [tid: Thread-67] [userId: <anonymous>] [ecid: 0000JwfYJ1xDOdk5wzXBiW1HhI4I000000,1:25338] [SRC_CLASS: com.hyperion.reporting.connection.CleanConMgrThread] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: run] [[
    java.lang.OutOfMemoryError

  • 12002 The Reporting Web Service is not working.

    Hi :)
    I have WSUS on Windows Server 2012 std. with Internal Database. Today I've installed 7 updates from patch tuesday and after restart I've got
    error 12002 The Reporting Web Service is not working
    I can see now that updatet clients can not report their status anymore :(
    What's up ? Any suggestion ?
    Best regards
    Nenad

    Hi,
    I would start by verifying that the /ReportingWebService resource is properly configured in IIS.
    Correct configurations can be found in the WSUS Technical Reference Guide: IIS
    Settings for WSUS 3.0 SP2 Web Services.
    Also,Under ReportingWebService
    Made sure all were set to disabled except for Anonymous Authentication
    Anonymous Authentication Enabled
    ASP .NET Impersonation Disabled
    Basic Authentication Disabled
    Forms Authentication Disabled
    Windows Authentication Disabled
    Regards,
    Clarence
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Display level suppressed when installing Office 365 ProPlus via SCCM even though XML says Display Level="Full"

    As the title says the display level is suppressed when installing Office 365 ProPlus via SCCM even though XML says Display Level="Full"
    I would like to install Office ProPlus with the display level visible to the user.  Not all users are local admins so I've installed Office within the admin context.  Does this happen because SCCM installs under system context and as such suppresses
    pop ups to the end user?
    Has anyone been able to get this to work or am i doing something wrong?  If someone can offer me some guidance please.  Here is my XML:
    <Configuration>
    <Add OfficeClientEdition="32" >
        <Product ID="O365ProPlusRetail">
          <Language ID="en-us" />
        <ExcludeApp ID="Access" />
          <ExcludeApp ID="InfoPath" />
          <ExcludeApp ID="Groove" />
          <ExcludeApp ID="Project" />
          <ExcludeApp ID="SharePointDesigner" />
          <ExcludeApp ID="Visio" />
        <ExcludeApp ID="OneNote" />
          <ExcludeApp ID="Publisher" />
        </Product>
      </Add>  -->
    <Updates Enabled="True" />
    <Display Level="Full" AcceptEULA="TRUE" />
    <Property Name="FORCEAPPSHUTDOWN" Value="1" />
    <Logging Name="OfficeSetup.txt" Path="%temp%" />
      <!--  <Property Name="AUTOACTIVATE" Value="1" />  -->
    </Configuration>

    When i install Office 365 ProPlus manually (independently of SCCM) I see the prompts (same SCCM Package and configuration.xml file).  This suggests it is suppressed when ran in the system context via SCCM. 
    How does Microsoft expect you to maintain the build versions (running setup.exe /configure XML) if users are unable to view the prompts? This is significant if the user is already in an Office program they'd get prompted with a message to close the app else
    it automatically closes OR fails depending on if you include the ForceAppShutdown switch in the configuration.xml file.
    The users in the environment are not all local admins which is why i cannot run the deployment in the user context.
    I really need some help, anyone?

  • All data and messaging works on my note 4, but last night the cellular phone service just went dead.  I can call people but the line is just silent, and people can call me, it rings, but I can't hear them.  ?????

    all data and messaging works on my note 4, but last night the cellular phone service just went dead.  I can call people but the line is just silent, and people can call me, it rings, but I can't hear them.  ????? What is wrong with it????  How do I fix it????

    You aren't attached to a bluetooth headset or other device for some strange reason?  Or even an automobile bluetooth, I have a friend that has this issue with his Prius because even when it is not running the bluetooth is still active and connects to his phone.

  • I can delete my Internet history but I can't delete my words searched in different web sites. Would you like to help me?

    I can delete my Internet history but I can't delete my words searched in different web sites. Would you like to help me?

    Hi Niel,
    There may be a problem with the definition of the rule to delete the characteristic. If you go to transaction RSMRT
    and use the 'check' option to check the rule you created are there any errors for the check?
    If not when you get the error message that you mention is there any additional error messages created in sm21
    or dumps in ST22?
    If not there may be a problem with the consistency of the cube if you goto RSRV>All Elementary tests>Transaction data
    and run these tests for the cubes are there any error messages? If yes please try to use the repair function in RSRV
    to correct any errors.
    If none of the above helps you should delete the run you created, make a dummy change to the cube (e.g add a '.'
    to the description of the cube, save the change and then activate the cube, please then try and create the
    remodelling rule again.
    Best Regards,
    Des.

  • My ipad receives email with the hotel wifi but will not send.  The error message is "user name or password for ........is incorrect" but both are correct and unchanged.  Restarting iPad didnt help.

    My iPad receives email on the hotel wifi but will not send.  The error message reads "user name or password for smpt......is incorrect" but both are correct and unchanged.  Restarting iPad did not help.

    I did try this too, but when I access my webmail on the iPad, the iPad doesn't allow me to type my message.  I am able to enter in the "to" address and the "subject" line, but then the keyboard will not come up for me to type my message.  Is there some trick to this?  Very frustrating!

  • Am getting message from MacPro that my start up disc is full - but I can't find it and can't figure out what to do to help situation. I've been making a number of imovies, which generates junk files. help?

    I am getting message from MacPro that my start up disc is full - but I can't find this "start up disc" and can't figure out what to do to help situation. I've been making a number of imovies, which generates junk files and material that I should toss in the trash, but it is not clear to me  what items I can toss and which items I can't toss. Can you help? Using the imovie "help" support the system showed me under the menu item "go" where the "start up disc" should be - but that wasn't actually available on my menu!  Thanks for your help!

    Disk Utility 
    Get Info on the icon on Desktop
    Try to move this to the MacBook Pro forum
    Your boot drive should be 30% free to really perform properly. 10% minimum
    Backup, clone, use TimeMachine, use another drive for your projects and movies, replace and upgrade the internal drive even.

  • When I want to get an app, an error message comes up saying I need 3.0 software update.  How do I get my ipod updated in itunes, when itunes says my ipod is already updated?

    When I want to get an app, an error message comes up saying I need 3.0 software update.  How do I get my ipod updated in itunes, when itunes says my ipod is already updated?
    OR if I cannot update to software 3.0, how can I find apps that will work just for my ipod touch?

    It sounds like you have a 1G iPod Touch, in which case you can only upgrade to iOS version 3.1.  Here is a link to purchase the update.
    http://support.apple.com/kb/HT2052
    B-rock

  • I bought a used PowerMacPC G5. I can burn and read DVDs, but I can't read or burn CDs. The CDs are not even recognized. After the drive searches for a while, the CD is ejected without any error messages. The CDs work okay on my iMac.

    I bought a used PowerMacPC G5. I can burn and read DVDs, but I can't read or burn CDs. The CDs are not even recognized. After the drive searches for a while, the CD is ejected without any error messages. The CDs work okay on my iMac.
    I am running Mac OSX 10.4.11. According to the System profiler the CD/DVD drive is a "PioneerDVD-RWDVR-112D." When I compare the information under this heading, the only unusual difference from my iMac is that the G5 reads "Burn Support: Yes (Unsupported)." My iMac reads "Burn Support: Yes (Apple Shipping Drive)."
    Under the System Preferences the options are set to "Ask what to do" when a blank CD or DVD is inserted. Music CD set to open iTunes, Picture CD set to open iPhoto, Video DVD set to open DVD player.
    Do you have any suggestions?
    Thanks, Jack

    Hi Jack, great help so far!
    Internal...
    http://eshop.macsales.com/static_pages/Framework.cfm?page=superdrive/sdl_powerma c_g5.html
    External be sure it's Firewire & not Bus powered...
    http://eshop.macsales.com/shop/firewire/optical-drives/

  • TS2446 I just got my Ipad and I can not download apps.  I get a message saying my Apple ID has been disabled.  I have reset my password, I can access itunes and icloud but still can not download apps.  Can someone please tell me how to get my ID activated

    I just got my Ipad and I can not download apps.  I get a message saying my Apple ID has been disabled.  I have reset my password, I can access itunes and icloud but still can not download apps.  Can someone please tell me how to get my ID activated?  TY

    Depending on why it's been disabled you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    Or you might need to contact Apple : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page
    If it then works on your computer's iTunes but not your phone/iPad then try logging out of your account on the phone/iPad by tapping on your id in Settings > Store (Settings > iTunes & App Stores on iOS 6) and then log back in and see if that 'refreshes' the account on it

  • Have loaded lion and now cant access office for mac or apple works as it says it does not support power pc applications, how can I acces them or better still reinstate them please

    Have loaded lion and now can't access office for mac or apple works as it says it does not support power pc applications, how can I acces them or better still reinstate them please?

    MS-Office for Mac versions 2004 and older do not run in Lion since these are PPC-apps for which Apple has dropped support.
    Free alternatives to open Word and Excel files:
    NeoOffice http://www.neooffice.org/neojava/en/index.php
    OpenOffice http://www.openoffice.org/
    Or get the 2011 MS-Office

  • When I try to submit a form I get an error massage (An error occurred during the submit process. There was a problem connecting to the server.) it seems I only get this message on a PC

    When I try to submit a form I get an error massage (An error occurred during the submit process. There was a problem connecting to the server.) it seems I only get this message on a PC

    Read the user manual that came w/the scanner and/or contact HP Support.
    http://support.apple.com/kb/PH14141 OS X Mavericks: Reset the printing system 
    http://support.apple.com/kb/HT3669 Printer and scanner software available for download 
    A scanner driver you may wish to consider:  VueScan Scanner Software

Maybe you are looking for

  • Apps not restored after upgrading to IOS6

    I have an iPhone 4S, which I back up automatically to iCloud.  I also manually back it up to iTunes every now and then.pgrade from IOS5 to IOS6.1 Last night, I finally decided to upgrade from IOS5 (5.1.1, IIRC) to IOS 6.1.  I triggered a manual backu

  • Regarding Account assignment categories in ECC 6.0

    Hi All, My client is going for a upgrade from SAP r/3 4.7 to ECC 6.0, In this process while creating Emergent orders in PLant maintianence module, an error "Invalid Account Assignment category" is arising with the following explaination under diagnos

  • Weblogic WorkShop IDE does not start

    My weblogic workshop IDE was working until today. When I try opening it up, nothing happens. It doesn't open up or show me any error messages. I don't even know where to begin trouble shooting. Any ideas? Thanks. gtata Edited by gtata at 12/10/2007 3

  • "show ip flow top-talkers" output question

    Hello all, I have a question about the "show ip flow top-talkers" command. The top enry for this 1841 router with a T1 connection is always this line: SrcIf            SrcIPaddress    DstIf         DstIPaddress    Pr SrcP   DstP  Bytes Se0/1/0      

  • Is it possible to automate the times that certain Mail accounts are online?

    I have two personal email accounts that I'd like to have active at all times, but I have a third email account that I only wish to be online/receiving emails during my usual business hours.  I know that I can select for individual accounts to be offl