XL Report Error - Type 18

Hi,
We have a problem related with the XL Report. When we try to create a new report the folow message apears:
'An error occurred during the process "Report Initialize". Description (666) Error! Unable to get the document! Type 18
Cause: Automation error
XL Report Startup failed'
Can someone help us?
Best Regards
VS

I too am experiencing this issue with a client that has recently upgraded to Office 2007. The exact message is:
An error occured during the process "Report Initialize".
Description: (666) Error! Unable to get document
Type: 22
Cause: Automation error
XL Reporter startup failed!
I believe I have followed the guides on this forum by in inserting the above text into the SBOXLReporter.exe.config file to no avail. I have also tried copying this same file from a client that is working with both Office 2007 and SAP. This file I copied into C:\Program Files\SAP\SAP Business One\AddOns\XLR\XLReporter, again to no avail.
Has the forum any more suggestions?
Regards,
Juan

Similar Messages

  • Error types in oracle report builder

    hello,
    i want to write a parser, which parses
    an oracle report builder trace file. from
    this parsing one should see if an error ocurred in
    the whole process of generating the report.
    so far i know of two possible error "types"
    REP-...
    ORA-...
    are there further error types which could occur ?
    where can i find all the possible error types ?
    does anybody have any experience in writing such a parser ?
    greetings
    Thorsten Lorenz

    Please refer Oracle Reports 9i Reports Builder HELP, Error Message section.
    The Oracle Error Messages manual contains error message codes and descriptions for all database utilities such as SQL*DBA, SQL*Loader,SQL*Module,Export, Import, and the Oracle Precompilers.
    System-specific error messages are documented in your operating system documentation.
    Regards
    Reports Team

  • Report error:ORA-06502: PL/SQL: numeric or value error: character string bu

    We face the above error in HTMLDB (APEX) application Ver 3.1.0. This occurs when we try to display more number of rows/records in drop-down list (LOV in tabular forms). We are able to display 200 records in LOV. When the list of records exceeds 230, we face the below error
    report error:ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    the values listed in LOV are from tables (one of the columns in table)
    Could anyone give us a solution?

    Hi
    As you are using a tabular form, you could actually do the following:
    1 - In the tabular form column's attributes, set the following:
    Display as: Select List (query based on LOV)
    Display extra values: Yes
    List of values definition: SELECT null d, null r FROM DUAL
    2 - Add a new page item and set it to generate your select list
    3 - Create an HTML region with no template and use the following for its source:
    <script type="text/javascript">
    function loadList(c, l)
    var s = document.getElementsByName(c);
    var lItem = document.getElementById(l);
    var lLength = lItem.options.length;
    var k;
    var j;
    var x = lItem.innerHTML;
    var v;
    var o;
    var z;
    for (k = 0; k < s.length; k++)
    z = s[k];
    v = z.value;
    z.options.length = 0;
    for (j = 0; j < lLength; j++)
    o = new Option()
    o.value = lItem[j].value;
    o.text = lItem[j].text;
    z.options[j] = o;
    z.value = v;
    if (z.selectedIndex == -1)
    z.selectedIndex = 0;
    loadList("f05", "P1_MGR");
    </script>
    (Change "f05" and "P1_MGR" as appropriate to your column and your new page item respectively)
    Now, when you load the page, the select list contains a null entry plus the entry already on the database. The javascript kicks in automatically, loops through every entry in the "f05" column, copies the existing value, replaces the select list with the new page item version and sets its value to the copied value.
    Your new page item could be in a DIV tag that has a style of "display:none" to hide it from view.
    Andy

  • PL/SQL function body returning SQL - report error:ORA-01403: no data found

    Hi,
    I am working on Application Express 4.0.2.00.06, and 11G database.
    I have a problem with classic report area of type - PL/SQL function body returning SQL query. Query works if I define region area as - Use Generic Column Names (parse query at runtime only), and does not when I define it - Use Query-Specific Column Names and Validate Query.
    I am getting error:
    report error:ORA-01403: no data found
    This is my query that is returned from function, and displayed with htp.p, and it works ok and returns data in SQL Developer and SQL Workshop (in Apex).
    <code>
    /* select 1 from dual */ SELECT SIFPRO, NAZIV, VODITELJ, DATPZA,SUM(DECODE(TJEDAN,'2010/46',BRDJEL,null)) as "2010/46" ,SUM(DECODE(TJEDAN,'2010/49',BRDJEL,null)) as "2010/49" ,SUM(DECODE(TJEDAN,'2010/50',BRDJEL,null)) as "2010/50" ,SUM(DECODE(TJEDAN,'2010/51',BRDJEL,null)) as "2010/51" ,SUM(DECODE(TJEDAN,'2010/52',BRDJEL,null)) as "2010/52" ,SUM(DECODE(TJEDAN,'2011/01',BRDJEL,null)) as "2011/01" ,SUM(DECODE(TJEDAN,'2011/02',BRDJEL,null)) as "2011/02" ,SUM(DECODE(TJEDAN,'2011/03',BRDJEL,null)) as "2011/03" ,SUM(DECODE(TJEDAN,'2011/04',BRDJEL,null)) as "2011/04" ,SUM(DECODE(TJEDAN,'2011/05',BRDJEL,null)) as "2011/05" ,SUM(DECODE(TJEDAN,'2011/06',BRDJEL,null)) as "2011/06" ,SUM(DECODE(TJEDAN,'2011/07',BRDJEL,null)) as "2011/07" ,SUM(DECODE(TJEDAN,'2011/08',BRDJEL,null)) as "2011/08" ,SUM(DECODE(TJEDAN,'2011/09',BRDJEL,null)) as "2011/09" ,SUM(DECODE(TJEDAN,'2011/10',BRDJEL,null)) as "2011/10" FROM (SELECT * FROM PMV_PLAN_TVRTKA) GROUP BY SIFPRO, NAZIV, VODITELJ, DATPZA ORDER BY SIFPRO, NAZIV, VODITELJ, DATPZA
    </code>
    As you can see, I even tried with workaround that I found on the previous post on the forum, and that is to put /* select 1 from dual */ to start query.
    Any help would be appriciated.

    /* select 1 from dual */ SELECT SIFPRO, NAZIV, VODITELJ, DATPZA,SUM(DECODE(TJEDAN,'2010/46',BRDJEL,null)) as "2010/46" ,SUM(DECODE(TJEDAN,'2010/49',BRDJEL,null)) as "2010/49" ,SUM(DECODE(TJEDAN,'2010/50',BRDJEL,null)) as "2010/50" ,SUM(DECODE(TJEDAN,'2010/51',BRDJEL,null)) as "2010/51" ,SUM(DECODE(TJEDAN,'2010/52',BRDJEL,null)) as "2010/52" ,SUM(DECODE(TJEDAN,'2011/01',BRDJEL,null)) as "2011/01" ,SUM(DECODE(TJEDAN,'2011/02',BRDJEL,null)) as "2011/02" ,SUM(DECODE(TJEDAN,'2011/03',BRDJEL,null)) as "2011/03" ,SUM(DECODE(TJEDAN,'2011/04',BRDJEL,null)) as "2011/04" ,SUM(DECODE(TJEDAN,'2011/05',BRDJEL,null)) as "2011/05" ,SUM(DECODE(TJEDAN,'2011/06',BRDJEL,null)) as "2011/06" ,SUM(DECODE(TJEDAN,'2011/07',BRDJEL,null)) as "2011/07" ,SUM(DECODE(TJEDAN,'2011/08',BRDJEL,null)) as "2011/08" ,SUM(DECODE(TJEDAN,'2011/09',BRDJEL,null)) as "2011/09" ,SUM(DECODE(TJEDAN,'2011/10',BRDJEL,null)) as "2011/10" FROM (SELECT * FROM PMV_PLAN_TVRTKA) GROUP BY SIFPRO, NAZIV, VODITELJ, DATPZA ORDER BY SIFPRO, NAZIV, VODITELJ, DATPZA

  • SCCM 2012 R2 reporting error: "The DefaultValue expression for the report parameter 'UserTokenSIDs' contains an error: A specified logon session does not exist. It may already have been terminated. (rsRuntimeErrorInExpression)"

    Hi,
    I have two SCCM environments under same active directory domain and one service account have been used for SCCM configurations on both the environments (QA and PRODUCTION). I am facing similar error as mentioned above while trying to fetch reports on
    PRODUCTION site, but the QA site is working fine, though same service account have been used for configuring both. While looking at the reportserverservice_<date> log on my Production DB server i see the following error
    "processing!ReportServer_0-3!2124!01/02/2015-09:09:30:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException: , Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException: An error has occurred during
    report processing. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Cannot read the next data row for the dataset DataSet1. ---> System.Data.SqlClient.SqlException: Conversion failed when converting the nvarchar value 'Override
    Default' to data type int."
    My DB and SCCM primary site are different and the reorting services point is installed on remote DB server. Please help me resolving the issue.
    Troubleshooting performed:
    1.Disabled the registry key 'EnableRbacReporting' from HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS\SRSRP to 0 and then restarted SSRS service and the reporting worked for some minutes after that the registry key reverted back to 1 automatically and
    reporting started throwing errors again.
    2. Checked with the permissions on DB whether or not 'sysadmin' role is assigned to the SCCM service account.
    3. re-registered the SQL management Provider WMI class.
    mofcomp.exe “C:\Program Files (x86)\Microsoft SQL Server\110\Shared\sqlmgmproviderxpsp2up.mof”

    Hi All,
    Finally found exact solution to the reporting error.
    Error: while launching SCCM reports (both from Console and web based) an unexpected error occured with error message as "The DefaultValue expression for the report parameter ‘UserTokenSIDs’ contains an error: A specified logon session does not exist.
    It may already have been terminated. (rsRuntimeErrorInExpression)"
    Solution: This is password replication issue for the domain account used to configure reporting services point in SCCM. If your SQL SSRS reporting services instance and databse runs with local default account whereas the reporting services point on SCCM
    primary site is configured with domain account, (As in My case) you need to perform the following in order to get rid of the error.
    Launch 'Reporting Services Configuration Manager' from the SQL SSRS box(either Local or Remote), Connect to Report Server Instance->Go to 'Execution Account' tab->Specify the 'Execution Account' as domain account and password which is used to configure
    Reporting Services Point in SCCM Primary Site, and then click apply.
    Now Lauch the report either way (Web based or from Console), the error will disappear and all your default reports will execute perfectly as before.

  • Crystal report error on Target Machine

    We have to provide application exe to our clients. The application is developed in Visual Studio.Net 2010 and by using SAP crystal report CRforVS_13_0. Client must be able to fire reports on their target machine on which the Dot Net framework and u201CCRforVS_redist_install_64bit_13_0_1u201C run time utility is installed. But it gives a crystal report error on the target machine.
    Our development and target machines have Win 7 Professional, 64-bit OS installed.
    Kindly provide us with an appropriate run time version for target machine in order to fire reports or any other solution in order to make our project work on target machine.
    Thanks!

    Thanks a lot Don for your valuable suggestions.
    We have already taken care of the points which you mentioned in your reply on development side. Also, we have downloaded crystal report from the link which you posted but on DEPLOYMENT side we are unable to run reports from our application.
    It gives the notification when we try to install crystal report on a target machine as "You must have visual studio 2010 installed in order to install the crystal report".
    The DEPLOYMENT problem we are facing is in RUNTIME environment on TARGET machine.  Our TRAGET machine has properly installed Win 7 Professional 64 bit,  .NET Framework Ver 4 and CRforVS_redist_install_64bit_13_0_1 . We also have properly installed application on this machine. We got no errors while installing any of the above. The problem starts when we fire a report on target machine from the application.
    We get the error as "The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw an exception"
    So, we are looking for an appropriate RUN TIME version of Crystal Report which can be installed on the target machine to fire reports (where visual studio 2010 is not installed).
    Please help suggest an exact version to download for target machine and the steps if it has a specific procedure.
    Thank you!
    Ruchir

  • QuickTime 'Don't Send' report Error

    Hey, lve just installed QuickTime and when im running it im receiving 'Don't Send'
    report error, iv tried reinstalling it \ redownloading \ repairing. nothing works.
    any suggestions?
    thanks

    Is this happening when your trying to open a particular file type with QT? And you then get a microsoft message that a problem occurred and you can submit to microsoft or not send? Or is this happening while just trying to open QT player on it's own without attempting to open a file?

  • Since installing 10.7.3 Mail and Address Book no longer load and report errors. Anyone else experiencing this? Safari works fine.

    Everything worked fine prior to the installation. I am aware of bug issues that people are reporting with regard to no applications working and strange error messages. My MacBook Air is fine; my wife's MacBook is fine. It's my iMac 12,1 that isn't.

    It is an enormous crash report error rather than a short message. Both Address Book and Mail crash. I restored my iMac to pre-10.7.3 and everything worked fine once more. I downloaded and installed 10.7.3 as a combo a short while ago and the crash report for Address Book and Mail once more returned.
    I've just copied the start of the crash report:
    Process:         Address Book [378]
    Path:            /Applications/Address Book.app/Contents/MacOS/Address Book
    Identifier:      com.apple.AddressBook
    Version:         6.1 (1083)
    Build Info:      AddressBook-1083000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [185]
    Date/Time:       2012-02-19 18:03:40.950 +0000
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:          2340 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  13 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      DFA67AE4-98E4-49AD-937D-95CCC1A37F54
    Crashed Thread:  3  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[378]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFString objectForKey:]: unrecognized selector sent to instance 0x7f898a69b5e0'
    *** First throw call stack:

  • Reporting Error while Restart to apply Recent Changes in OBIEE 11g in EM

    Hi Friends,
    I tried to open my rpd in online mode in OBIEE 11g, For that i went into EM for getting my rpd updated...
    So after all doing changes, I need to restart for applying changes, so I restarted the system components
    But only 80% of it started, remaining 20% is showing error and these are the error details
    "Restart failed with 2 errors: problems reported by coreapplication_obis1, coreapplication
    see detailed logs for more information"..
    The above is the error message that i got..
    The below are the log messages that reported error
    Message type: Error
    Message ID : -
    Message : SEVERE:Element type:BI_instance,element_id:coreapplication,operation result:failed_to_start, detail Message-Error in starting one or more components of Bi instance; please check the server log files for detailed information..
    Target : biadmin services(11.1.1)(Admin server)
    Target type : application deployment
    Log files : Admin server_diagnostic.log
    Message type: Error
    Message ID : -
    Message : SEVERE:element type:process, element Id: coreapplication_obis1, operation result: failed_to_start, detail message- operation failed: start; oracle instance: instance4; component; coreapplication_obis1;msg: 0 of 1 processes started..
    Target : biadmin services(11.1.1)(Admin server)
    Target type : application deployment
    Log files : Admin server_diagnostic.log
    Message type : Error
    Message ID : EM-02694
    Message : Supplementary information regarding operation: BI_instance:coreapplication; failed_to_start; error in starting one or more components of BI instance; please check server log files for detailed information..
    Target : em(Admin server)
    Target type : application deployment
    Log files : emoms.log
    Message type : Error
    Message ID : EM-02694
    Message : Supplementary information regarding operation: PROCESS:coreapplication_obis1; failed_to_start; operation failed: start; oracle instance:instance4;component:coreapplication_obis1;msg 0 of 1 processes started..
    Target : em(Admin server)
    Target type : application deployment
    Log files : emoms.log
    how to solve these errors, because of this i couldn't able to open my repository in online mode as well as cannot able to update my .rpd file in presentation services in obiee 11g..
    I couldn't able to understand the error that is pointing to me....
    Help me friends..........
    Regards,
    Harry...

    It's myself harry and i solved this problem, since this problem occurred for me as i tried to update my repository.rpd file for more than 5 times because of the error that it reported to me in my previous post...
    How i solved this error means, i deleted all the other .rpd files(out of 5 i deleted 4) and i made some changes in my rpd file in the administration tool and after that i tried to update my rpd in EM..
    Once it updated, then i gave restart to apply recent changes, after that my system components tempt to work as of 100%...
    Anyway friends thanks for your views.....
    Cheers
    Harry...
    Edited by: HariPrasad on Nov 13, 2010 2:59 AM

  • Reporting errors or exceptions back to the caller

    I'm u sing OracleAS 10.1.3 and I'm exposing some of my PL/SQL procedures as web services. I was wondering what the convention is for reporting errors back to the caller. I read a little bit about Soap faults and some lack of support in the current JDev release.
    Are soap faults the standard way of reporting handled exceptions? What about returning a record like:
       type r_ws_response_string is record (
          result          varchar2 (4000),
          return_code     number,
          error_message   varchar2 (4000)
       );... and having the caller check the return_code. Bad idea?
    Any resources you can point is is appreciated (books/sites).
    -Vahid Pazirandeh

    Hi Toby,
    Yes, I've come up with a working solution.
    Essentially, I've made use of PL/SQL's OUT parameters and always reporting a status to the caller. At minimum, any procedure or function that I expose as a web service will have two out parameters: status, error_msg. The benefit of having a status being returned is that the caller can build logic based on different problems encountered, rather than just saying "an error occured". The error strings that you define are textual error codes, so they shouldn't change once you decide on an API.
    The caller will always check for the value of status, if it is not 'SUCCESSFUL', then something is wrong. They can then log the value of error_msg so that their developers can figure out what went wrong later.
    What's also nice is that the XML that's generated by JDeveloper looks clean when we're using one or more OUT params.
    I don't know what the best way is to deal with this problem, but this works for me. :) Here's an example:
    g_status_success        := 'SUCCESSFUL';
    g_status_bad_password   := 'ERROR_INVALID_PASSWORD';
    g_status_file_not_found := 'ERROR_FILE_NOT_FOUND';
    g_status_unknown_error  := 'ERROR_UNKNOWN_EXCEPTION';
    procedure give_me_file(password varchar2,
                           status out varchar2,
                           error_msg out varchar2,
                           file out blob)
    is
    begin
         if bad_password(password) then
              status := g_status_bad_password;
              error_msg := 'You entered the wrong password friend!';
              return;
         end if;
         file := get_top_secret();
         if file is null then
              status := g_file_not_found;
              error_msg := 'Your file could not be found';
              return;
         end if;
         status := g_status_success;
         exception
              when others then
                   status := g_status_unknown_error;
                   error_msg := 'An unknown error occured.  Please file a ticket.';
    end;Regards,
    Vahid Pazirandeh

  • Payment not possible because of reported error Message no. FZ311

    i am a fresher in FI module... kidly give the solution  how to solve the error in automatic payment program..f110...
    i have attached my log here....
    Job log overview for job:
    F110-20140315-A1    -X / 13365701
    Date
    Time
    Message text
    Message class
    Message no.
    Message type
    ABAP program
    Screen no.
    15.03.2014
    13:36:59
    Job started
         00
        516
         S
    15.03.2014
    13:36:59
    Step 001 started (program SAPF110S, variant &0000000002023, user ID RAGU)
         00
        550
         S
    15.03.2014
    13:37:00
    Log for proposal run for payment on 15.03.2014, identification A1
         FZ
        402
         S
    15.03.2014
    13:37:04
    >
         FZ
        693
         S
    15.03.2014
    13:37:04
    > Additional log for vendor 100263 company code ALRF
         FZ
        691
         S
    15.03.2014
    13:37:04
    >
         FZ
        693
         S
    15.03.2014
    13:37:04
    >
    Due date determination additional log
         FZ
        799
         S
    15.03.2014
    13:37:04
    >
    Document 6
    004 line item 001 via INR      200.000,00-
         FZ
        700
         S
    15.03.2014
    13:37:04
    > Terms of payment: 15.03.2014    0  0,000 % 0  0,000 %    0
         FZ
        701
         S
    15.03.2014
    13:37:04
    >  00 days grace period is being considered
         FZ
        726
         S
    15.03.2014
    13:37:04
    >   Payment must take place before 15.03.2014; next payment on 16.03.2014
         FZ
        728
         S
    15.03.2014
    13:37:04
    > Item is due with 0,000 % cash discount
         FZ
        721
         S
    15.03.2014
    13:37:04
    >
         FZ
        693
         S
    15.03.2014
    13:37:04
    >
    Payment method selection additional log
         FZ
        699
         S
    15.03.2014
    13:37:04
    >
    Payment me
    thod selection for items due now to the amount of INR      200.000,00-
         FZ
        601
         S
    15.03.2014
    13:37:04
    > Payment method "C" is being checked
         FZ
        603
         S
    15.03.2014
    13:37:04
    > Street or P.O. box entry is missing
         FZ
        617
         S
    15.03.2014
    13:37:04
    > No permitted payment method exists
         FZ
        608
         S
    15.03.2014
    13:37:04
    Information re. vendor 100263 / paying company code ALRF ...
         FZ
        305
         S
    15.03.2014
    13:37:04
    ... payment not possible because of reported error
         FZ
        311
         S
    15.03.2014
    13:37:05
    End of log
         FZ
        398
         S
    15.03.2014
    13:37:06
    Job finished
         00
        517
         S

    Hello Experts,
    I am blocked with a strange issue which is similar to FZ311 mentioned above.
    Enclosing the screenshot for your reference.
    I am bit confused whether anything needs to be configured within the FBZP or it is purely the vendor master data .
    Any help will be appreciated.
    Kind Regards,
    Sanjay

  • Send Error Type or Description of failed messgaes in body of mail using SMTP adapter

    Hi,
    I want to send failed messages error type or description to admin to notify him for error occurs in BizTalk, with Error description in body part.
    I have set Send port option for "Enable routing of failed messages" and created a send port having SMTP adapter. Now in body I want to send error description.
    Pls advise how can I achieve this.
    -- Kind Regards Sandeep

    When failed message routing is enabled, BizTalk Server does not suspend the message—it routes the message instead.
    When a failed message is generated, BizTalk Server promotes error-report-related message context properties and demotes regular message context properties before publishing the failed message. Compare this to the default behavior when
    failed message routing is not enabled: Messages that fail are suspended. --------
    MSDN
    So if i were in this situation i would prefer to route the failed message to SMTP as well as to some kind of transport from which i can again receive the message ( like MSMQ or File).
    I mean create a send port group and bind 2 send port to this group (SMTP and MSMQ) and bind this group to that orchestration (specified in previous post) which subscribe the Failed Messages. Then bind the MSMQ location to your receive
    location to retry.
    I am not sure wheather it is the optimal solution or not ..... but it will work. Kindly let me know if you are not clear with what i said.
    Regards 

  • Reports Error Page 10g NullPointerException

    We have created a JSP report that produces Excel output via method outlined in the example given in the HowTo:
    http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/excel/index.html
    The JSP runs fine under 9.0.2 iAS but when we moved the report to a 10g AS we get the following error:
    Reports Error Page
    Mon May 24 11:50:26 BST 2004
    java.lang.NullPointerException
    java.lang.NullPointerException
         at com.evermind.server.http.EvermindBodyContent.setCharacterEncoding(EvermindBodyContent.java:458)
         at com.evermind.server.http.EvermindPageContext.pushBody(EvermindPageContext.java:630)
         at oracle.jsp.runtime.OracleJspRuntime.pushBodyIfNeeded(OracleJspRuntime.java:1385)
         at examples.test._test1._jspService(_test1.java:55)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:604)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    Any ideas what could be causing the report to fail and ways to make the report run under 10g As?

    Try adding charset to the content type
    e.g:
    <%@ page contentType="application/vnd.ms-excel;charset=ISO-8859-1" %>
    - Vinayak

  • Reporting Error After Upgrading to SCCM 2012 R2

    After upgrading from SCCM 2012 SP1 CU2 to SCCM 2012 R2, some users receive an error whenever they open a report.  This occurs in both the SCCM console and the SSRS web site.  What's odd is not all users receive the error.  In fact, for two
    users with the exact same permissions, running the console on the same computer, 1 gets the error and the other doesn't.  Anybody else see this or have any ideas to troubleshoot or fix it?  I'm thinking this may relate to the fix for permissions
    in reporting included in R2.
    The error message from the console is:Microsoft.Reporting.WinForms.ReportServerException
    The DefaultValue expression for the report parameter ‘UserSIDs’ contains an error: The user name or password is incorrect.
    (rsRuntimeErrorInExpression)
    Stack Trace:
    at Microsoft.Reporting.WinForms.ServerReportSoapProxy.OnSoapException(SoapException e)
    at Microsoft.Reporting.WinForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.ProxyMethodInvocation.Execute[TReturn](RSExecutionConnection connection, ProxyMethod`1 initialMethod, ProxyMethod`1 retryMethod)
    at Microsoft.Reporting.WinForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.LoadReport(String Report, String HistoryID)
    at Microsoft.Reporting.WinForms.ServerReport.EnsureExecutionSession()
    at Microsoft.Reporting.WinForms.ServerReport.SetParameters(IEnumerable`1 parameters)
    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerWindowsForms.SetParameterValues_DoWork(Object sender, DoWorkEventArgs e)
    The following error is logged in the SSRS logs:
    processing!ReportServer_0-1!12d0!10/31/2013-15:28:48:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: , Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Exception of type 'Microsoft.ReportingServices.ReportProcessing.ReportProcessingException' was thrown.;

    I just wanted to share my last upgrade experience with you, in case, someone is running into the same problem:
    I've just upgraded to SCCM 2012 R2 CU4 (from CU3).
    Guess what? It broke the Reporting, error message as above!
    So I've put the computeraccount of my SCCM/SSRS server (SSRS service is running under local system account) into the WAA group, reboot - but it didn't help. Tried also the Pre-Win2000-Compat-group. Didn't help. A colleague was not experiencing the problem.
    Hmmm. So what is different between our accounts?
    The difference found: My account's userPrincipalName was set to the same as the sAMAccountName, but missing a domain. The account was obviously created by a bad script.
    Solution 1: Delete the userPrincipalName attribute, or
    Solution 2: Make the userPrincipalName complete by adding a valid domain, i.e. [email protected]: In the Active Directory Users and Computers mmc, User Properties, Account tab, select a domain for the "User logon name".
    The problem seems to be only for user accounts, that are in a different domain than the SCCM server's account, i.e. server in example.com, user account in sub.example.com. Always multi-domain problems...
    Thorsten Lau - IT-Lösungen http://blog.system-center.de

  • Report error service is not available

    Hello,
    I find the following error on several locations in my SIPstack logs on my Edge Server:
    ms-diagnostics: 2019;reason="Report error service is not available";source="standard.kressmark.com"
    What service is this referring to?
    How can we troubleshoot this error message further?
    Any additional information about this topic would be appreciated!
    /mk
    The full INFO message:
    L_INFO(TF_PROTOCOL) [0]0A40.1148::03/10/2014-17:14:03.968.000000ad (SIPStack,SIPAdminLog::TraceProtocolRecord:SIPAdminLog.cpp(125))$$begin_record
    Trace-Correlation-Id: 2161867164
    Instance-Id: 000000F0
    Direction: incoming;source="internal edge";destination="external edge"
    Peer: standard.kressmark.com:5061
    Message-Type: response
    Start-Line: SIP/2.0 503 Service unavailable
    From: "Mattias Kressmark"<sip:[email protected]>;tag=45e334cc8d;epid=8ff7cc2b20
    To: <sip:[email protected]>;tag=FD66AF22DAE1582D6D94354611261F35
    CSeq: 1 SERVICE
    Call-ID: 9316261cef2141d3815a94c386e180d6
    Via: SIP/2.0/TLS 17.21.122.15:49348;branch=z9hG4bKB54C0D77.B76658C4DF13234B;branched=FALSE;ms-received-port=49348;ms-received-cid=4600
    Via: SIP/2.0/TLS 192.168.1.10:51983;received=81.217.34.250;ms-received-port=51983;ms-received-cid=100
    ms-diagnostics: 2019;reason="Report error service is not available";source="standard.kressmark.com"
    Server: RTC/4.0
    Content-Length: 0
    Message-Body: –
    $$end_record

    Hi,
    Did you deploy Monitoring server in your Lync server environment?
    Please update to the latest version for Lync server 2010 and then test the issue again.
    http://technet.microsoft.com/en-us/lync/dn146015
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

Maybe you are looking for

  • Account without payment method

    I've had my itms account for a few years now and have been quite happy with how I have used it. Essentially I buy all the tunes and authorise them on my wifes, the 2 kids and the mac in the kitchen. However I figure it's time they all had their own a

  • I'm currently backing up using Time Machine and a Seagate external hard drive, how to do I restore on a new computer?

    I hate to say it.. But I have never backed up!! I have thousands of pics of my son on this mac book, it got wet and NOW I'm backing up (as i type) to a Seagate external hard drive-  I plugged it in, and then Time MAchine launched automatically.  It l

  • How do I connect to and back up to a hard drive on another Mac?

    I have a 1.5 TB external hard drive connected to my iMac. I have it divided into 2 750 GB partitions. I am backing up my iMac to on partition and would like to back my Macbook Pro up to the other 750. How can I do this wirelessly? Thanks.

  • How do I open a spreadsheet in Libre Office?

    I have a new iMac with Maverick 10.9.5, and downloaded Libre Office 4.3.1.2 I want to download spreadsheets from a government website, and always open in Libre Office. I don't want to download in Numbers, export to excel, and export again to Libre Of

  • JDBC Rollback

    Hi Gurus! I have two doubt: I have a process that with a Sender JDBC I do SELECTs and UPDATE to a DATABASE. Then when I select a list of entries, these entries are flagged to not be processed again. 1. If there is a problem when I process these entri