Your views on use of Fusion Intelligence as part of a EBS 11i roll-out?

Hello,
What are your views on use of Fusion Intelligence as part of a EBS 11i roll-out?
Thanks in advance,
Eric

Eric,
It's a great idea to go ahead and roll out any of the Fusion Middleware products (including FI). By doing this you not only move towards a more SOA-based architecture but you are also preparing your environment for Fusion APPLICATIONS which are built on the Fusion Middleware tech stack.
By going ahead and using Fusion Middleware, your transition to Fusion Apps (if you so choose to move in that direction) will be a lot easier.
Chuck Speaks
http://blogs.oracle.com/speaks

Similar Messages

  • OBIA replace Fusion Intelligence

    We installed and configured OBIEE and Fusion Intelligence in our Development and Functional Testing Instances. We are about to go to Preproduction and then to Production Instances very soon with the same setup.
    But Unfortunately we came to know that the Fusion Intelligence replaced by OBIA. Please recommend/suggest the best way of going to OBIA i.e.,
    Do you recommend:
    1) Fresh Installation of OBIA (or)
    2) Upgrading the existing Fusion Intelligence to OBIA.
    Our Current Set up:
    ==============
    1. OS : AIX5L (64 bit)
    2. DB : Oracle 10.2.0.3
    3. Application : Oracle 12.0.4
    4. 10gAS : 10.1.3.1.0
    5.OBIEE : 10.1.3.3.2
    6.Fusion Intelligence : Patch 5999439 [R12.BIS_PF.A] and 6003217.

    Fusion Intelligence sourced from Daily Business Intelligence. BI Applications source from specific EBS base tables. The union of the two may not be precise.
    You will first need to figure out which areas in the Analytic Applications match up with what you used in Fusion Intelligence. Then you will need to create the shell Data Warehouse and configure the appropriate Execution Plans in the DAC. If you still have reporting gaps then you will need to either create new Informatica Mappings and associated DAC Tasks OR. connect directly to the EBS base tables using BI EE and bring that data into the Repository.

  • Oracle Fusion Intelligence patch

    Hi all,
    I want to apply Family pack H for "Oracle fusion intelligence for E-business suite" to our 11.5.10.2 instance. In the metalink doc 406004.1 there is a remark that i am not clear on. it says
    "Note: Although Oracle Fusion Intelligence for E-Business Suite Family Pack
    H (7.4) is a superset of the previous Oracle E-Business Intelligence Family
    Pack G (7.3) in content, DBI only customers do NOT need to apply Oracle
    Fusion Intelligence for E-Business Suite Family Pack H (7.4). Family Pack H
    (7.4) does not provide DBI customers with any additional functionality".
    so what does Oracle mean by DBI only customers do not need to apply this family pack? and that is DBI only customers versus what? what other options do we have?
    can you please shed some light on this and explain the difference between DBI and the other options so that i know if i need this patch?
    thank you for your help
    Ely

    Hi Ely,
    1) where can you implement DBI? is it from inside APPS?
    --> DBI is a set of preconfigured materialized views on various Oracle Apps modules. So yes, DBI is in Oracle Apps.
    2) is implementing Oracle BI EE different than DBI or it's DBI implementation plus some additional content that you call Oracle BI EE?
    --> You can use Oracle BI EE in combination with DBI. Oracle BI EE is your reporting tool and DBI is your source.
    3) is Oracle BI EE implemented from APPS?where?
    --> You can use Oracle BI EE standalone or in combination with Oracle Apps. Oracle BI EE together with DBI is called Fusion Intelligence.
    3) in case i have an oracle application server 10g with discoverer connected to my APPS instance where i have the seeded EUL implemented, does this fit in any of the scenarios (DBI or Oracle BI EE)? do i need this family pack for BI fusion?
    --. You can use Oracle Discoverer as reporting tool on top of DBI. You do not need the family pack for BI fusion in this case.
    Hope this helps,
    Daan Bakboord

  • How not to use Cold Fusion and Java

    Overview
    This write up is intended to give java developers that are
    developing ColdFusion applications some beneficial information:
    things that are not documented.
    Scenario
    The company builds enterprise class web application software
    for fortune 500 companies. It had purchased a CF 7 based product,
    had and existing proprietary J2EE based product, and needed to
    integrate the two while meeting a host of new requirements. These
    requirements were based on delivering a better user experience,
    faster / cheaper integration, increased flexibility /
    configuration, useablily, decreasing maintenance costs, the ability
    to deploy in either install or ASP models. An initiative was
    started to create a new framework that integrated the best of each
    technologies. Tactically, this meant that we were to build a hybrid
    CF and java application: one that used building blocks (decoupled /
    cohesive components) that would allow applications to be rapidly
    assembled, configured and deployed. This made sense on several
    levels, the team was composed of Java and CF developers, the CF
    rapid application development was very productive, there is great
    functionality delivered in the CF platform and initial performance
    tests showed no cause for alarm
    The agreed upon design, based on requirements, and analysis
    by both the CF and Java staff has us using CF in the presentation
    layer, using a CF based MVC, use of CF based web services. The MVC
    was deployed using CFC inheritance for model objects and views made
    use of CF custom tags. The internals of the application, used a
    rules engine, some proprietary java, ORM, and other J2EE
    technology. The initial performance of the system was reasonable.
    We pushed on with product implementation.
    Then it was time to load test the application, and tune it.
    Under load the response times were orders of magnitude slower,
    sometimes the pages even timed out.
    Armed with our profiler, oracle execution plans and we
    charged ahead addressing issue after issue. Note that we took
    meticulous care in tweaking the active thread pool and ensuring
    that our CF setup was tuned for our application. None of the
    observations here are a condemnation of the language; rather they
    are aspects that, when considered together, not conducive for
    building integrated java and CF frameworks that use a structured /
    OO programming practices. Further detail can be provided on
    request.
    CFC inheritance should be avoided - resolution of variable
    scope is expensive even if properly declared.
    Since CF creates a class per method under the covers call
    stacks become very large, especially if used in a loop. This is
    nominally exacerbated by CF calls necessary to set up for the
    method call (String.toUpper()).
    Nesting of loops and if statements should be kept to a
    minimum - the conditional for each lookup of logical operator like
    LT, GT are synchronized. Under load this results in thread waits.
    Jrun has as single thread pool - both http and web service
    requests use the same pool. Under load this leads to thread
    deadlock. There are work arounds, but they are painful.
    Recursion should be avoided - we had a few recursive routines
    and these had to be rewritten.
    Custom Tags - should be used sparingly - each custom tag
    makes a synchronized call to the license server - (This may be
    fixed in CF 8)
    Summary
    In the end we got the performance to reasonable numbers, but
    we ended up moving some code to java (Custom Tags) and getting rid
    of 'good programming' practices (Inheritance, loops, etc), mandated
    proper variable scoping for those things left over. We prototyped a
    sans cold fusion implementation and had an order of magnitude
    improvement in performance and number of requests served per
    second.
    The lesson? Use Coldfusion in its sweet spot: make a query,
    iterate over the results and format for display. Extensive use of
    structure programming techniques or OO CFCs should be avoided: they
    will work but under load - but are better as a prototype. Building
    frameworks in CF? Think twice, no three times, and, if you must, be
    minimalist.
    Text

    interesting aslbert123,
    Not that I doubt you, but could you answer some questions
    about your implementation that was so slow:
    1.) Did you put your CFCs in the application or server scope?
    2.) Were you initializing your CFCs, via CreateObject or
    <cfinvoke>, on every request?
    3.) Are you sure that you were properly Var'ing every
    variable in your methods? (people typically forget about query
    names and loop iterator variables)
    4.) Could you give examples of how your inheritence was set
    up?
    5.) For CustomTags, did you call them the old <cf_tag>
    way or the newer, better-performing <cfimport> way?
    6.) How did you connect CF to Java exactly?
    Thanks,
    Aaron

  • Any online guides to the flavour of SQL used in Web Intelligence?

    Hi,
    I'm new to Web Intelligence and have just seen you can edit the SQL in "SQL Viewer" window.
    My background is in Microsoft SQL (t-sql) so am very competent in this flavour of SQL.
    However, I'm struggling to find a guide to the flavour of SQL used in Web Intelligence.
    Does anyone know any good online resources for the complete SQL language it uses?
    For example, I'm keen to use "Case When" logic that I know well from Microsoft but I can't seem to get it to work here.
    Thanks, Bill

    the "flavor" of SQl depends on the DB against which a particular Universe is created.
    Based on the Universe connection particular SQL definitions will be used.
    If your Webi report is against MS SQL server, then SQL server type SQL is used. If it's ORACLE - it'll be oracle sql....

  • Fusion Intelligence (DBI) content or data model

    Hi all,
    At the moment we are implementing Fusion Intelligence (mainly financial). In order to determine to what extend the pre-build reports / dashboards matches the reports described in the functional design we need to know to what eBS objects the objects in the presentation layer of OBI EE are mapped to.
    Can anyone help me getting a technical model of Fusion Intelligence that is usefull for the goal described above. Any suggestions are welcome!
    Thanks,
    job

    Hello
    It uses the same materialised views as DBI. Therefore, if you have the data model for DBI then you have the data model for Fusion BI. The materialised views are created by request sets in the EBS and i am not sure if documentation exists. Maybe try metalink

  • How to use oracle fusion middleware for integration project ?

    hi all,
    in my projects, customer (a bank) already has many applications (bankend & frontend) that are complicatedly connected. I intend to use oracle fusion middleware to integrate all applications and make adding new applications in the future easier. I have worked through documents in the oracle website but I still have no idea how to use oracle fusion middleware to address the requirement, besides oracle fusion middleware includes a bundle of applications I don't know which one I would need.
    could anyone give me some instructions ? appreciate your help.
    thank very much,

    Hi,
    For this short description of environment, could be ODI is a incredible tool to help you...
    Take a look into my blog that has a lot of concepts and "how to do" instructions.... http://odiexperts.com
    However to try help you, what are the used technologies?
    Where are you from?
    Cezar Santos
    http://odiexperts.com

  • I just planned to install windows 7 on my MBP Mid-2012 using VMware Fusion,so i am bit panic about viruses and malware's affecting through vmware,is there any way to avoid from this??

    i just planned to install windows 7 on my MBP Mid-2012 using VMware Fusion,so i am bit panic about viruses and malware's affecting through vmware,is there any way to avoid from this??

    usamasheikh wrote:
    virus protection in vmware or on my running OS X 10.8.2??plz help me out
    First, you can install Microsoft's Security Essentials in the Win 7 VM and keep it up-to-date. Second, you can turn off Sharing in Fusion's System Settings to keep the VM environment separate from your Mac. Third, you can look into Sophos Anti-Virus http://www.sophos.com/en-us/products/free-tools/sophos-antivirus-for-mac-home-ed ition/download.aspx for the Mac host.

  • Creation of view and use it as internal table

    dear community,
                   My questions is taht i am write a select quary in that data is very huge so that it cant inserted in to internal table(memory size of internal table) so i thing that i create aview same as data base table and when write the select quary use packsize and transfer recoerd ds in that view and use this view in my program
    is above logic can work or not
    also is size of view is greater than internal table memory size.

    Writing the large volume to another table(which a view is just a view of a table or group of tables) is not going to solve the problem.  You still have to select the data from the view(or table).  Like I said in your other threads, you need to read by package size, and do something with that subset, whether it is summaring, or writeing to another system via RFC.
    Regards,
    Rich Heilman

  • I have recently transferred data from my old Mac to my new one. The result was good, but I have 2 users now, whose data I want to merge into 1 single user, so to avoid having to switch from one user to the other to view and use certain files. How to do it

    I have recently transferred data from my old Mac to my new one. The result was good, but I have 2 users now, whose data I want to merge into 1 single user, so to avoid having to switch from one user to the other to view and use certain files. How to do it?

    Here's an easy way:
    Pick the user that you want to eliminate (making sure that the remaining user has administrator privileges) and move all of the data that you want to keep into the Shared folder. Reboot or log out and login to the user you want to keep. Copy all the data from the Shared folder into your account - placing it neatly in folders (Documents, Music, Movies, etc.).
    Once the data is moved, log into the account you want to delete just once more to make certain that you've grabbed all the data you want to keep. Log out and log back into your admin account and go to System Preferences>Users & Groups and delete the 'old' user.
    That should do it.
    Clinton

  • Which Proof Setup view to use?

    When I'm in Photoshop and I go to View>Proof setup... which one should I have checked to make certain I'm getting correct colors etc. for the image I"m working on?  I want that image look the same to me as it's going to look when I send it to the lab for prints or put it on a website or whatever.    I know if it's say a business card my proof setup is on CMYK but if it's portraits I'm working on, should it be Windows RGB or Monitor RGB or what?  Then, if I"m going to save a version for the web should I change that view and if so to what?   The whole thing could drive you crazy!    I"m running Windows Vista 32 bit home premium version and Photoshop CS4.

    lesrenee wrote:
    Oh, my mistake...  I'm not converting them, I'm using "assign profile".
    When I use the "convert" profile there's very little change in the look of
    the image.  What's the difference?
    But you mentioned in your previous posts that you have Photoshop set to ask "what do you want to do" when opening images with mismatched profiles. If that's the case, there is no "assign profile" options there. There you can only "convert", leave as is, and discard profile. You can assign profiles from the Edit menu though.
    Well, so far no one has an idea what exactly you do with your images and in order to understand what's going on, you have to go through the usual process of what you do and pay close attention to each step you are making, take notes, and try to describe it as accurately as possible. Do not tell what you do based on memory because you may not be aware of what exactly you have done.
    "Assign" keeps the original color values but changes the color appearance. For example, it keeps the same RGB numbers of the colors in the file but changes the RGB numbers your video card is using to display these colors, and you see a color shift. This is useful when you have an image without a color profile or wrong color profile and you know what profile describes the color space used for creating the image .
    "Convert" changes the color values but keeps the appearance. The RGB numbers coming from the video card don't change but the color values in the file change. This is the ultimate goal of color management - to make different devices display or produce the same color while changing the color values of the image to compensate for the differences of each device.
    lesrenee wrote:
    ... So what's the reason you use these different profiles for various companies
    if the image looks the same on my monitor??  Is what I'm seeing the same as
    what the printed images will look like?
    Read my explanation of "Convert" above as an answer to your question
    lesrenee wrote:... What about when I get an ICC profile like from Costco and I want to see what it will look like if I send it to them.  Do I convert it to the
    Costco ICC profile or assign it or what?
    MPIX sent me their profile too.  So should I convert it to their profile
    before sending it to them or leave it as a sRGB??
    You convert to that profile. Photoshop will convert the numbers describing the colors in the file in order to match the intended colors to the color reproduction capabilities of the destination device, and by using the profile of the destination device, Photoshop can display colors unchanged or as close as possible on your monitor by using the monitor profile installed in your Windows system.

  • Can the materized view be used here?

    Hi,
    Can I create a materialized view at the database ABC (the materialized view site) using the following query? the regional data (the master sites is located remotely at apj_db, can_db and us_db databases) are pulled in using dblinks?
    select name, dept from emp_table@apj_db
    union
    select name, dept from emp_table@can_db
    union
    select name, dept from emp_table@us_db
    Also which refresh mechanism is the best for this case?
    Thanks
    Liz

    user624700 wrote:
    Hi,
    Can I create a materialized view at the database ABC (the materialized view site) using the following query? the regional data (the master sites is located remotely at apj_db, can_db and us_db databases) are pulled in using dblinks?
    select name, dept from emp_table@apj_db
    union
    select name, dept from emp_table@can_db
    union
    select name, dept from emp_table@us_db
    Also which refresh mechanism is the best for this case?Liz,
    there is a very handy procedure DBMS_MVIEW.EXPLAIN_MVIEW which you can pass your query and it will tell you what is possible and what might be required. I think that materialized views containing UNION can't be refreshed fast (whereas those using UNION ALL might be fast refreshable), but this might depend on your version of Oracle. If you're already on 10g, you can use DBMS_ADVISOR.TUNE_MVIEW to get recommendations regarding the refresh method.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Errror during upload of repository using em fusion  middleware control

    Hi,
    While i am trying to upload the new repository file using em fusion middle ware control by following way
    Log in to the enterprise manager fusion middleware control ( http:// localhost:7001/em ) -> farm_bifoundation_domain -> business intelligence -> coreapplication -> deployment -> repository ->apply
    When i press apply button after browsing the repository file i was stuck with below error message
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDS)
    Timestamp: Wed, 12 Dec 2012 09:00:32 UTC
    Message: 'undefined' is null or not an object
    Line: 68
    Char: 9
    Code: 0
    URI: http://localhost:7001/em/faces/ai/bi/instance?_adf.ctrl-state=us4d295j8_9&target=%2FFarm_bifoundation_domain%2Fbifoundation_domain%2FBusinessIntelligence&type=oracle_bi_instance&ipMsgID=e69c9a30
    Could anyone please help me out to get rid of above concern.
    Thanks,
    Lakshmi kanth P

    Hi,
    Thanks for prompt reply.
    This is the first time i am trying to upload the repository file using em fusion middle ware control. I tried with IE,Firefox,Chrome .Except IE the rest did not give any response when i press apply button and neither fulfill the need. Anyway I am new to bi itself. I was asked to work on obiee 11g .
    Please help me out to upload the repository using EM.
    Thanks,
    Lakshmi Kanth

  • Help for views regarding using Liferay for an already developed project.

    Hi all,
    I don't know if I am posting this question in the right place. If I am then extremely sorry. Guide me to post in right place. I have already posted in Liferay forum but still no reply!
    First of all, let me tell you what I am or my company is intended to do. We have already developed a project using Java, JSP and Servlet. We want it to integrate with Liferay so that we can change logo, css, images, themes or any other UI related component at run time using Liferay admin panel. But backend should be what we have developed. In short, UI of our project is controlled by Liferay but control of data displayed on UI or submitted from UI should be from our developed backend code.
    Now I have a few questions regarding above said approach of fulfilling the requirement:-
    1) What we are trying to do is possible?
    2) Is this approach recommendable for what we intended to do?
    3) Or do we need to develop our project from scratch to fit into Liferay? Like developing portlets and deploying in Liferay or other approach that has been given in Liferay documentation.
    4) What about database integration? We have around 15 columns/fields in user table in database of our project which is completely different from that of Liferay's user table.
    Liferay is a very new for us. We have checked the documentation section of Liferay but still few things like above said requirements and its implementation is not clear. Also, we would like to know in what scenarios/requirements Liferay is useful.
    Eagerly waiting for your views. Any help will be very much appreciated.
    Thanks

    Hi all,
    I don't know if I am posting this question in the right place. If I am then extremely sorry. Guide me to post in right place. I have already posted in Liferay forum but still no reply!
    First of all, let me tell you what I am or my company is intended to do. We have already developed a project using Java, JSP and Servlet. We want it to integrate with Liferay so that we can change logo, css, images, themes or any other UI related component at run time using Liferay admin panel. But backend should be what we have developed. In short, UI of our project is controlled by Liferay but control of data displayed on UI or submitted from UI should be from our developed backend code.
    Now I have a few questions regarding above said approach of fulfilling the requirement:-
    1) What we are trying to do is possible?
    2) Is this approach recommendable for what we intended to do?
    3) Or do we need to develop our project from scratch to fit into Liferay? Like developing portlets and deploying in Liferay or other approach that has been given in Liferay documentation.
    4) What about database integration? We have around 15 columns/fields in user table in database of our project which is completely different from that of Liferay's user table.
    Liferay is a very new for us. We have checked the documentation section of Liferay but still few things like above said requirements and its implementation is not clear. Also, we would like to know in what scenarios/requirements Liferay is useful.
    Eagerly waiting for your views. Any help will be very much appreciated.
    Thanks

  • Oracle Fusion Intelligence for E1 and the old EPM Data Marts

    I just received the latest edition of the "JD Edwards EnterpriseOne: The Complete Reference" book. Chapter 5 deals with Data Warehousing and OBI. This chapter mentions that Oracle has plans to make the old JDE EPM data marts compatible with OBIEE. The new offering will be called Oracle Fusion Intelligence for EnterpriseOne.
    I was wondering if anyone has more information about what this means as far as joining E1 to OBIEE. Does anyone have experience with the EPM data marts from JDE? I've never used them and was just wondering if I could get some specifics on the entire E1/OBIEE concept.
    I've also heard that Oracle is creating some adapters for E1 into OBIEE, so I'm assuming that those are along these same lines.
    Thanks,

    I am now hearing about finance analytics. I am more confused.

