Issue migrating reports with Graphical features.

Hi guys,
I am working on migrating reports from 10g to 11g and I have an issue with the reports which contains a Graph. They are giving the following error when I run them against the 11g report server(they are running fine against the 10g server with out any issues)
The report terminated with error:
REP-56048: Engine rwEng-1 crashed., job Id: 24.
I have searched on Google, for a solution to fix them, the closest I found was Installing Oracle Graphics 6i engine in a separate Oracle Home, but this was said for 9i and 10g, you can find that in the below oracle document:
http://www.oracle.com/technetwork/middleware/reports/graph-faq-with-style-094084.html#q101
Does anyone know, if I can Install Oracle Graphics 6i engine in a separate Oracle Home for 11g too?, to make them work at least, if not modifying the existing ones?
Thanks,
Sona.

Hi Sona,
unfortunately installing Graphics 6i in a separate OH for 11g wont work. This option was only possible until Reports 10g as a temporary option while migrating to the new BI beans graphing functionality included in 10gR2 and 11g.
Reference
http://www.oracle.com/technetwork/middleware/reports/graph-faq-with-style-094084.html
Migrating Oracle Graphics 6i charts
How do I migrate my charts from Oracle Graphics to the new graph format in Oracle9i Reports or Oracle Reports 10g?
Oracle9i Reports Release 1 onwards, Oracle Graphics has been desupported. Oracle9i Reports and Oracle Reports 10g use BI Beans to generate graphs. Because of the underlying technology, there is no direct migration path from Oracle Graphics to the BI Bean graphing functionality. As such, the user will need to rewrite all of their graphs using the new Graph Wizard within the Reports Builder.
Top of Page
Can I still run my existing Oracle Reports Developer 6i reports containing Oracle Graphics charts in Oracle Reports?
As noted in the Oracle Reports Statement of Direction, Oracle Graphics is no longer shipped with Oracle Reports. However, as part of the migration path, you can still run Oracle Graphics charts in Oracle Reports if you install the Oracle Graphics 6i engine in a separate Oracle Home. You should only maintain Oracle Graphics 6i as a temporary measure while you redesign your charts using the new Graph Wizard. For further details on how to configure Oracle to use Oracle Graphics 6i, please see the Graphics Migration section in the Oracle9i Application Server Migration from Oracle9iAS Release 1 (1.0.2.2.x) to Release 2 (9.0.2) manual.
Top of Page
Can I modify or add Oracle Graphics 6i charts to my reports with Oracle9i Reports or Oracle Reports 10g?
No. You must have a separate installation of Oracle Graphics 6i Builder in order to modify your existing Oracle Graphics 6i charts since Oracle Graphics is not shipped with Oracle Reports. We strongly recommend that you migrate your charts to the new standard in Oracle Reports.
Thanks, RZ

