Oracle EBS and ODI

Hi All,
In future i need to work on Oracle EBS and ODI,I just wondering is it possible to integrate ODI with Oracle EBS for extracting EBS data to Flat file or RDBMS throught ODI.
let me know if it is feasible or not.
Thanks in Advance
Gourav Atalkar

Hi Sutirtha,
Thanks for your quick response, for integrating with Oracle EBS there is no option in Topology Navigator like other technology Hyperion Planning,Essbase and Financial management.
How can i perform the creation of data server and physical schema for Oracle EBS.
Thanks
Gourav Atalkar

Similar Messages

  • Comparison Between Oracle eBS and JD Edwards

    Hi All,
    Is there any site / document / any kind of referference / help on comparison between Oracle-eBS and JD Edwards mainly for Finance and SCM module please ? Need this urgently so any help is appreciated.
    Thanks & Regards,
    Subhra Saha

    Hi,
    Any kind of help plz.
    Regards,
    Subhra

  • Integrating Oracle EBS and ApEx Aplication with Responsibilities and SSO.

    Good day all.
    I am looking forward from getting somebody 's help, the trouble I am facing is described below:
    a) I am currently working on SSO with EBS. I mean, my users can connect and work perfectly.
    b) ApEx is Configured as Application Partner with SSO, and the application we built (it's call PR-Auto)
    is working good under SSO platform. I mean I am able to login using TEST user and password TEST in
    both applications (EBS and PR-Auto).
    c) The thing is that I need to call PR-Auto from one responsibility in EBS;
    Following my setup for the responsibility:
    - I have created a function:
    Name: APEX_FA_PR
    Properties:
    Function type: SSWA plsql
    Web HTML :apps.apex_launcher.launch_fa_pr
    Web Host agent: pls/apex
    - I have created a menu, application and responsibility using the function APEX_FA_PR.
    - I have create launcher package:
    create or replace package apex_launcher is
    procedure launch_fa_pr;
    end apex_launcher;
    create or replace package body apex_launcher as
    procedure launch_fa_pr as
    begin
    /** 110 Is ID of PR-Auto, my app **/
    /** 5 is my home page **/
    f(p=>'110:5');
    end;
    end apex_launcher;
    d) New responsibility shows on EBS menu page.
    e) Click on responsibility, and the page shows 'redirecting to login server for authentication', but
    nothing happens, page goes blank with this url:
    http://fahorromex37.fahorro.com.mx:8004/pls/apex/wwv_flow_custom_auth_sso.process_success?urlc=v1.2~42
    03F9A8A1D696097BEA96499E6B6845E80C14A56DF724C3FFF879578FC734C5E1DEEA9129A4117E62A3676A409528E8EB927AA55
    0EA7B208C34F5A3FDB4472679EDE448F8971966BE9BADD22207FE90BDBA2800E6529F3967A18DEC76DCC17DE21D96A65CA2C424
    319F159CC78ED78E8B99F69F1BA8297A1EECF6AD137A6C3896E1C4E8D5F93874A9A08887D3F95058D33F667D7B785FF0A065B53
    891B8B393DFD24530BD0720150F05DE63F0CD5AFD86F0267BAF4C9CAE8C5AA693B4E488B3776BF43450FD412167B402C962BABE
    A54707043AFA6FBB168B29EDB3BE120FFE0C30683D53283B036E781ABF1A5F7374ADF83463D57D2EE958765B0501CE2B0F4E3DF
    24845A54A1CF02526FA39EF60644ED5A0D9D2A05EBFAD3BD01007D0817135989A4B97D68C92C6E2BA767CFDB0AF188054024BB1
    EFFA7DEC8699BBA7485A349D87BA1C15475927E52110DF56FCC3FD560D2CBBA1C0D7D9D3ADFCDB975CD2
    the address of my application pr-auto is http://fahorromex37.fahorro.com.mx:8004/pls/apex/f?p=110
    f) DBA teams follow instructions from the following documentation
    "Integrating Oracle E-Business Suite Release 11i with Oracle Internet Directory and Oracle Single Sign-On"
    and "Note 261914.1 Integrating Oracle E-Business Suite Release 11i with Oracle Internet Directory and
    Oracle Single Sign-On"
    g) We are using:
    DB: Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    SO: Linux 2.6.9-42.ELsmp
    ApEx: 3.0.1.00.07
    Any help will be greatly appreciated.
    J.O.

    Many Thanks Daniel for your prompt reply.
    Tried to understand the white Paper and your thread but I am still facing problem,although able to Call ApEX page but now i
    want to pass th e session Id where I am stuck.
    MY three functions:
    CREATE OR REPLACE FUNCTION SYMAPEX.apex_authorise (
    p_username IN VARCHAR2
    , p_password IN VARCHAR2) RETURN BOOLEAN
    AS
    BEGIN
    IF apex_validate_hash (p_username, p_password) THEN RETURN TRUE;
    END IF;
    RETURN (FND_WEB_SEC.validate_login@VCSDEV2_QA (p_username, p_password) = 'Y');
    END apex_authorise;
    CREATE OR REPLACE FUNCTION SYMAPEX.apex_generate_hash (
    p_string IN VARCHAR2
    , p_offset IN NUMBER DEFAULT 0) RETURN VARCHAR2
    IS
    BEGIN
    IF p_string IS NULL THEN RETURN NULL;
    END IF;
    RETURN RAWTOHEX(UTL_RAW.cast_to_raw(
    DBMS_OBFUSCATION_TOOLKIT.MD5(input_string=>p_string||':'||
    TO_CHAR(SYSDATE-(p_offset/24*60*60),'YYYYMMDD HH24MISS'))));
    END apex_generate_hash;
    CREATE OR REPLACE FUNCTION SYMAPEX.apex_validate_hash (
    p_string IN VARCHAR2
    , p_hash IN VARCHAR2
    , p_delay IN NUMBER DEFAULT 5) RETURN BOOLEAN
    IS
    BEGIN
    FOR i IN 0..p_delay LOOP
    IF p_hash = apex_generate_hash (p_string, i) THEN RETURN TRUE; END IF;
    END LOOP;
    RETURN FALSE;
    END apex_validate_hash;
    MY Launch Procedure:
    CREATE OR REPLACE Package body OAE_PKG1 AS
    PROCEDURE LaunchOAE1 (application IN NUMBER DEFAULT 101
    , page IN NUMBER DEFAULT 111
    , request IN VARCHAR2 DEFAULT NULL
    , item_names IN VARCHAR2 DEFAULT NULL
    , item_values IN VARCHAR2 DEFAULT NULL)
    AS
    BEGIN
    OWA_UTIL.mime_header('text/html', false);
    OWA_COOKIE.send
    (name=>'APEX_APPS_'||application,
    value=>FND_GLOBAL.user_name||':'||apex_generate_hash@QA_VCSDEV2(FND_GLOBAL.user_name),
    domain => '.orvcsd01.symprod',
    path=>'/');
    OWA_UTIL.redirect_url('http://orvcsd01.symprod.com:7780'||'/pls/apex/f?p='||application||':'||page||'::'||request||':::'||ite
    m_names||':'||item_values);
    END LaunchOAE1;
    END OAE_PKG1;
    MY On Load before headre process:
    DECLARE
    c OWA_COOKIE.cookie;
    a wwv_flow_global.vc_arr2;
    BEGIN
    c := OWA_COOKIE.get('APEX_APPS_101');
    a := htmldb_util.string_to_table(c.vals(1));
    :P111_USERNAME := a(1);
    :P111_PASSWORD := a(2);
    IF :P111_PASSWORD IS NOT NULL THEN
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P111_USERNAME,
    P_PASSWORD => :P111_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':111');
    END IF;
    END;
    I am doing custom authencitaion and calling apex_authorise function there.
    Although I am able to Call the ApEX and able to validate application server password,but moment i try taking help off cookies
    to pass on my application session details to ApEX so that users would not have to login twice,i am gettign the error.
    Second question:
    Do we have any other methos of passing session to ApEX from Application server other than cookies.
    Please suggest.
    Thanks.
    Ravijeet

  • Oracle EBS and BAM

    I am trying to integrate Oracle EBS R12 with BAM, so I created external data source in BAM and it got created successfully.
    But when I try to select the table from this data source in order to create data object, the lov for table name never shown up, it has been busy for a long time in getting table names from this data source and after sometime, its going out.
    I know this may be because we have huge number of tables in APPS schema in EBS.
    Is this the best way to integrate EBS with BAM through external data source or any other suggestible way?
    Regards,
    Suneel Jakka

    Hi Suneel,
    Yes I have seen the same issue with mine too.the problem with because of have huge number of tables in APPS schema in EBS.
    In my case I waited about 21 minutes ,after that the tables got populated, even if got i am not able to select my required table.I tried lot of time I am finally created DataObject.
    after tables got populated I used key board to select tables by using up arrows & down arrows to select Table.
    I think this techniques may useful, be patience you will get!!
    Regards
    Siva Shankar

  • API (interface tables) to synchronize Oracle EBS and outsourced functions?

    Hi,
    Our company is outsourcing the inventory and shipping functions. Now we'll need to synchronize the Oracle EBS with actual shipment data. We have've to use the APIs and keep Oracle tables in sync with the legacy system.
    Which API we can use for Pick Confirm, when we have to do WMS and LPN handling? Or is there some other way (like interface tables) to take care of this issue?
    APIs should be supported with our EBS version 11.5.9. EBS version upgrade is not possible for us now. We'll need info how to implement above issue asap.
    BR Mervi Malmi

    Hi;
    All APIs are listed in Oracle Integration Repository
    http://irep.oracle.com/index.html
    API User Notes - HTML Format [ID 236937.1]
    R12.0.[3-4] : Oracle Install Base Api / Open Interface Setup Test [ID 427566.1]
    Oracle Trading Community Architecture API User Notes, June 2003 [ID 241320.1]
    Technical Uses of Customer Interface and TCA-API [ID 269121.1]
    Pelase also check below:
    Api's in EBS
    Re: Api's in EBS
    http://sairamgoudmalla.blogspot.com/2009/05/script-to-find-oracle-apis-for-any.html
    API
    Fixed Asset API
    List of API
    Re: List of APIs
    Oracle Common Application Components API Reference Guide
    download.oracle.com/docs/cd/B25284_01/current/acrobat/jta115api.pdf
    List of APIs and open interface R12
    Re: List of APIs and open interface R12
    Regard
    Helios

  • Oracle EBS and SOX compliance

    Hello,
    I am new to Oracle EBS
    I would like to know what are the features of Oracle EBS to comply with SOX (Access to data and programs, change control, Operations)
    Thanks in advance

    Have a look at the following notes/links, it may be helpful:
    [Note: 406401.1 - R12 Responsibilities And Roles Based On Business Flows|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=406401.1]
    [The SOX Effect On Oracle Apps Technical Development |http://apps2fusion.com/at/pb/264-the-sox-effect-on-oracle-apps-technical-development]
    [DBA Guide to Understanding Sarbanes-Oxley (SOX) |http://www.integrigy.com/security-resources/whitepapers/DBA-Guide-to-Understanding-Sarbanes-Oxley.pdf/view]
    [Sarbanes-Oxley (SOX)—Impact on Security In Software|http://www.developer.com/security/article.php/3320861]
    [Applications Releases 11i and 12|http://www.oracle.com/technology/documentation/applications.html]

  • Oracle EBS and Hyperion

    Dear Experts,
    We are currently using Oracle EBS 11.5.10.2 and we wanted to implement Hyperion for BI, consolidation and budgeting needs. As you all know that 11.5.10 is now in an extended premium support and we have about 2 years (approx) to migrate to EBS R12.
    My question to all is whether Hyperion implementation should be done before R12 upgrade or we should migrate to R12 and then implement Hyperion. What is recommended what is pros and cons of both the approach?
    Thank you in advance.
    qARS

    Hi John,
    I thank you for your response. I have no idea about Hyperion as such. What is ERPi? What is the conventional method for interface?
    Regards,
    qARS

  • Oracle EBS and OWB question

    Hi,
    I am looking to develop a strategy on how someone can use OWB to do data export/import from/into Oracle EBS. (assumming repository already setup in OWB). Any suggestions?

    In the BPEL cookbook a chapter is written that is using the Oracle Applications Adapter:
    http://www.oracle.com/technology/pub/articles/bpel_cookbook/pravin.html

  • Login issue in both Oracle EBS and database

    My environment
    EBS --> R12.0.6
    Platform -> AIX
    DB Node -> oracledb
    APPS Node -> app1
    Issues:
    On DB Node:
    when trying to open alert log file getting following error against command:
    vi alert*
    ksh: 0403-030 The fork function failed. Too many processes already exist.
    when trying to get connection through sqlplus either from db-node or apps-node getting following error message:
    ORA-12518 Tns: Listener could not hand off client conenction.
    when trying to login application while accessing through URL http://hostname.domain:port getting either blank page or 500 Internal server error containing also message of
    ORA-12518 Tns: Listener could not hand off client conenction
    This is production server and users are not able to use the application. Please guide me to overcome the issue. Thanks in advance.
    Regards,
    M.U.N.A

    Hi;
    What is your maxuproc value? Please check below link:
    http://www.computing.net/answers/unix/aix-problem-please-help/5468.html
    http://www.computing.net/answers/unix/aix-problem-too-many-process/6681.html
    Also be sure you have related prerquest for IAX
    Oracle Applications Installation and Upgrade Notes Release 12 (12.0.4) for AIX-Based Systems [ID 402306.1]
    For tns error check below notes:
    ORA-12518 / TNS-12518 Troubleshooting [ID 556428.1]
    R12 Concurrent Managers Not Starting After Patching or Upgrade Changes [ID 811093.1] << also check referance part
    Regard
    Helios

  • Integrate Oracle EBS and JDE

    Are there any technical references in integrating oracle ERP (HR+Payroll modules) with JD Edward(Financials+Procure to Pay modules).
    Thanks.

    Hi Suneel,
    Yes I have seen the same issue with mine too.the problem with because of have huge number of tables in APPS schema in EBS.
    In my case I waited about 21 minutes ,after that the tables got populated, even if got i am not able to select my required table.I tried lot of time I am finally created DataObject.
    after tables got populated I used key board to select tables by using up arrows & down arrows to select Table.
    I think this techniques may useful, be patience you will get!!
    Regards
    Siva Shankar

  • Cannot copy and paste words between EBS and other applications

    hi,every one
    I can't copy and paste word between Oracle EBS and other applications(such as MSword,excel) on a windows client.
    the version of EBS is 11.59 and jinitiator, 1.1.8.16
    has anyone ever encountered such problem and know how to resolve it?
    thank you in advance
    Message was edited by:
    user466827

    Download the appltop.cer from the APPS server to the local Machine
    Cd C:\Program Files\Oracle\JInitiator 1.1.8.16\bin
    ftp <IP Address>
    bi
    cd /apps/oraprod/prodappl/admin
    get appltop.cer
    bye
    Register that to the local identitydb.obj
    Cd C:\Program Files\Oracle\JInitiator 1.1.8.16\bin
    javakey c <name_it> true (creates a new trusted applet called )
    ( <name_it> in identitydb.obj )
    javakey ic <name_it> appltop.cer (signs the new <name_it> trusted applet)
    ( with the new certificate appltop.cer )
    javakey -l (will display your new trusted applet that has been signed)
    (With the appropriate digital certificate file of the)
    (Instance you wish to connect to. )
    Clear The Browser Cache
    Clear Jcache
    Restart the Browser Session.
    Regards,
    Prasanna
    [email protected]

  • Oracle EBS virtual machine

    Hello,
    I am interrested to test Oracle EBS and evaluate its capabilities
    Is there a virtual machine that hold the whole Oracle EBS and is downladable on the net
    Thanks in advance

    Is there a virtual machine that hold the whole Oracle EBS and is downladable on the netYou can download the software and arrange to do the installation so that you can evaluate it.
    Oracle® E-Delivery Web site
    http://edelivery.oracle.com/
    If you cannot afford the installation, Solution Beacon is providing 11i Vision instance for public access (you need a valid CSI):
    Release 11i Vision Instances
    http://www.solutionbeacon.com/tools_r11ivision.htm
    Release 12 Vision Instances
    http://www.solutionbeacon.com/tools_r12vision.htm

  • How to download Oracle EBS patch to import source file  into FDQM

    Hello Experts,
    I am not able to find patches for importing source file from Oracle EBS into FDQM.Actually I have HFM,FDQM,ESSBASE,Planning,erp,epm,calculationManager in my virtual machine.I didn't Install Oracle EBS
    Please tell me how to import source file from Oracle EBS like Flatfile from HFM into FDQM and share me what I need to install regarding EBS to Import and register the EBS adapters.It's urgent please share asap.
    Thanks in advance.....

    There are not any EBS Adapters for FDM.
    If you are just importing a source file from EBS, you would need to setup an import format to parse the source file in FDm and then assign the import format to the location that will be used to load the target system and run the import process.
    If you are looking to pull directly from EBS, you would need to use ERP Integrator (ERPi) to connect to oracle EBS and then use the ERPI adpater in FDM to pull the data from ERPI into FDM.
    Can you be specific on what you are looking to do?

  • Oracle EBS 11.5.10 Sales Specific Dashboards.

    Hi All,
    After completing a successful load of "Oracle 11.5.10 Enterprise Sales", I expected to get data in the Sales Dashboard. Instead I am getting data in the Supply Chain and Order Management dashboards.
    The Sales Dashboard is giving an error "Table or View does not exist" for the table W_REVN_F. Is this an error or is the Sales Dashboard not meant for Oracle 11.5.10 Sales.
    Is there some document that lists which dashboards will display data for which ETL plans?
    Thanks,
    Nilanshu

    Hi,
    The Sales dashboards in Oracle BI Apps source their data from Oracle Siebel Sales, hence the no data found error.
    View the documentation library for Oracle BI Apps; (http://www.oracle.com/technology/documentation/bi_apps.html)
    In the Getting Started section, there is a document entitled 'System Requirements and Supported Platforms';
    (http://download.oracle.com/docs/cd/E10783_01/doc/nav/portal_1.htm)
    Within that document, refer to the 'Supported Source Systems' section;
    (http://download.oracle.com/docs/cd/E10783_01/doc/bi.79/e10920.pdf)
    This section lists what BI Apps dashboards are available for Siebel CRM, Oracle EBS, and PeopleSoft Enterprise applications.
    For Oracle Sales 11.5.10, only the Daily Business Intelligence (DBI) dashboards are available currently, and the DBI for Sales license is bundled in with your EBS license.
    Hope that helps!

  • Change Capture For Oracle EBS Sources

    Hello,
    I am trying to understand how the change capture process happens in DAC.
    For Siebel sources, I understood that it happens through 'image' tables. And there are some docs/info available on this.
    I am just wondering how this happens in case of Oracle EBS and other sources. I think there is no image table concept with these sources.
    Can anyone point me to some info on this..?
    Many Thanks..!

    Yes, for EBS, PeopleSoft and other non-Siebel sources, the change capture process is usually based on a form of "LAST UPDATE DATE" on the source system tables. This is is usually compared against the "LAST REFRESH DATE" in the DAC for the source and target tables. This can be seen if you look at the Session overrides for the FULL versus INCREMETAL workflows/sessions. Of course, this process may differ based on the nature of the source system. I believe certain sources that do not have a useable "LAST UPDATE DATE" may require a full extract each time. The best approach would be to go through the vanilla ETL code for FULL versus INCREMENTAL sessions.
    if this was helpful, please mark the answer as correct.

Maybe you are looking for

  • Entitlements not getting displayed in Entitlements Tab - OIM11gR2

    Hi Experts, I am trying to provision entitlements to users by requesting entitlements. When i successfully provision entitlements, the entitlement is getting displayed in accounts tab, child form. But the same is not getting displayed in entitlements

  • I can't log into my iTunes account on my Mac Mini

    I was able to log in with my password just fine, here, and on my iPhone and iPad, but every time I input my password into iTunes on my Mini the little log in window reloads. What's going on? Is anyone else having this problem today?

  • Unplanned depreciation Posting

    Dear All, My client is following Jan -Dec. 1.They have captilized asset on 31.12.2006 but for 2007 they have not calculated any depreciation on that asset ( wrongly they have specified Dep start date  01.12.2007) they want to charge the depreciation

  • How can I convert a Microsoft Publisher doc to PDF when the file size is LARGE?

    I have a Microsoft Publisher document that I need converted to PDF. Typically I have no issues converting from Publisher to PDF (and usually can just do it through the "save as" feature in Publisher.) However, this particular file is laden with graph

  • Can i use java scripts in d2k forms and reports

    Good day all, Can i use the above said, if yes any assistance or eg. thanks in advance.