Maybe you are looking for

  • When I pull up my Pinterest website, it will not display pictures, only some words. It's like the links are broken.

    When I pull up Pinterest, the pictures on my boards will not show up. It just has some words. It said it may be because my browser was not updated. I was using Internet Explorer and I tried updating to Windows Microsoft 8. That did not solve the prob

  • Photoshop CC on Ativ Book 8

    I recently purchased a Samsung Ativ Book 8 which features a Radeon HD 8770M GPU. I'm getting quite a bit of lag with OpenGL rendering turned on in Photoshop CC (without it runs fine), so I am wondering if anyone else has good or bad experiences with

  • Error generating XML in Apex 4.1.1

    Hi, please, I need your help. I have an XML develped in APEX with this process: declare begin select xmlElement( "iva", xmlElement("numeroRuc",J.RUC), xmlElement("mes", J.MES), xmlElement( "compras", ( select xmlAgg( xmlElement( "detalleCompra", xmlE

  • Is this true about installation disks??

    Is it true that certian OS cd's can only be loaded onto certain Mac's? Ex. Like a installation disk from a emac wont work on a powermac? What do the codes on the disks mean when it says "disk 1" and "disk 2" etc? I aquired a 2002 powermac G4 quicksil

  • Adding new switch in my network including Cisco Prime Infrastructure

    hi all, if I connect new switch to my network, can I let Cisco PI to apply a specific template of configuration to this switch automatically? how can I do that ? thanks in advance