Publish reports migration with graphic functions.

Hi guys,.
I'm working on the relationship between 10g and 11g migration and I have a problem with the reports that contains a chart. They give the following error when I run them against the report of 11g Server (they work very well against the server 10g with on all issues)

The report stopped with the error:
REP-56048: engine rwEng-1 crushed., job Id: 24.

I searched on Google for a solution to fix them, the closer, I found was install Oracle Graphics 6i engine in a House separate from the Oracle, but this has been said for 9i and 10g, you can find that in the oracle document below:

http://www.Oracle.com/technetwork/middleware/reports/graph-FAQ-with-style-094084.html#Q101

Do anyone knows if I can 6i engine install Oracle Graphics in a separate Oracle 11 g House too?, so that they work at least, if not to change those that exist?

Thank you
Sona.

Hello Sona,
Unfortunately installation chart 6i to one OH for 11g will not work. This option is possible as long as 10g as a temporary option during migration to the BI beans new chart features in gr 10, 2 and 11 g.

Reference
http://www.Oracle.com/technetwork/middleware/reports/graph-FAQ-with-style-094084.html

Migration Oracle Graphics graphics 6i

How can I migrate my Oracle graphics cards to the new chart format in reports of Oracle9i or Oracle10g reports?

Oracle9i Release 1 go, graphical reports from Oracle was desupported. Reports of Oracle9i and Oracle10g use BI beans to generate graphs. Because of the underlying technology, there is no way to direct migration of Oracle Graphics to the bean BI graphing functionality. Therefore, the user will need to rewrite all their new graphics with the graphic Wizard in Report Builder.

Top of Page

Can I still use my Oracle Reports Developer 6i existing reports with graphical charts Oracle Oracle reports?

As stated in the declaration of the Oracle reports, Oracle Graphics is no longer ships with Oracle Reports. However, as part of the migration route, you can still run Oracle Oracle reports graphic graphics if you install Oracle 6i graphics engine in a separate Oracle home. You must only maintain graph Oracle 6i as a temporary measure while redesign you your new charts using the chart wizard. For more details on configuring Oracle to use Oracle Graphics 6i, see Migration of graphics in the Oracle9i Application of Oracle9iAS version 1 (1.0.2.2.x) Server Migration manual version 2 (9.0.2).

Top of Page

Can I change or add diagrams of 6i, Oracle Graphics to my reports with Oracle9i reports or reports from Oracle 10 g?

N ° you must have a separate installation of Oracle 6i graph generator to change your existing graphic Oracle 6i graphics since Oracle Graphics is not delivered with Oracle Reports. We strongly recommend that you migrate your cards to the new standard in the Oracle reports.

Thank you, RZ

Tags: Oracle Development

