Re-build the existing Oracle 6i chart reports using BI beans.

Hi guys,.

We have some reports of chart of 6i Oracle who are not against the 11g Server Application, so we plan to do it again and I don't understand where to start with, to get an estimate of the work to be done.

First of all, can I use the data visualization components or ADF Oracle BI beans 10.1.2.x (ADF DVT - this seems to be available in JDeveloper 11 g) with Database 11g?

Secondly, what part (such as applications) from the current reports 6i can I use in their development by using BI Bean, whereas the versions above of the BI beans.

If someone has worked on the BI beans / ADF DVT before, please give me your suggestions.

Thnx.

Hello Sona,
BI beans is built in in the report generator.

1 - have a data model will the paper layout
2 - See the graphic on the left icon
3 - click on it and then draw a section in the page layout and the wizard appears
4 - follow the steps in the wizard, and you will get a chart.

Hope this helps, Roberto

Tags: Oracle Development

Similar Questions

  • List of the Standard Oracle Financials Ixr reports

    Hi all

    If anyone knows if there is a list of the Standard Oracle Financials Ixr for Rel12 reports +?

    I tried to search the forum and links to the documentation but somehow came out with very little.

    any help would be appreciated.

    Thank you.
    Nathaniel

    Hi Nathaniel

    Just sent the email right now in an Excel worksheet. Actually I don't know exactly what is the difference (if any) between the RX and Ixr reports. For all I know, Ixr are newer then the RX (when Oracle launched the 9i database). But I'm not 100% sure of it.

    I hope this helps.

    Octavio

  • Building xml in oracle without unnecessary tags using sql

    I wanted to build XML in oracle using sql, I found a way to construction using sql functions after a little research, I am completely unaware of any XML. My query is


    SELECT XMLELEMENT("orderwave",
      XMLAGG
    (XMLELEMENT("order_header",
      
    -- XMLATTRIBUTES(t2.l_name AS "order_number"),
      XMLFOREST
    (
      nvl
    (t2.l_name,' ') as "order_number",
      
    (
      SELECT XMLAGG
    (XMLELEMENT("order_line",
      XMLFOREST
    ( nvl(t1.l_name,' ') AS "label_type",
      nvl
    (t1.l_num,0) AS "lpn",
      nvl
    (t1.l_num,0) AS "sku"
      
    )
      
    )
      
    ) 
      FROM test_table t1
      WHERE UPPER
    (t1.record_type)='D'  
      
    ) AS sap
      
    )
      
    )
      
    )
      
    ) AS HEADER
      FROM test_table t2
      WHERE UPPER
    (t2.record_type) ='H';


    My problem is for using xmlforest, I had to use alias name 'sap' in my query to work and to get xml output. If i am using that, I am getting an unwanted tag 'SAP' around my data which I have to later cut it, which is unacceptable. Is there a way I can get rid of this extra 'SAP' tag without having to cut. The output data is


    <orderwave>
      
    <order_header>
      
    <order_number>order1</order_number>
      
    <SAP>
      
    <order_line>
      
    <label_type>test1</label_type>
      
    <lpn>1</lpn>
      
    <sku>1</sku>
      
    </order_line>
      
    <order_line>
      
    <label_type>test2</label_type>
      
    <lpn>2</lpn>
      
    <sku>2</sku>
      
    </order_line>
      
    <order_line>
      
    <label_type />
      
    <lpn>0</lpn>
      
    <sku>0</sku>
      
    </order_line>
      
    </SAP>
      
    </order_header>
      
    <order_header>
      
    <order_number>order2</order_number>
      
    <SAP>
      
    <order_line>
      
    <label_type>test1</label_type>
      
    <lpn>1</lpn>
      
    <sku>1</sku>
      
    </order_line>
      
    <order_line>
      
    <label_type>test2</label_type>
      
    <lpn>2</lpn>
      
    <sku>2</sku>
      
    </order_line>
      
    <order_line>
      
    <label_type />
      
    <lpn>0</lpn>
      
    <sku>0</sku>
      
    </order_line>
      
    </SAP>
      
    </order_header>
    </orderwave>


      Any help is really appreciated and thanks in advance.

    -- sample data
    with test_table
    as
    (
        select 'H' record_type, 'order1' l_name, 0 l_num from dual
        union all
        select 'H' record_type, 'order2' l_name, 0 l_num from dual
        union all
        select 'D' record_type, 'test1'  l_name, 1 l_num from dual
        union all
        select 'D' record_type, 'test2'  l_name, 2 l_num from dual
    )
    -- end of sample data
    select xmlelement
           (
              "order_wave"
            , xmlagg
              (
                xmlelement
                (
                    "order_header"
                  , xmlelement("order_number", t1.l_name)
                  , xmlagg
                    (
                      xmlelement
                      (
                         "order_line"
                       , xmlelement("label_type", t2.l_name)
                       , xmlelement("lpn", t2.l_num)
                       , xmlelement("sku", t2.l_num)
                      )
                    )
                )
              )
           ) xml_data
      from test_table t1
     cross
      join test_table t2
     where t1.record_type = 'H'
       and t2.record_type = 'D'
     group
        by t1.l_name;
    
    -- output
    /*
    
            
                    order1
                    
                            test1
                            1
                            1
                    
                    
                            test2
                            2
                            2
                    
            
            
                    order2
                    
                            test1
                            1
                            1
                    
                    
                            test2
                            2
                            2
                    
            
    
    */
    
  • Check the installed oracle components are actually used in the database

    I got a new database I have to optimize. So I think to delete some installed components that I think are not be used somehow in the database (IE procedures calls etc.). I see a whole bunch of components as "ODD", 'ORDIM', which I think are not used, but previous DBAs have installed them. So, is it possible to make sure that no part of the database are actually using these components so that I can remove these components. Also, what are your expert comments on it?

    Is it a production or a development environment? If an object is not used then this isn't necessarily a problem (performance wise) unless it is either cluttering up your dictionary or raising concerns regarding the consumption of unnecessary space. Personally, I would recommend that it is preferable to resolve what is to be used / taken of resources. It is maybe once a year report or a few old utility out once a year, the best monitoring, why those things are there.

    If you go down the road of a fall, rather than drop anything immediately block accounts for an agreed period to ensure that the scheme is not used & check all references other schemas of objects in the schema that you intend to drop, potentially of audit to check if they are being called by other patterns / verification dba_dependencies between schemas and objects using a hierarchical query to check the sub-levels.

    There are also quite a few standard Oracle components that are installed by default that have interdependencies and not necessarily be used in the dictionary (control dba_features_usage_statistics)

  • Clear the check box to a report using APEX_ITEM. CHECKBOX

    Hi friends,

    I try to view my report with a checkbox control whose value of the column as "Y" or "n" in the table.
    My query is as below:
    SELECT APEX_ITEM.CHECKBOX(1,advertised,'disabled=disabled;' ||DECODE(advertised,'Y','CHECKED', 'UNCHECKED')) "Advertised Flag"
       FROM xyz;
    Report shows all checkboxes unchecked and UNCHECKED regardless of the value of column ANNOUNCED (Y or N).
    Any suggestions that I am doing wrong in the query.

    Thank you
    Raj.

    Well,.

    1. you have not said that

    2. remove the CASE and you will get all of the disabled.

    3. your code was wrong about the input parameters for the apex_item.checkbox function.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    -------------------------------------------------------------------

  • Change the font color in a report using SQL for APEX 5.0 queries

    Hello

    I'm testing APEX 5.0 in my test environment to see if I can migrate my internal applications of 4.2 to 5.0.

    How can I change the font color in a field based the SQL query? I know how to do it in 4.2, but I can't find the same in 5.0.

    Thank you

    Well, I used to put html tags in the select text, getting the value of depending on the CASE, so I had to change the display column attribute in the report as "Display in text form (space special characters...)".

    I found an old post here: https://tylermuth.wordpress.com/2007/12/01/conditional-column-formatting-in-apex/ and this method still worked for me in APEX 5.0

    Thanks anyway

  • Tutorials Oracle Forms and reports

    Hi all

    I recently started a new job in collaboration with Oracle forms and reports using PL/SQL. I have little or no experience with either, I'm looking for some tutorials online. I found the following on Udemy me begin with PL/SQL - <-moderator removed link as we do to the business side--> but I find it difficult to find some tutorials on Oracle forms and reports. Can anyone suggest where I might find some good tutorials?

    Thank you

    -Action Moderator: removed link to a commercial side. The user don't please add links to commercial messages to any forum OTN in side. -----

    Tutorial Oracle...

    Although the first two of the following links are for older versions of forms, the concepts are still valid for all versions of forms.

    A tutorial on Oracle9i forms and reports

    http://www.holowczak.com/Oracle/dev9i/ iSelfSchooling - Introduction to forms Oracle Forms

    10g: demos, tips, and Techniques

    http://SheikYerbouti.developpez.com/index_en/

    http://www.SlideShare.NET/magupta26/Oracle-Forms-tutorial

    http://www2.cs.uh.edu/~ceick/3480/Customized_Oracle_Forms.pdf - create custom Oracle Forms

    http://www.youtube.com/watch?v=0BBiHvHzPYE - video

    Tutorial for Oracle reports...

    Here's some link...

    1. http://docs.oracle.com/html/B14364_01/title.htm

    2. http://www.scribd.com/doc/3960412/Basic2-Oracle-Reports-10g-Tutorials

    3. http://report10gsanamqa.blogspot.com/2010/08/triggers-in-reports-types-of-triggers.html

    Video tutorial

    http://www.YouTube.com/watch?v=Fum3MJm5yKU

    Hope this helps,

    Hamid

  • Oracle Forms and reports 10.2

    I have the Oracle CD since version 10:

    -Database Oracle 10.2
    -Suite of developer oracle 10.2
    -Tools of BI oracle

    What I want is to run an oracle application forms that we have developed in the past, but I don't have 'Oracle Forms and Reports 10' and I think that the OAS which comes with the BI tools is not enough to run the application forms. Is it? It's supossed that perhaps the server Oracle Forms and reports part is included in the oracle developer suite, but I can't. Do I need a CD full of OAS facility? can I have this version of Oracle Forms and reports

    Thank you very much

    I think that the basic version is still here:
    http://download.Oracle.com/OTN/NT/IAS/101202/as_windows_x86_forms_reports_101202.zip
    (for Windows).

  • ODI 11 G installation to existing oracle/middleware instance

    We have Oracle EPM 11.1.2 and I need to install 11 G ODI. On the prompt to install it asks me to location of JDK.

    Can I use the existing Oracle/Middleware/jdk160_11 which was established to deplore the EMP facility? Or do I have to do a separate installation of the JDK to be used by ODI?

    Thank you

    JTS

    You can use the jdk middleware

  • Addition of wireless routers in series with the existing network

    I have a client who wants to add at least 3 Wireless throughout their existing network routers. The problem is that these routers must be in the same subnet as the existing network. Oh, we use routers Linksys WRT610N. By default, routers set up a new subnet with a DHCP assigned IP of the primary subnet. I was able to change the static WAN IP, but I do not know how to configure the rest. The point of this is that if a user connected via the ethernet cable or wireless signal, they should be able to access the same network resources. I chatted with support, but they are not allowed to help what it isn't is not a "standard" configuration Anyone can shed some light on this subject? I've done this before with another customer, but its been a few years and it's a different router.

    Thank you!

    You don't want a router. You want a wireless access point. You have wireless routers that you do not use as routers, but only as access points. A router by definition routes traffic between several subnets connected to the various interfaces (LAN and WAN). This kind of configuration is not what the WRT is built for and that's why support said you that it is not a standard configuration for a WRT.

    You can use a WRT as simple access point.

    Reconfigure the router via its web interface. Connect a computer to the router first.

    1. set the LAN IP address on a free IP address in the existing network.
    2. make sure NOT to set a static IP address on the type of internet connection.
    3. on the main configuration page turn off the DHCP server.
    4. now save the settings. You will lose the connection.
    5. unplug the computer and one of the numbered LAN ports of wire to your existing network.

    Now you can access the web interface of the WRT to the new LAN IP address. All wired to the other 3 LAN ports and everything wirelessly connected has access to the network directly.

  • What is the best practice?  Use YES or clone of binary oracle from a server used as a build server?

    I joined a new company, and the oracle DBA resident ordered a Linux server as the build server and has installed a 11g (11.2.0.4.0) and a set of 12 c (12.2.0) binaries on it.

    I was tasked to document this cloning method for new installations of Linux binaries.

    Right now, I wonder why not just download the zip file for appropriate operating system files, copy them to the new target server, start a Windows X, run YES and then patch to the newer PSU after...

    Instead, I informed by the holder oracle DBA that the binary oracle cloning and make the config. changes, create directories, setting permissions and scp'ing things, change the oraInventory, oraInst.loc, oratab, etc... is the best way to go.

    I am not convinced.  I've never worked in a company that has had the luxury of $$ to pay licenses core processors to have an installation of the oracle binary on a server only to be used for the installation of oracle on new target servers.

    Oh, and in addition, the use of dbca is discouraged so I'm rather to clone an existing dB from another server...

    Views of the benefits and drawbacks of this approach vs. YES and dbca gui tools are highly appreciated.

    Thanks in advance...

    Install the response file, silent... WTG.

  • ADF mobile application deployment: the Android Dalvik (.dex) file does not exist. (oracle.adfmf.framework.dt.deploy.android.deployers.ApkDeployer)

    Nice day

    I use Jdeveloper 11.1.2.3.0

    I'm getting following error when deploying my first app on the android emulator, please help me solve this problem. The exception log is the:

    [10: 50:12] update Android profile dependencies with FAR profiles created from application projects...

    [10: 50:12]-deployment began.  ----

    [10: 50:12] the target platform's (Android).

    [10: 50:12] early deployment of ADF Mobile 'FirstMobileApp' to Android application using the profile "ANDROID_MOBILE_NATIVE_archive2."

    [10: 50:12] check the State of the Android Debug Bridge server...

    [10: 50:17] Server Android Debug Bridge started.

    [10: 50:17] check a single Android emulator is online and connected to the ADB server...

    [10: 50:17] early deployment of ADF Mobile 'FirstMobileApp' to Android application using the profile "ANDROID_MOBILE_NATIVE_archive2."

    [10: 50:17] analysis of the dependence running...

    [10: 50:17] building...

    [10: 50:17] deployment of 3 profiles...

    [10: 50:17] wrote the Archives Module to C:\JDeveloper\mywork\FirstMobileApp\ApplicationController\deploy\ApplicationController.jar

    [10: 50:18] wrote the Archives Module to C:\JDeveloper\mywork\FirstMobileApp\ViewController\deploy\ViewController.jar

    [10: 50:18] start preparing the package...

    [10: 50:18] check the Application Controller project exists...

    [10: 50:18] checking dependencies of applications...

    [10: 50:18] Validation of the application XML files...

    [10: 50:18] Validation of the XML files in the ApplicationController project...

    [10: 50:18] Validation of the XML files in the ViewController project...

    [10: 50:18] copy of FARs in the application of the Mobile ADF framework...

    [10: 50:18] far from the source of the copy: ViewController...

    [10: 50:18] copy by far the source: ApplicationController...

    [10: 50:18] copy of model Android...

    [10: 50:48] copy of the framework resource files...

    [10: 50:48] copy of resource files java framework...

    [10: 50:57] copy of the common javascript files...

    [10: 51:02] deployment of counting files...

    [10: 51:02] copy of the application image files...

    [10: 51:02] copy of the ADF Mobile configuration files...

    [10: 51:02] .adf files...

    [10: 51:03] copy of file security related to the application of the Mobile ADF framework...

    [10: 51:03] Creation of preferences Android XML files...

    [10: 51:03] creating AndroidManifest.xml file...

    [10: 51:03] Creation of unsigned Android application file...

    [10: 51:31] compile the file of the Android resource identifier...

    [10: 51:33] create file classes.dex Android since the class files...

    [10: 51:33] update of Android application file not signed with content file and .adf DEX...

    [10: 51:33] Server Android Debug bridge closure...

    [10: 51:33] undeployment.

    [10: 51:33] - incomplete deployment.

    [10: 51:33] the Android Dalvik (.dex) file does not exist. (oracle.adfmf.framework.dt.deploy.android.deployers.ApkDeployer)

    Hello

    I found the answer to this error, it's like actually had reinstalled Studio Android, whereby a new directory has been created with the software, called SDK as sdk1. And in my tools-> preferences, path of the plate-shape and tools platform was given as the sdk (old directory). Now, I've updated the path in the new directory as sdk1 and it works fine.

    Best regards,

    Julien

  • How to identify the source file and edit reports in Oracle Sales R12.1.3

    We use R12.1.3 with Database 11g.

    I would like to know - how to change the report.

    --------------------------------------------------------------------

    For example if I want to edit a report in the module INVENTORY existing any report.

    • After the name of the report identify the concurrent program
    • The program contributing to identify the name of the executable file
    • In the executable file name identify the
      • Method of execution: Oracle report
      • Running file: name of the source file for the report
      • Take backup and edit the report and replace the report in the TOP >

    But in the sales module (it is not form based Oracle - I think it is developed on OAF)

    I would like to know how to identify and modify the report.

    According to standard - module sales Oracle provides three report and according to our Advisor to use these three reports, we need to install BI

    So we must find the solution through internal developments

    Hello

    Set the option to profile ' FND: Diagnostics ' to 'Yes' at the level of the user and you will be able to get 'on this Page' link at the bottom of the page.

    Kind regards

    Zahid

  • Hi I am new to Oracle forms and reports I want to know the differences between the Enter query mode and Normal mode?

    Hi I am new to Oracle forms and reports I want to know the differences between the Enter query mode and Normal mode?

    Welcome to Oracle Forms!  Out of curiosity, what do you mean by 'new '?  You are a student or new to an organization that uses Oracle Forms?  Or just play with Oracle Forms to learn something new?

    Let me start by saying that many of your questions designtime can answer by searching in the help of the constructor of the form library.  It's accessible, like most of the other products in the Builder menu > help.

    Regarding your question, ENTER QUERY mode, as the term implies, is when it is in a State where it is accept input for the execution of a query.  When in this mode, there are various restrictions.  Yet once, it will find more details in the Builder Help.  In this case, search help for these two subjects, "SYSTEM." MODE'and "built-ins comments that are not allowed in the input query Mode".  There are many other pages that contain information about the ENTER_QUERY method, but these two should help you get started.

    Normal mode, as its name implies, is when it is in a State of 'normal '.  Basically to do nothing in particular, but also not in ENTER QUERY mode.  In this State, you can move the shape, INSERT, UPDATE, DELETE, documents, etc..

    You will find additional information, as well as a lot of documentation on the product page of forms of OTN:

    http://www.Oracle.com/technetwork/developer-tools/forms

  • How to call Oracle 10 g reports via a button in the form of 10g?

    Hi all

    I am developing Oracle 10 g reports. Reports are run on opening succeeded if I'm running the report through Report Builder IDE individually.


    But I need to call the reports via a button in forms (which is also in 10g).

    I have the impression there is any specific setting required for this?
    Is any required JDK and JRE specific version?

    If there is no document about who can anyone please share with me.

    Help, please.

    Just run a search

    RUN_REPORT_OBJECT

    and look at the notes returned.

Maybe you are looking for