Report Designer 2.5 and Richwin

I have installed Developer2000 (forms 4.5 and report2.5) and developer 6.0.
After i install richwin, i find that the report 2.5 would be terminated automatically when i double click the layout on a already built report.
Can any expert tell me what's going on.
null

hello,
oracle reports 2.5 is a very outdated and no longer supported version. obviously the installation if richwin has (badly) interacted with your developer installation, possibly a DLL incompatibility.
regards,
the oracle reports team
null

Similar Messages

  • Report Designer - Layout height and width

    Hi Experts,
    Is there an option to adjust the report designer layout height and width? I am able to adjust the individual row and column height. I have a report designed in report designer which will have only 5 rows. when I execute this web template the report item is displayed in one entire page instead of only 5 rows.
    How can I control/adjust the page size in report designer? Is this possible?
    Thanks,
    Gnana

    Gnana,
    are you starting the report from the portal directly, or do you have it embedded into a web template?  As the Report is a web item, you can set the size of the item.
    At first I was considering posting the reports directly to the portal, but there are some things that I don't like with how it handles them - for example if you have a report based on the query view, when you post it directly to the portal it will execute it with the saved variable values before you can change them.  Thus, I have to put it into a web template and set to prompt for variables at the beginning.
    Thanks

  • Report Designer - error message and variable

    Hi All,
    Who has already experience with the formatted report (Report Designer)?.
    We work with SAP GUI 640.
    I have the following problems with the report designer.:
    1.) If I even execute the report designer, I receive the following error message:
    <b>Web Item Report Error
           Error while processing the dynamic report section with the name " REP_TEST_1"
           While processing the dynamic report section with the name "REP_TEST_1", this 
           error occured:
           Characteristic SDB2_IO1_F9 not found on axis "ROW" of data
           provider  "SDB2_IO1"</b>
    I`ve already checked the Query and the InfoSet on this the Query was built. There are no mistakes! The InfoObject is in the row.
    With 2 other ones new defined Queries I receive the same error message, only with another info object.
    2.) If I executing the report designer not all variables are available.
         How can I change this?
    I`m thanks for every information and hope that Somebody can help me.
    regards,
    Wolfgang

    Hello Nagesh,
    1.) yes, I have one structure in the column.
    2.) That`s right what you say. This tool is very tricky!
         I`ve never changed the query. If I executing the report designer there show me one
         variable, but I have defined four in the query.
         So, what can I do to solve this problem?
    Thanks for your help.
    Best regards,
    Wolfgang

  • Charts in Report Designer - choosing columns and rows for categories

    Hi,
    I am trying to create a pie chart in report designer from a data provider which has 4 rows and 4 columns. As a default the chart created is using the 1st row for data and the four columns as categories.I want the pie chart  to use the first column for categories and 2nd column for data. How do I change the default chart behaviour?
    Best regards,
    Jai

    Hi Jai,
    take a look at:
    "Class 1 Chart Types" in http://help.sap.com/saphelp_nw04s/helpdata/en/c9/08533b97037963e10000000a114084/frameset.htm
    Link is regarding WAD web item but editing is the same in Report Designer.
    Here you will get information with example query for editing pie charts and what is possible or not.
    like:
    Structure of the Data Provider for a Pie Chart
    In a pie chart, the underlying table has only one row. The values in the columns form the pie segments.
    If the table contains more than one row, the additional rows are ignored when the table is converted into a chart. However, you can define which row is to be used (see below).
    Additional the link describes how to build the query for your requirement.
    Regards
    Andreas

  • Report Designer is slow and does not update info.

    I am working with Report Designer.
    It is running very slow. For first few minutes it runs fine and after that it slows down.
    It is only Report Designer which is slow- Query Designer, BEx Analyzer and other applications are running fine.
    Does anyone have any idea please?
    I also have some other issue with Report Designer.
    I created queries in Query Designer and then formatted in report Designer. Now they want to add one more column or row in query. I add that in Query designer but it does not show in report designer.
    It does show under Query Element but I donu2019t how to populate whole row and column.
    Can someone assist me that how to bring in report designer?
    Thanks

    Bashir,
    make sure that you have the latest SP of SAP GUI installed - it is available in
    service.sap.com/swdc under frontend components.
    Arun

  • Is PaperSize set in the Report Design Machine Dependent and not Universal?

    Hello
    I have been having a problem with setting a Custom Paper size in CR2010 for Visual Studio 2010 VB Net and in the solution that I found, the author says that
    The fact is that crystal report save the information of the format of a report in a non-portable way!
    It saves the "ID" of the format instead of his "Name"!
    The problem is that in Windows this ID is machine dependent.
    I created a Paper size for C6 envelopes, and used that Paper size name when I created a report. But whatever settings I used for setting PaperSize at runtime, the Report printed on the Default Paper size for the printer which in my case is A4.
    Using this code
    Dim doctoprint As New System.Drawing.Printing.PrintDocument()
                doctoprint.PrinterSettings.PrinterName = "YourPrinterName" '(ex. "Epson SQ-1170 ESC/P 2")
                For i = 0 To doctoprint.PrinterSettings.PaperSizes.Count - 1
                    Dim rawKind As Integer
                    If doctoprint.PrinterSettings.PaperSizes(i).PaperName = "MyCustomFormatName" Then
                        rawKind = CInt(doctoprint.PrinterSettings.PaperSizes(i).GetType().GetField("kind", Reflection.BindingFlags.Instance Or Reflection.BindingFlags.NonPublic).GetValue(doctoprint.PrinterSettings.PaperSizes(i)))
                        oRpt.PrintOptions.PaperSize = rawKind
                        Exit For
                    End If
                Next
    from Stefano on http://social.msdn.microsoft.com/Forums/en/vscrystalreports/thread/e16a1630-ad0c-4fda-8351-16e0807072eb I have been able to print on the custom Paper Size Option that I had created
    My question is, if I am making a report which is going to be used by other users on different computers, do I need to use the code to find the correct paper size ID on the Users computer for all paper sizes, both standard sizes and custom sizes?
    For example will myReportDocument.PrintOptions.PaperSize = PaperSize.PaperA4 in the code not work on another users computer if their printer has a Default paper size of Letter? Will I need to use the above code example to find the paper size ID for the user's machine?
    Thank you

    Hello Ludek
    Thank you for the reply
    Not the same query - the two links to the two questions you listed were how to overcome the problem of making the report print using a custom size
    In finding a solution to that, the suggestion was made that the PaperSize stored by the Report is a machne dependent ID - if that is the case then is it correct that when the report is used on a different computer by another user, that the Paper ID size stored by the Report will not work for the second computer and that I need to include code to find the second users Paper ID that matches the paper size that the report requires even for standard paper sizes?
    I understand that custom papersizes may require code to find the Machine Paper ID, but am now not sure if the problem arises for all paper sizes when the report is used on third party computers
    Regards
    David

  • REPORT DESIGNER FORMAT CATALOG BACKGOUND IS BLACK

    REPORT DESIGNER FORMAT CATALOG AND CELLS BACKGOUND ARE BLACK IN COLOUR, DIFFICULT TO FIND CELL ELEMENTS
    ANY SOLUTION TO THIS .
    THANKS,
    NAGESH

    Hello,
    Solution for that is to install the newest availlable Support Package for GUI. I assume that you have GUI version 7.10 and BI SP probably < 3. Please install SP 3 for BI and this issue should be solved.
    Regards, Karol

  • How to open a Character mode report in report designer 2.5

    I am trying to open a character mode reoprt in Report Designer 2.5 and .. getting an error message:
    Waring: Character-mode report 'XYZ' is being opened as bit-mapped report.
    Warning: Page width of report '<report name>' changed to fit the font for a character cell. Might be a consequence of font-mapping.
    Is thier any way to open Character-mode report in Report Designer 2.5
    Report is designed for AR module.
    Thanks,

    ACCOUNTING SYSTEM
    2006-2007 From Date : 01-JUL-06
    Printed On : Friday August 31 2007 11:13 AM To Date : 30-SEP-07
    G A/C. Code 99-99-9999 Description: xxxxxxxxxxxxx H
    -- DOC. # -- -- DATE -Chq/Slip# ---------- N A R R A T I O N -- -- DEBIT -- -- CREDIT -- -- BALANCE --
    Opening Balance: -999,999,999.00 Cr.
    G *** Total *** 0.00 0.00 -999,999,999.00H
    ================= ================= =================
    when i run character mode report in browser then display this output properly
    but sir problem is that when i print the report
    G(use for bold)
    is not working
    means not print in bold format in printer
    same character print G
    do you have any idea when i print through browser to printer G for bold purpose its work to printer ?

  • Report Designer - Error when Loading Report

    Hi,
    We have created a report in Report Designer (7.0) and saved it. When we execute it runs fine. After closing the report and trying to reopen it, the report does not open. It gives an error "Error when Loading Report". Our BI frontend patch is 14.
    Did anyone encounter this issue and is there a solution to this.
    Thanks
    Hemant

    Hello,
    Please go to SE38 -> RS_REPORT_MAINTAIN,
    Type your report name, and DT als "Report Type".
    Goto edit mode, copy&paste this XML into txt file and send it to me ([email protected]). I will check whats going on with this report. Loading should be always possible.
    Regards, Karol Kalisz, BI Development

  • Web design reporter and Report designer is not working in SAP BI

    Hello,
    I am facing JAVA RFC error in Web reporting designing and reporting designer tools in BEx application. For more details please check the attachment in mail  Any one help me for this issue.
    Please check the my system details in the following
    SAP ECC 6.0 EHP 6 with ABAP stack
    SAP BI 740 with ABAP stack
    BO 4.1
    Thanks & regards,
    Surendra

    Hi,
    Check with basis team , either they have configured rfc connection properly or not.
    Refer below also:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0a5216a-349c-2a10-9baf-9d4797349f6a?QuickLink=index&…
    Thanks.

  • Designing the consolidated and line item report for specific material

    Hi
    i have a R/3-report and it run only for 7-materials.That means we need to only those 7-materials in the selection screen of report.
    Then we will get each material corresponding line item details(material no, profit center, variable cost, quanity, price, financial loss(this is calculated based on quantity) , Utility Consumption(calculated based on price, variablecost)  ) in one report.
    Another report will give same for consolidated values of financial loss, utiliy consumption.
    <b>so how can i design the consolidated and lineitem details report for each material.</b> pls let me know
    kumar

    0VENDOR_ATTR - Vendor Master Data Attributes
    0FI_AP_51 - Check Register Line Items
    0FI_AP_4 - Accounts Payable Line Items
    It should be noted, however, that this won't get you everything that you need, so you may have to create enhance one or more of these DataSources and create User Exit ABAP code to get the required data. Also, the 0FI_AP_51 DataSource isn't available if your source system isn't ECC6 EHP3 or higher. If your source system is less than that, you're going to have to create a generic DataSource for the data from the PAYR table.

  • Report Designer - Chart and data

    Hi,
    I have a query section. In one of the cell, I have a chart. I have the data in other columns on the side of the chart. When I execute the report designer, I get the chart and the then the data below on the side. When I create a pdf, the data moves up to the side of the chart. I want the web view look like the pdf view where the data is on the side of the chart. Is it possible? Why is the web view and the pdf view different?
    Best regards,
    Jai

    Moved to BOE Admin forum

  • Delete Crystal Report Design in Report and Layout Manager

    Hi All
    How to permanently delete a customised Crystal Report Design imported in Report and Layout Manager?
    There is no Delete button at all unlike Form Design?
    Kedalene Chong

    Hi Nagarajan
    Please see image attached, already login as superuser but there is no Delete button for imported Crystal Report Design in Report and Layout Manager.

  • Writing and including our own customer data source to Crystal Report Design

    Hi,
    I need to create a Crystal Report based on a locally stored XML and schema. I can do this but the issue Iu2019m facing is that some tags used in the schema and the format is not supported by Crystal. So my plan is to write a database driver which will take our format and then convert it to the format Crystal supports and vise versa. To do this before writing the driver I need to know if itu2019s possible to include my custom database driver source in to the list that is shown in the Crystal Report Designer when selecting a data source to create a report.  Is there such an API available so that I can plugin my data source to Crystal Report Designer? Is this at least possible to do or is there another way?
    Hope you can help me.
    Thanks you in advance.
    Regards,
    Chanaka

    Hi Chanaka,
    Not directly. If you base your driver on OLD DB or ODBC then it will show up in those lists.
    If you are planning on selling a lot of packages then you may want to contact our OEM Sales team and sign up. You'll have more resources to do customized features like this. Not sure if we can but the option is there.
    Thank you
    Don

  • Font issue between Reports Designer and Report Output

    Hi.
    I've succesfully migrated several reports from 6i to 10g (10.1.2.0.2) with and without parameter form. However, I have the following font issue:
    - When report is run from Reports Designer, font is kept.
    - When report is run from a forms module (through rwserver on the same machine, that is not really from an application server, but using Oracle BC4J or Developer Suite enviroment) the report output is different. In this case a bigger font is displayed and occasional truncation happens for some fields.
    The question is: How can i avoid this difference in font behaviour?. Is it font.ali related?. How come this happen on the same machine(Windows XP)? These reports are to be deployed on Linux, where reasonably, and font machine is expected to happen.
    Font used: Arial (Occidental) 9

    this might be an issue with the printer that is associated also, and the permissions to the printer that you might have..
    login to the application server machine and restart the reports server as an admin..try running the reports via the URL..i have a feeling that this issue might be somethiing to do with the permission(s) to the printer from your AS machine

Maybe you are looking for