Similar Questions

  • How to display BI Publisher reporting dashboard with a quick dash common to all BEEP reports

    Hi gurus,

    My version of BI Publisher is 11.1.1.12.

    I have 10 BI Publisher reports, all have common guests.

    I want to place every 10 BI publisher dashboard analytic reports and all reports BI Publisher must be invited to dash quickly. (Start date and end date)

    For Ex: We have the start date end date guests and common to all BI Publisher reports.

    How do we build this type of dashboard?

    Please suggest.

    Thank you

    Kathia

    I think I understand: you want to put all 10 BEEP reports one by one on the same page of dashboard.

    If so, create two new guests of dashboard for the start and end dates and make them as text type.

    In the variable of the presentation, you must provide your name of setting BEEP also exactly as it is defined in the BEEP data model, which will open a link between the BEEP and OBIEE.

    Once done, you can drag and drop your guest of dashboard as a first leg on your dashboard page.

  • Reports REP-34551-Graphics error

    We are the upgrade for R12 11.5.9.When reports migration with graphics (developed on reports 6i), he said: "" REP-34551: Oracle Graphics Graphics: is obsolete. ' "
    We tried the action posted in ID 471197.1 but nothing works.

    Please suggest.

    Thank you and best regards,
    Praveen

    Hello
    Make sure that you apply the last group of patches Developer 6i before the test. If you see this pop-up message in report designer that is expected.
    This is to provide a reminder that "you use a feature of the old version which is frowned upon in the current version of the report generator." It is a message construction and there is no configuration to pass.

    It is recommended that you migrate the old graphic 6i to the new graphic format.
    Reference
    http://www.Oracle.com/technetwork/middleware/reports/graph-FAQ-with-style-094084.html#Q101

    Best regards, RZ

  • How to hide URLS in BI Publisher report

    Hello

    I joined BI Publisher reports at the apex. I call the BI publisher reports through javascript.
    so, when I click on the "print" key on my apex page, it calls the javascript function and a pop up appears with the required report.

    My problem is when the pop up comes it comes with the url, the title of the page, the toolbar, but I don't want those things.i simply want the pdf file is displayed.

    Thanks Robert

    Published by: user8517953 on April 8, 2011 01:43

    Have you tried the option & _xpt = 1? This should make the entire document.

    Thank you
    BIPuser

  • Problem with graphics card

    Hello!. I have a problem with my laptop. So I know that when I bought my laptop it has an AMD HD 3450 graphics card but in dx diag, it shows that I hava a Mobile Intel (r) 4 Series Express Chipset Family and I don't know why. Could you please tell me why it doesen't recognize the graph of amd or at least if intel is better than amd, and in this case can you tell me the model intel please.

    Answer as soon as possible. Thank you!

    Hello @CrazyWolf ,

    To get your question more exposure I suggest you post in the trade forums since it is a commercial product. You can do to commercial Forums.

    Even if it is a Commercial, Switchable Graphics function product allows you to switch between the use of the graphics card Intel and a discrete graphics like AMD controller in a computer. For example, you can switch between the battery life improved graphics Intel when running on laptop battery power and performance capabilities of the graphics controller while the laptop is plugged into current alternative. Your laptop automatically goes to the Intel graphics card if the computer switches to battery power, or he can pass to the discrete graphics if the computer is plugged into current alternative. Some computers use third-party software to perform the switch.

    I hope that would explain it.

    Thank you.

  • Resizing of bitmaps with Graphics.drawTexturedPath - bad ratio

    Hello

    I used to resize bitmap images (to have the similar physical size on different phones) in my project with the following code - found in this thread:

    Without creating an encoded image bitmap image resizing

        public static Bitmap resizeBitmap(Bitmap image, int width, int height)
        {
            int imageWidth = image.getWidth();
            int imageHeight = image.getHeight();
    
            // Need an array (for RGB, with the size of original image)
            int rgb[] = new int[imageWidth * imageHeight];
    
            // Get the RGB array of image into "rgb"
            image.getARGB(rgb, 0, imageWidth, 0, 0, imageWidth, imageHeight);
    
            // Call to our function and obtain rgb2
            int rgb2[] = rescaleArray(rgb, imageWidth, imageHeight, width, height);
    
            // Create an image with that RGB array
            Bitmap temp2 = new Bitmap(width, height);
    
            temp2.setARGB(rgb2, 0, width, 0, 0, width, height);
    
            return temp2;
        }
    
        private static int[] rescaleArray(int[] ini, int x, int y, int x2, int y2)
        {
            int out[] = new int[x2*y2];
            for (int yy = 0; yy < y2; yy++)
            {
                int dy = yy * y / y2;
                for (int xx = 0; xx < x2; xx++)
                {
                    int dx = xx * x / x2;
                    out[(x2 * yy) + xx] = ini[(x * dy) + dx];
                }
            }
            return out;
        }
    

    My problem with the code was that it was quite slow - larger images would take almost a second (!) on the older phones (8830) scale.  It did not prevent UI - I have the code running in a separate Thread - but it has considerably delayed showing the image on the screen.

    Recently, I started to experiment with Graphics.drawTexturedPath and I really like this method.  However, I found a weird problem while reducing images.  For example, I need to put a picture of 48 x 48 up to 42 x 42.  The most important parameters for the scale are dux and dvy (of the four walk coordinates vector only these two are zero).  So now my code object looks like this:

    XYRect area = getExtent();
    // ourBgImage is the unscaled Bitmap - our background image
    int imageWidth = ourBgImage.getWidth();
    int imageHeight = ourBgImage.getHeight();
    int[] xPts = {0, 0, area.width - 1, area.width - 1};
    int[] yPts = {0, area.height - 1, area.height - 1, 0};
    int dux = (int) ((((long) imageWidth) << 16) / area.width);
    int dvy = (int) ((((long) imageHeight) << 16) / area.height);
    // Keep aspect ratio and make image fit fully
    dux = dvy = Math.max(dux, dvy);
    g.drawTexturedPath(xPts, yPts, null, null, 0, 0, dux, 0, 0, dvy, ourBgImage);
    

    which is a little shorter and much more fast-work (especially on older phones as 8830).

    However, the image is truncated on the right and down - looks like two pixels are missing on one of these two parties.  This was not the case with the old algorithm. I am specifying all the wrong settings?

    Final nail in the coffin of drawTexturedPath:

    I decided to check how drawTexturedPath resizes checkerboard (mainly the scale down).  And the results are pretty ugly - it seems to use the algorithm "nearest neighbour" without any means.  The project with which I tested it is attached.  Once you have it running, use Alt + move to shrink and Alt + down to stretch.  Observe the results.

    The decision is, of course, to remove this method and resize Bitmaps the old way

  • G62-b45em problem with graphics card

    First of all, my English is not so good, sorry about that.

    I use Windows 8.

    I have a problem with my graphics card, it does not start. I mean the ATI Radeon, you can see here exactly witch.

    I downloaded the driver from this page, but I think that it will not match.

    Here is a screenshot with the error I found in Device Manager. If you would like more information I can provide you with just tell me.

    Hello Nocar.  I understand that you are experiencing some difficulty getting your video driver works correctly in Windows 8.

    This error means that the device cannot start because of not having the right driver.  I looked and it doesn't seem to be an official driver of this material.  However, many users have reported success with installing the Windows 7 drivers in compatibility mode.  You should take a look at this thread who has posted one of my colleagues.  It is about a possible solution for switchable graphics to work in Windows 8.

    I hope that the thread is useful.  Let me know the result.

    Have a nice afternoon!

  • Can anyone help with my function please?

    Hi all

    I created a function and I was wondering if someone could take a look and help me with a particular problem, that I am experiencing. The function is shown below. It works fine, but I get the following error:

    The method call failed because [System.Object []] does not contain a method named "op_Division.

    D:\SR\WindowsPowershell\Modules\SRvSphereTools\SRvSphereTools.psm1:875 char: 13

    + $VMprops = [ordered]@{'Name' = $vmview.] Name;

    +             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    + CategoryInfo: InvalidOperation: (op_Division:String)], RuntimeException

    + FullyQualifiedErrorId: MethodNotFound

    Now, I know when I get this error whenever I enter a virtual machine name that has a suffix. Which means that I will enter a virtual machine as a 'Server' name and it relates very well again. When I enter a name such as "server_' it relates with the above error again.» I also noticed if I go in $ server he reports again with the name shortened to the server. Is it something to do with my input variables, do not deal with the prefix. I wouldve thought that he would bring back ' the two inputs to the output.

    As usual any help would be MUCH appreciated.

    Thank you

    Munster99

    Function Get - xVM {}

    < #.

    . LOGBOOK

    Gets the IMPORTANT details for a virtual computer

    . DESCRIPTION

    Gets the relevant information for a virtual machine

    . PARAMETER vmname

    An object 'vSphere VM' or a 'string. '

    . ENTRIES

    Input object Types\\

    [VMware.VimAutomation.ViCore.Impl.V1.Inventory.VirtualMachineImpl] or

    [System.String]

    . EXAMPLE OF

    PS > Get-SRVM - VM1, VM2 VM...

    . EXAMPLE OF

    PS > Get-Content C:\VMs.txt | Get - xVM | Export-csv c:\VMResults.csv

    . EXAMPLE OF

    PS > Get - xVM server | Export-csv c:\VMResults.csv

    You can send an a vCenter Server virtual computer object through the pipeline.

    . NOTES

    Version: 1.0 - the first project

    # >

    [CmdletBinding()]

    (PARAM

    [Parameter (mandatory = $true,)]

    ValueFromPipeline = $true,

    ValueFromPipelineByPropertyName = $true,

    Position = 0,

    HelpMessage = "Please enter the VM name")]

    [ValidateNotNullOrEmpty()]

    [Alias ('Name')]

    [PSObject []] $VMName.

    [Parameter()]

    [switch] $ShowWindow

    )

    BEGIN {}

    $OutputObj = @ () # output initialization object array

    }

    {IN PROCESS

    {Foreach ($VM to $VMName)

    $VM Write-Verbose

    $VM Write-Verbose. GetType(). Name

    If ($VM. GetType(). Name - eq 'string') {}

    $vmview = get-View - Viewtype VirtualMachine-property name, summary, reviews, filter-Config @{'Name' = '$VM'}

    If (!) (($vmview))) {}

    Write-Warning "$VM is NOT a virtual machine.

    Continue

    }

    } # If

    ElseIf ($VM - is [VMware.VimAutomation.ViCore.Impl.V1.Inventory.VirtualMachineImpl]) {}

    $VM Write-Verbose. Name

    $vmview = get-View - Viewtype VirtualMachine-property name, summary, reviews, filter-Config @{'Name' = '$VM'}

    } else if #.

    #---Insert Get code here

    $VMprops = [ordered]@{'Name' = $vmview.] Name;

    "ToolsStatus" = $vmview.guest.ToolsStatus;

    'CTKEnabled' = ($vmview. Config.ExtraConfig | where {$_.key - eq "ctkenabled"}) .value;

    'vCPUs' = $vmview.summary.config.NumCpu;

    "vCPUsPerSkt" = $vmview.config.hardware.NumCoresPerSocket;

    'RamGB' = ($vmview.summary.config.MemorySizeMB/1kb);

    'IP' = $vmview.summary.guest.ipaddress;

    'Portgroup' = $vmview.guest.net.network;

    'MAC' = $vmview.guest.net.MacAddress;

    'UuID' = $vmview.summary.config.Uuid;

    }

    $Obj PSObject = new-Object-property $VMProps

    $OutputObj += $Obj

    } # foreach VM

    } foreach process #.

    {END}

    Write-Output $OutputObj # exit EXIT pipeline objects

    }

    }

    If the Get-View Filter parameter returns more 1 object in these cases?

    Remember that the filter uses a RegEx expression.

    Try the filter like that

    $vmview = get-View - Viewtype VirtualMachine-property name, summary, reviews, filter-Config @{' Name'= "^ $($VM) ' $ '"}

  • How to print barcodes in Oracle XML Publisher report

    Hello

    We have a report of rdf that prints the bar code in the start page based on a custom procedure of MarkView. It works well with Oracle Reports.

    But given that this report was a matrix report, we change it a linear relationship by Oracle XML Publisher report.

    We have every possible thing in the new Oracle XML report... But we are not able to print data from barcode which is BLOB in the XML report...

    Can someone help me on this? We have dates UAT at the corner...

    We have a RTF model.

    Help as soon as possible.

    Thank you

    AFA

    Hello

    I even referring to this blog.

    How to create a report with a field of image (.jpeg). Maniacs Oracle & #039; Notes

    The bar code is original

    Thank you and best regards,

    AFA

  • BI Publisher reporting Plugins OEM

    Hello

    Does anyone know of an OEM available 12 c Plugin which is bundled with BI Publisher report?
    I want to see a sample of the reports BI Publisher to a plugin?

    Thank you

    The chargeback and consolidation Scheduler plug-ins provided with BEEP reports.

    You can find this form useful cast as well:
    https://Apex.Oracle.com/pls/Apex/f?p=44785:24:3270973984787640:24:P24_CONTENT_ID, P24_PREV_PAGE:6003, 24

  • Session ends not with StructClear function

    Normally, if you want to delete a session we do with StructClear function. But I don't see that it does not end in a user session because the same CFID and CFTOKEN values exist once we've cleared a session. This means so that it is not really ends a session. right?. But if we are expiring these cookies (CFID and CFTOKEN) values then we can see new values for these cookie variables. Here force us coldfusion to new values for these variables cookie but actaually there neither expired nor onSessionEnd() handler has been invoked.

    So my question is how effectively ends the session. But it won't work if we use StructClear function because it erases a logical business identifier as reported in your business logic.

    Anyone have any ideas on that.

    Suppose that you set your session timeout to 2 minutes.

    When you visit the page, you start a new session, CF generates a CFID/CFToken and SENDS that back to you in response to your first request.

    When you visit a page before the session, your browser sends the CFID/CFToken with demand, CF sees this, check the this is a live session and does not issue you a new.

    If you wait 2 minutes of a session timeout, CF kills the session, but not FACT NOT to MESS with your Cookies.  It doesn't matter, because they are invalid anyway.

    When you make a request, you send the CFID/CFToken now old, CF sees that it is not correlated to a live Session and generates a new CFID/CFToken it sends to you now and you update the cookies with the new values.

    A session expires on the server is NOT because ColdFusion deletes the cookies from the user's browser.  It States only that "for this combination CFID/CFToken, the session no longer exists, so let me generate a NEW session for you and send you it is CFID/CFToken to correlate your visitor to the new SESSION scope.

    In the meantime the timeout and check your cookies should show the last cookies you had when you request.  Nothing new.

    In your onSessionEnd() method, it will BE the old values because when the session expires, this method gets a COPY of the scope SESSION and APPLICATION, (the SESSION just expired) and it's the old data CFID/CFToken.  CF performs as one might expect.  What you trying to do?  I think that the problem here is that you don't understand how work sessions.

    A SESSION that CF is when he takes a cookie CFIF/CFToken provided the user request and checks to see if it is valid.  If so, then all the variables stored in the SESSION scope are made available for the processing of this application.  These cookies act as a means of your browser, say who they are.  By default, Session values are stored in RAM.

    When you do not apply for an amount of time specified in the THIS.sessionTimeout value, CF mess with cookies on your computer.  He says simply.  "Hey, these variables that I wanted for the SESSION which was for CE CFID and CFToken THIS, well, delete them.  The session has expired.  The browser will not see anything different either until he makes another request.

    When you make a request, once again, your browser provides CF CFID and CFToken cookies, but this time CF says ' Hey, that the session has expired, so I'll make a new one for you (lights off the coast of the onSessionStart() method) and he referred to a new CFID and CFToken cookie to the user who now matches the new session.»  A session that will stay alive as long as the user makes requests in the specified time-out period.

    If you have deleted your cookies, the SESSION would still be ALIVE, but it would simply be inaccessible, and after the time-out value, SEE it would expire.  But if you have deleted your cookies, to present a request to the server, we're no. CFID/CFToken cookies sent, so CF would create a new session for you and will send you a new CFID/CFToken.

  • BI analysis and creation of interactive reports and published reports

    Hi all

    all first of all maybe this very absurd question.

    I use bi publisher and write the report. now I need bi web service. I can web service with analysis and interactive reporting, but I can not with published reports. is this possible? and what is analysis of the fundamental difference between the reports (I have no store). pls help me...

    Sorry for the bad English

    better compliance

    Hello. Yes, you can run reports to BI Publisher using webservices.
    Documentation, explains how to:
    BIP11g: http://docs.oracle.com/cd/E21764_01/bi.1111/e18863/toc.htm
    BIP10g: http://docs.oracle.com/cd/E12844_01/doc/bip.1013/e12188/T421739T524310.htm

    Also, take a look at this blog of my friend Kan:
    http://bipconsulting.blogspot.com/2010/04/how-to-run-report-with-bi-Publisher-Web.html

    Concerning
    Jorge
    p.s if this answers your question please mark my answer as * "Correct" * or * "useful."

  • MovieClip sprite vs drawing with graphics

    Hello! I have a program that dynamically draws a polygon anywhere where the user clicks on the screen. (using lineto, moveto) However this polygon is always behind the other symbol of objects on the screen even if his last added in the childlist is. Is there a problem with the depth when you draw symbols vs drawing with lines? How can ensure me that my smart object will display in the face?

    Thank you

    Will be

    OK the problem is that you have the graphics in the main class through the polygon class to draw

    which works great but all the objects in the main class, if they are added before or after the polygon will appear above any line draw

    to work around this problem

    change the DrawPolygon() function do not take a target

    so

    public void DrawPolygon() (x: Number, y: Number, sides: uint, RADIUS: Number, angle: number = 0): void

    adjust the call to this function in hand in the appropriate form

    then in DrawPolygon() instead of references to target just replace them with graphics this will draw on the contrary to the purpose of polygon graphics

    Note You can put calls Graphics.Clear and graphics.lineStlye early DrawPolygon() so

    We can then remove the clear and graphics.lineStyle calls in your main class

    hope that makes sense

  • With the help of NumberFormatter with graphics

    I try to use the NumberFormatter with graphics (with the HTTPService data source)

    The numbers are used for the x-axis or the linear axis, coming from an XMLList, i.e.

    "< displayName ="Project"xField="@hours mx:BarSeries ".

    How can I put a version formatted for @hours instead of just raw unformatted numbers? For example I want to insert a comma to show '12 000' instead of '12000 '.

    I have figured out how to make a function to format / change string variables, for example names etc., in a certain measure, but cannot get the numberFormatter to work.

    I created this function:

    < mx:NumberFormatter id = "numForm" useThousandsSeparator = "true" / >

    But I can't understand how to integrate it into the numbers in my DataGrid or on my paintings.

    I found a few web examples covering NumberFormatter...

    http://livedocs.Adobe.com/Flex/3/HTML/Help.HTML?content=charts_formatting_13.html
    http://livedocs.Adobe.com/Flex/3/HTML/Help.HTML?content=formatters_4.html
    http://blog.flexexamples.com/2007/12/13/rounding-numbers-in-Flex-using-the-NumberFormatter - class.

    .. but they are not access data from external sources, and I can't adapt the code for working with graphics.

    Any help would be much appreciated.

    M.

    This site is a good example to do it in a datagrid

    http://blog.flexexamples.com/2007/08/20/formatting-a-Flex-DataGrid-control-using-a-custom--Convertisseur element.

  • Display parameters of BI Publisher report

    My BI Publisher report has parameters of date range (: startdate and: enddate). I want to display the date range in the upper part of the report. Please tell me the details of how this can be done. Thanks in advance.

    Your xml file has these settings? If not, you can create another model of data with sql choose: startdate,: double enddate and select 'concatenated SQL Data source' at the data model level. Then in your RTF, you can simply drag in these areas.

    Thank you!

Maybe you are looking for

  • 'i' t440 LED

    I just noticed that my friends Thinkpad Edge, the 'i' to 'Thinkpad' lights on the cover and on the surface of the laptop under the keyboard. But on my T440, he still always lit on the lid. Is it meant to be like this, or is my broken LED?

  • too big screen size

    Hi, I have connected my laptop to my 42 '' tv last night, and when I turned it back on this morning internet page explore flowed behind the bar at the bottom of the screen. It seems as if the screen size is large. I changed the resolution of all diff

  • Disable the scroll/zoom in app playbook webworks

    I searched for a while, but I can't find a way to block the application in place, disabling double tap/pinch to zoom and scrolling... Since webworks offers the possibility to create full blown using web technologies, it is a very important feature. P

  • How to test DTMF to the unit

    How to test the sequience DTMF #X #2 in the unit. I have personal assistant on the system and when I send voive mail it says "I don't recognize that as a valid entry" unit is integrated with Domino.

  • Change the display language in Windows 7 Home Premium

    I live in Austria where German is the language spoken, and I have a German keyboard, because I need these German characters.  Yet, it's much easier for me to research how to solve problems on the PC in my mother tongue.  The problem is that I have af