Similar Messages

  • Oracle Reports with graphics for Oracle App R11i 11.5.9 ??

    Hii
    Can i develop Oracle Reports with Graphics ( basic header,footer,logo ) and register it with Oracle Apps R11i 11.5.9 and be able to view it as an end user.
    If yes then how ?
    Regards
    Fahad Hameed

    Hii Guys
    I've developed a report with a basic Header.BMP file and it runs fine on local.
    How will it run on Oracle Apps is the question that i need to find answers to .
    Regards
    Fahad Hameed

  • Problem running reports with graphics in 11i

    Hi,
    I have developed some custom reports (using
    Reports 6i) with graphics charts embedded within them. I would like to display the output from within Oracle Applications 11i.
    There seem to be two approaches:
    1. Invoke the report from Oracle Self-Service using OracleOasis.runReport
    2. Register the report as a concurrent request (with HTML/PDF output) and run it using the concurrent manager
    Approach 1 requires the reports server cgi which I start using adrepctl.sh. Approach 2 requires the concurrent manager which I start using adcmctl.sh.
    The problems start to occur depending on how and from where I start these scripts. The exact problem occurs in both cases.
    If these scripts are started:
    1. From a regular telnet window from a windows NT box
    The reports error out with a REP-3000 internal toolkit error
    2. From an Exceed xterm session and I keep the Exceed session alive (I tried both TrueColors and PseudoColors settings)
    The reports work but there are problems with the output - pie colors do not appear (everything is white, for e.g.), etc.
    3. From the Sun Solaris console
    The reports work fine.
    The problem is that method 3 is not very convenient since every time I bring down the concurrent manager or reports cgi server, I need to walk to a different building (where the Sun boxes are) to start it.
    Method 2 above isn't particularly great either (even assuming I can get it to work) since I need to have an exceed session running all the time.
    Can some one offer suggestions to solve the problem I'm having? Even clues on why method 2 above is not working as expected would be greatly appreciated.
    Thanks,
    - NR

    Problem solved! As long as the xhost + is set on the host machine and some one is logged in, it appears that one can simply set the DISPLAY environment variable to point to the host (even from a simple telnet window) and start the reports server or concurrent manager. Looks like you also have to have REPORTS60_NO_DUMMY_PRINTER set to "YES".

  • Aggregation issue for report with bw structure

    Hi,
    I am facing aggregation issue while grouping reports in webi.
    We have a BW query with 16 values, which we bring to bw as structure. Out of 16, 8 are percentage values (agg. type should be average).
    If we bring the data at site level, data is comming properly. But if we use same query and try sum/grouping( on region level), then percentage is getting added.
    Since it's a dashboard report with lots of filters, we cannot go for seperate query at each level(site, region, zone).
    How we can resolve this.. please give me suggestion.
    Regards
    Baby

    Hi,
    Since we were using structure, it was not possible to produce the required result in BO.
    We change structure to keyfigures and bring all of them in to BO. All the column formulas are now in BO side.
    Now it is working fine.
    Regards
    Baby
    Edited by: Baby on May 10, 2010 11:39 AM

  • Export report with graphics data

    Hi,
    i would like to get a long time period report (about 2 month) of performance data with graphics data, same as data on Performance tab of GridControl, is possible to export report of performance with graphics data instead of ASH report that export only data without graph?
    thanks very much
    Andrea

    Hi
    Good. The information that you need is stored in the MGMT TABLES but the query can change too much if you change your requirements.
    Example
    For example CPU % Utilization GC retrieve information from sar comand
    sar 60 1440
    For IO Waits the GC retrieve information of iostat
    But the performance page in GC is the most complex to build a query, because these information are building but PL executions and perl scripts.
    Other metrics are more easy
    - Blocking session count in database
    SELECT blocking_sid, num_blocked
    FROM ( SELECT blocking_sid, SUM(num_blocked) num_blocked
    FROM ( SELECT l.id1, l.id2,
    MAX(DECODE(l.block, 1, i.instance_name||'-'||l.sid,
    2, i.instance_name||'-'||l.sid, 0 )) blocking_sid,
    SUM(DECODE(l.request, 0, 0, 1 )) num_blocked
    FROM gv$lock l, gv$instance i
    WHERE ( l.block!= 0 OR l.request > 0 ) AND
    l.inst_id = i.inst_id
    GROUP BY l.id1, l.id2)
    GROUP BY blocking_sid
    ORDER BY num_blocked DESC)
    WHERE num_blocked != 0
    The CPU LOAD in the database performance page establish a maximun cpu line that is equal to processors numbers.
    The graphic establish the sessions active for each class and if these are active
    You can read the Enterprise Manager Grid Control Extensibility to check all the mgmt views and the metric reference manual to view the data source of each metric

  • Problem reports with graphics in 11.1.1.2.0 (64 bits)

    HI.
    I have a problem wiith a OFM 64 bits.
    In a 32 bits machine (2003Server), i generate a report with pdf format thats run ok!.
    if compiled the report in 64 bits machine (Windows2008R2), compiled correctly.
    But if i run the report, don´t show the report, and show me the error: " problem to read the document (135)".
    Any idea???,.
    thanks!

    HI.
    I find a partial solution.
    If the param REPORTS_OUTPUTIMAGEFORMAT are GIF value, the pdfs works ok!!!.
    But if the reports has a image, this image have the GIF format too.
    It´s posible that only the gif format are correctly in 64 bits to generate PDFs?????

  • Error when migrating 6i Reports with Graphics

    The client that I am working for is finally trying to migrate their 6i Forms and Reports over to 10g. I have managed to get the Forms to display correctly and correctly call the Reports so long as those reports don't contain graphs.
    I have Oracle Graphics 61 installed in a separate oracle_home. I have updated the default.env file in forms90/server/ to point GRAPHICS6I_HOME to that other directory. Yet, when I try to run the report, I invariably receive an "unable to run report" error. Tracking this back into the Queue Manager, I see that the error is "REP-0074 Failure to run another product using SSL". I can find no documentation on the Oracle site regarding this error code or message.
    I have seen several people on the forums here who have reported similar error messages, but none of them have ever had a solution posted to it. So, I figured I would try again. What is this error, what is causing it, and what can I do to make it go away and run my report correctly?
    Thanks,
    Roger

    hello,
    these issues usually take more investigation than we can do via the forum. pls contact oracle support about this.
    thanks,
    ph.

  • IS it possible to save report with interactive features in a file?

    I know we can save the static report but is it possible to save the interactive features also?
    Like drill down, prompt, etc.
    i can understand that the html or pdf file cannot connect to database to retreive the data but just want to cross check with you experts.
    Please help gurus.
    Thanks,
    Karthick

    Hi all,
    My client is expecting html file with drill down features of the report in it. Is it possible by any way? I Know it is not possible. But if this is not possible i need to move out of obiee to some other product which i dont like to do.
    Thanks,
    Karthick

  • Speed Issue in Report With 1130680 Records Returned

    Hi
    <b>Apologies to the mods if this is in the wrong section, it contains content related to Legacy SDKs (VB6/COM), newer .NET content as well as report design issue.</b>
    I'm using Windows XP SP3 with the database hosted on my machine, an [email protected] with 2GB DDR2 RAM. Neither the client's pc nor their server are as powerful as mine. (It sucks, I know.)
    A report has a speed issue for the end users. The query to the database (SQLS2008) takes 30 seconds and returns 1 130 680 records. And yes, this is the amount of records that need to be returned (the report is a Sales Details report for transactions from 2008/09/01 to 2009/03/31) Running the query through SQLSMS takes the same amount of time whether I execute the statement that the report sends or put the query into a stored procedure. The relevant indices are in place.
    Our application is written in VB6 and uses the CR9 unmanaged runtime. I've written a small little CR application in VS2008 to see if running the report through the CR.NET runtime would make it quicker. I built the .NET app in release mode (with optimization and no debug data) and ran the exe to do the speed tests. The times taken for the report to run:<ul>
    <li>VB6 app - 3:30s
    <li>.NET app - 4:30s
    <li>VS2008 IDE - 2:02s
    </ul>
    I have run the report three times for each app using my cellphone as a stopwatch and the times are reproducible to within two seconds.
    I accidentally ran the report in the VS2008 IDE and it took 2:02s to run. Thinking that the loading of the DLLs in .NET was part of the problem, I added code under a button on the form with the following code:
    CrystalReportsApplication1.Properties.Settings a = new CrystalReportsApplication1.Properties.Settings();
    Assembly aAss = Assembly.LoadFile(a.CR01Engine);
    Assembly bAss = Assembly.LoadFile(a.CR02EntFramework);
    Assembly cAss = Assembly.LoadFile(a.CR03EntInfoStore);
    Assembly dAss = Assembly.LoadFile(a.CR04ReportSource);
    Assembly eAss = Assembly.LoadFile(a.CR05Shared);
    Assembly fAss = Assembly.LoadFile(a.CR06WinForm);
    to preload the assemblies. Unfortunately it made virtually no difference to the running time of the report.
    Suggestion from The specified item was not found. on [this page|Speed issue - internal processing vs views;:
    8. For summaries, use conditional formulas instead of running totals when possible.
    I didn't know that, but we're doing that already.
    I even tried using ngen in a virtual machine for the .NET app, but the time was the same. And yes, I know that ngen is only supposed to aid startup times and that it is actually recommended to let the JIT optimize on the fly instead of ngen optimize beforehand. What really struck me was that even in a VM (using Virtual PC 2007) using 512MB of RAM and only a single core the time was the same.
    My questions:<ol>
    <li>I thought that VS2008 shipped with CR2008 Basic, but according the the references in my project it's CR10. Would the CR2008 runtimes improve the report speed?
    <li>Why do the CR10 .NET runtimes take longer to execute than the CR9 COM runtimes?
    <li>I really, really, really need the .NET runtime to outperform the COM runtimes as our purchase of CR2008 hinges on this. As you can probably guess, we're currently using ye olde CR9.2 from 2002.
    <li>Why oh why do the CR10 .NET runtimes take longer to execute than the CR9 COM runtimes?
    <li>The first level of grouping is a variable which changed the grouping depending on a parameter. I changed it to a field from one of the tables and the times for the apps are:
    <ul>
    <li>VB6 - 2:15s
    <li>.NET - 2:48s
    <li>CR9.2 IDE - 2:19s
    <li>VS2008 IDE - 2:34s
    </ul>I may or may not be able to push it out to the client like this, I don't know. Why did the VS2008 IDE take longer this time? All I did was change the grouping-on-parameter to ordinary grouping.
    <li>Why oh why oh WHY do the CR10 .NET runtimes take longer to execute than the CR9 COM runtimes? Are they just thunkers to the COM DLLs?
    <li>Why does the run in the VS2008 IDE (in debug mode BTW, not release mode) run quicker than both programs?
    <li><i>AndrewJ.requestACookie(Flavour.Strawberry, Flavour.Alternate.ChocChip, RequestMethod.Please); // Hey, it's 5:44PM and I want to go home for the long weekend! </i>
    </ol>
    Thank you and have a blessed Easter!
    Edited by: AndrewJ on Apr 14, 2009 10:04 AM. Changed the CPU, I was thinking of my CPU at home.

    Please re-post if this is still an issue to the .NET Development - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly.
    Bottom line is CR Basic is version 10.5. CR 2008 is 12.2.x.xxxx. Install CR 2008 SP 1 to get .NET support.
    And you can't compare COM to .NET, it's like comparing apples and oranges, both fruits but different flavors.

  • Crystal Reports with Graphical Linking on Multiple Data source

    Hello
    I have a report which uses graphical linking on 6 tables/views which acts as the data source.
    4 are on HANA and 2 on a legacy system.
    Record selection filters are applied to filter data.
    Report's performance is incredibly slow on running for higher date ranges even for less than a month bringing back < 10000 records.
    Please suggest any tips to improve this.
    already tried below :
    Checked no printer option
    Removed Page N of M control
    Changed Order links to pick small tables first
    Crystal Reports 2013 connecting via ODBC to HANA and legacy
    -Jayakrishnan

    Hi Jayakrishnan,
    When you join tables from multiple datasources, CR processes the joins and any record selection criteria locally. This is what slows down the report.
    The only way to speed up performance is to have all the data atleast come from the same database or even better, creating a view that has all the required tables and joins.
    -Abhilash

  • List of Standard QM reports with Graphical Representation

    Dear Users
    Does any one have the list of Standard Quality Module Reports which have Graphical Representations also.
    Regards
    SAM

    Use T.codes QM10 To QM15 transaction codes.
    If you want to know more about QM reports
    Goto SAP easy access-->Information Systems -->Logistics -->Quality management
    here you will get list of standard reports
    Edited by: Sridhar Jayavarapu on Apr 2, 2009 8:42 AM

  • Query issue---Aging report with Net due

    Hello Gurus,
    I am just stuck very badly with a report requirement. The reports has billing doc and item with amount aggregated under different age buckets.
    Ex:
    Bill doc-0000000001;item-10; aged bucket 10-20days-- -100
    Bill doc-0000000001;item-20; aged bucket 30-40days-- 1000
    remember that these are two different rows and columns. The user wants to see the net amount due for 30-40 days i.e 1000-100=900 not 1000.
    How do I achieve this?
    Thanks
    Simmi

    Technically the report is correct, the amount of due 10-20 days is -100 while the amount due for 30-40 days is 1000 where the sum is 900. The only problem is the aging dates and line item number if you get ride of them then you will get 900 which is correct but if you drill down by date the report is correct. There is no way to achieve what they want if you have to display the line item number. Tell them this is correct.
    thanks.
    Wond

  • I need to make a report with graphs, and generate an exit file to word

    I have to do the acquisition for a laboratory and to make inmediately a report with graphics and a constant test about the method of the experimentation

    Probably your best bet is to use ActiveX and control Word from LabVIEW, this way, you can act as you were using Word directly, automating all the steps to create your report. Look for examples in the developer zone, although there will be more examples relating Excel, that can show you the way to act. If you need to use this intensively, i think NI has created a Word toolokit that you can buy.
    For any particular question, just ask.
    Good luck

  • Issues while migration reports to 2012 report server .

    I am stuck in report server related issue . Following are steps and log files details  for migrating report server database from 2005 to 2012 :-
    Back up the encryption key for the report server database.
    Back up the report server database a SQL Server database.
    Back up the report server configuration files.
    Restore the database from the backup created , As temporary database and the main database are depend so they should be restored together.
    Start the Reporting Services Configuration tool and connect to the Reporting Services instance you just installed.
    Configure URLs for the report server and Report Manager
    Configure the report server database, selecting the existing report server database from your previous installation. After successful configuration, the report server services
    will restart, and once a connection is made to the report server database, the database will be automatically upgraded to SQL Server 2012 Reporting Services.
    As we were not able to figure out the password I tried another approach to test if the
    report server works after deleting the encrypted data . I deleted encrypted data.
    Error below is shown in log files when I try to access report manager .
    Log Files Details:-
    at Microsoft.ReportingServices.UI.FolderItems.LoadItems()
       at Microsoft.ReportingServices.UI.SortableItems.Control_Init(Object sender, EventArgs args)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.AddedControl(Control control, Int32 index)
       at Microsoft.ReportingServices.UI.FolderContentsPageCtrl.Control_Init(Object sender, EventArgs args)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.AddedControl(Control control, Int32 index)
       at Microsoft.ReportingServices.UI.SharedArea.Control_Init(Object sender, EventArgs args)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.AddedControl(Control control, Int32 index)
       at Microsoft.ReportingServices.UI.FolderPage.Page_Init(Object sender, EventArgs e)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Page.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    ui!ReportManager_0-1!1e18!07/30/2012-05:17:31:: e ERROR: HTTP status code --> 200
    -------Details--------
    System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: An internal error occurred on the report server. See the error log for more details. ---> Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
    An internal error occurred on the report server. See the error log for more details.
       at Microsoft.ReportingServices.Library.ReportingService2005Impl.ListChildren(String Item, Boolean Recursive, CatalogItemList& CatalogItems)
       at Microsoft.ReportingServices.WebServer.ReportingService2010.ListChildren(String ItemPath, Boolean Recursive, CatalogItem[]& CatalogItems)
       at Microsoft.ReportingServices.UI.FolderItems.LoadItems()
       at Microsoft.ReportingServices.UI.SortableItems.Control_Init(Object sender, EventArgs args)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.AddedControl(Control control, Int32 index)
       at Microsoft.ReportingServices.UI.FolderContentsPageCtrl.Control_Init(Object sender, EventArgs args)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.AddedControl(Control control, Int32 index)
       at Microsoft.ReportingServices.UI.SharedArea.Control_Init(Object sender, EventArgs args)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Control.AddedControl(Control control, Int32 index)
       at Microsoft.ReportingServices.UI.FolderPage.Page_Init(Object sender, EventArgs e)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Page.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    library!ReportServer_0-2!160c!07/30/2012-05:17:31:: i INFO: Call to GetSystemPropertiesAction().
    ui!ReportManager_0-1!1e18!07/30/2012-05:17:32:: e ERROR: System.Threading.ThreadAbortException: Thread was being aborted.
       at System.Threading.Thread.AbortInternal()
       at System.Threading.Thread.Abort(Object stateInfo)
       at System.Web.HttpResponse.End()
       at Microsoft.ReportingServices.UI.ReportingPage.ShowErrorPage(String errMsg)

    Hello Manish,
    I am sorry for my delay.
    As we know, the service pack of SQL Server is free to download and install, and the latest SP for SQL server 2005 is SP4, so that Microsoft recommend that we migrate the service from SQL Server 2005 SP4 to SQL Server 2012. If you still want to upgrade the
    service from SSRS 2005 SP3, we cannot guarantee that all features can work properly, and we did not test it yet. Therefore, I still recommend you upgrade the SQL server 2005 to SP4 if possible.
    In addition, you can refer to the following article on MSDN to see whether it can meet your requirement. It is a general step to migrate the SSRS.
    http://msdn.microsoft.com/en-us/library/ms143747.aspx
    I hope it is helpful to you.
    Regards,
    Edward
    Edward Zhu
    TechNet Community Support

  • Report with grouping issue

    I have a report which have year(2008), Category(0-1,2-3, ALL), product(0,1,2,3,4..), % sales. I group by all the category elements and called it as All, I am not getting the right percentage sales for the Category ALL other wise for 0-1,2-3 i am getting it right. Please advise where i am doing it wrong. please find the blog for a screen shot of my issue.
    http://ravibiblog.blogspot.com/2012/04/report-with-grouping-issue.html
    Thanks,
    RC

    Pl post details of OS, database and EBS versions. Pl see if these MOS Docs can help
    FARXPBSH Failing With "Program was terminated by signal 11" or "Program was terminated by signal 10"          (Doc ID 742729.1)
    Publishing RXAPPYAC: The FARXPBSH Ends With 'Signal 11' Error          (Doc ID 432797.1)
    RXi RX Reports Failing With Program Was Terminated By Signal 10 or 11 Errors After FA Rollup Patch 6          (Doc ID 737963.1)
    Program was Terminated by Signal 11 when Running Rxi Reports          (Doc ID 559425.1)
    HTH
    Srini

Maybe you are looking for

  • Sorting a bundh of child nodes

    Hi, I have a class that reads an xml file, breaks up the node into an object and sorts it according to a particular need. I create a new list of nodes that is sorted the way I want them...that is no problem. the issue I'm having is, how do I remove t

  • What's this icon mean?

    So when this icon shows up on an email in a shared mailbox that email when attempting to froward, tries to forward from the senders address.. any idea why this is?

  • SP19 Import Queue Error: domain used does not exist

    Hi, In order to import support package 19 (KB70019) I encountered following errors: Field KEY: Component type or domain used not active or does not exist Nametab for table /1PYXXFO/SAP_PAYSLIP_____L0001 cannot be generated Field KEY: Component type o

  • AIR h.264 encoding support

    Is h.264 encoding in AIR at the roadmap of Adobe? I know Adobe is working hard on delivering the requested features, and thanks for the Echo Cancellation. It works great. H264 is now in flash player, but can we expect classes H264VideoStreamSettings,

  • Outlook 2013 / Multiple Access /Registry Rights

    Hello, we upgrade our Office from XP to 2013. Let me explain our situation. For Example we have 3 AD user staa99, staa99-1 and staa99-2. Every User is a separate AD user. But know the special feature. All 3 Users work with the same profile and the sa