OFR integration with EBS and UCM

Hi All,
We are implementing the following modules from Oracle Content Management to one of our Client, the following are the configurations we need :
Configure and deploy Oracle Forms Recognition (OFR) 10GR3
Configure the Oracle Adopter for integration of OFR with EBS
Configure the Adopter for integration of OFR with Oracle UCM content server
I really like to have any technical design document on integrations front, especially from OFR -> EBS, OFR -> UCM and also UCM -> EBS.
Any pointers for the same is well appreciated.
Regards,
Radhika

Hi All,
We are implementing the following modules from Oracle Content Management to one of our Client, the following are the configurations we need :
Configure and deploy Oracle Forms Recognition (OFR) 10GR3
Configure the Oracle Adopter for integration of OFR with EBS
Configure the Adopter for integration of OFR with Oracle UCM content server
I really like to have any technical design document on integrations front, especially from OFR -> EBS, OFR -> UCM and also UCM -> EBS.
Any pointers for the same is well appreciated.
Regards,
Radhika

Similar Messages

  • OBIEE Installation doc's and integration with EBS 12.0.6.

    HI,
    I had installed OAS 10g with OSS and OID and integration with EBS R12.0.6.
    Now I want to install OBIEE(On Linux) and wants to iuntegrate with SSO.
    Please provide me the Master Doc for this and anyother private doc also if any.
    thx

    Hi,
    Check this might be helpful... http://gerardnico.com/wiki/dat/obiee/linux_installation
    http://onlineappsdba.com/index.php/2007/10/29/biee-installation-on-linux-business-intelligence-enterprise-edition/
    To integrate with EBS check these.....http://it.toolbox.com/blogs/eye-on-obi/oracle-bi-applications-obiee-security-integration-with-oracle-ebusiness-suite-17246
    http://obibb.wordpress.com/2010/07/30/integrating-oracle-ebs-and-oracle-bi-ee-part-i/
    Thanks,
    Srikanth

  • OID Installation Questions pertaining to integration with EBS 11.5.10.2

    Our Environment is E-Business Suite 11.5.10.2 and we want to investigate/view OID/SSO in action. Ultimately, we'll attempt to use Microsoft Active Directory as the source (of truth). I had performed OID/SSO integration with EBS about 3 years ago and remember the "overall" scheme, but Oracle's documentation/downloads page has left me thoroughly confused, hence, I am asking those that have been through the process .... THANKS IN ADVANCE
    (1) Do I need to install the base AS 10g Infrastructure and Metadata Repository via 10.1.2.0.2 installation or can I go directly to installing OID 10.1.4.0.1 ??
    Here is what I believe the steps to be, PLEASE, correct me if I am wrong ...
    (1) Install 10.1.2.0.2 Application Server Infrastructure by selecting "Infrastructure and Metadata Repository"
    (2) Install 10.1.4.0.1 and select to upgrade an existing 10.1.2.0.2 installation. Once 10.1.4.0.1 has upgraded everything, including the database to 10.1.0.5, I assume that I can simply remove 10.1.2.0.2 through the Oracle Installer. Is this correct ??
    (3) Once upgrade to 10.1.4.0.1, I believe that I need to download a Metadata Upgrade Assistant patch, (mrua), and run mrua,sh to upgrade MR to 10.1.4.0.1 which will be apparent by querying app_registry view.
    (4) Upgrade 10.1.4.0.1 to 10.1.4.3
    The documentation is confusing and hard to find for me. Do these steps seem to accomplish the tasks or am I missing something ??
    THANKS IN ADVANCE

    I didn't do the install myself but we went straight to installing 10.1.4 Identity Manangement, although I believe that Infrastructure components which underly it are essentially the same as 10.1.2. As far as I know you can't use 10.1.3 because it lacks those infrastucture components.
    See MOS Doc 233436.1

  • APEX integration with EBS R12.1.1 - no SSO

    I am trying to complete APEX integration with EBS R12.1.1 in simplest way. I have a non authenticated report page that I need to link to through a menu and function on one of the existing forms.
    Rod West document
    http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf
    offers the jsp approach which I like to implement however the jsp will not compile correctly and I am not sure why - I have already fond one error with the code as listed in the document:
    ojspCompile.pl compile -s 'LaunchApex.jsp ' retry ---> will not work
    ojspCompile.pl compile -s 'LaunchApex.jsp' retry --> will work
    compile will fail starting at this point of the code:
    PARALLEL COMPILATION: 1
    [10389] !!COMPILATION ERROR(0) LaunchApex.jsp:
    _LaunchApex.java:70: illegal start of type
    if (ctx==null) {
    ^
    has anyone tried this approach and got the jsp to compile with no errors or can you see what is it?
    thanks in advance.

    Hello Mini:
    thanks for the info and I have followed the steps as listed. I am not sure what line is the bad code you listed is on - here is the copy of the jsp I am working with and maybe you can point to a specfic line(s) that need to be changed from what to what.
    <%@ page contentType="text/html;charset=UTF-8" %><%--
    /* LaunchApex.jsp */
    --%><%@ page
    import="java.io.*"
    import="java.net.*"
    import="java.sql.*"
    import="javax.servlet.http.*"
    import="java.util.Enumeration"
    import="java.util.Properties"
    import="java.lang.Math"
    import="oracle.apps.fnd.common.VersionInfo"
    import="oracle.apps.fnd.functionSecurity.Function"
    import="oracle.apps.fnd.functionSecurity.RunFunction"
    import="oracle.apps.fnd.common.WebAppsContext"
    import="oracle.apps.fnd.common.AppsEnvironmentStore"
    import="oracle.apps.fnd.common.WebRequestUtil"
    import="oracle.apps.fnd.common.ResourceStore"
    import="oracle.apps.fnd.security.CSS"
    import="oracle.apps.fnd.common.Message"
    import="oracle.jdbc.OracleConnection"
    import="oracle.jdbc.OraclePreparedStatement"
    import="oracle.jdbc.OracleResultSet" %><%!
    // Session has to be validated first
    WebAppsContext ctx = WebRequestUtil.validateContext(request, response);
    if (ctx==null) {
    return; }
    String cookieName = ctx.getSessionCookieName();
    boolean validSession = ctx.validateSession(cookieName);
    WebRequestUtil.setClientEncoding(response, ctx);
    %>
    <html>
    <head>
    <title>Launch Apex</title>
    <!-- LaunchApex.jsp -->
    </head>
    <body>
    <%
         String p_application = request.getParameter("application");
         p_application = ( p_application==null ? "NONE" : p_application);
         String p_page = request.getParameter("page");
         p_page = ( p_page==null ? "1" : p_page);
         String p_item_names = request.getParameter("item_names");
         p_item_names = ( p_item_names==null ? "" : p_item_names);
         String p_item_values = request.getParameter("item_values");
         p_item_values = ( p_item_values==null ? "" : p_item_values);
         AppsEnvironmentStore m_env = (AppsEnvironmentStore) ctx.getEnvStore();
         try {
              String l_launcher = ctx.getProfileStore().getProfile("APEX_HTTP_SERVER");
              l_launcher = l_launcher + "/pls/apex/f?p=" + p_application + ":" + p_page;
              l_launcher = l_launcher + "::APPS:::" + p_item_names + ":" + p_item_values;
         if (ctx!=null) ctx.freeWebAppsContext();
         response.sendRedirect(l_launcher);
         } //try
         catch (Exception e) {
         out.println("Exception found : <pre>");
         e.printStackTrace(new PrintWriter(out));
         out.println("</pre>");
         } //catch
    %>
    </body>
    </html>
    *********

  • CRM 5.0 Integration with Twitter and facebook

    HI Experts,
    i am working with SAP CRM 5.0 version,
    My existing client want to set up SAP CRM with twitter and Facebook specially customor services ,
    Does SAP CRM 5.0 has tight integration with twitter and facebook ,
    if yes will you please share iinformation in terms of
    1)Effort Estimation :manpoer
    2)Costing details 
    Thanking you in advance
    Pravin shete

    @sherrysarath:  Could you share some documents to understand how standards works for this issue? And if there aren't standards requirements, could you share your custom solution.
    @pravin wipro : Could you explain what are your requirements?

  • DMS integration with PP and PS.

    Hi SAP PLM experts,
    I would like to know how mySAP PLM's DMS module  is integrated with PS and PP module.
    Any small scenario with T codes and configuration help is highly appriciated.
    If you guyz have any documents/materials for this question, please mail the same to sudhu03 at gmail dot com.
    Thanks in advance,
    S.Achar.

    It is only through the object linkwhich you provide.
    In the business perpective, we attach the contract documents, design drawings and other doucuments to the project for ready referance.
    You can create the DIR directly from PS transaction or you can create it in DMS and attach it to the Project.
    We do have the red lining to identify teh changes reqd in the document.

  • Quality Center 11 (ALM) Query - Integration with Subversion and Jenkins

    Hi OHPCPaT Forum,
    Are there any restrictions to enabling the QC integration with Subversion and Jenkins when the QC server is a SaaS cloud instance? Is there any additional config I should be aware of?
    Thanks in anticipation

    Hi,
    Yes all the users are facing the issue. Please find more details for the issue.
    Currently we are upgrading Quality Center 10.0 to 11.0 with HP Enterprise Integration module for SAP applications. The project successfully upgraded from QC 10.0 to 11.0 but there are some error popup for the project for which Application Module and Enterprise Integration for SAP applications Version 2.6 was enabled
    Quality Center Details:
    HP Application Lifecycle Management 11.00
    ALM patch level: 07
    Quality Center 11.00 Enterprise Edition
    Component     Build
    OTA Client     11.0.0.6051
    User Interface     11.0.0.6051
    WebGate Client     11.0.0.6051
    Test Run Scheduler     11.0.0.6051
    Execution Flow     11.0.0.6051
    Site Administration Client     11.0.0.6051
    Extension Version     
    Enterprise Integration for SAP applications     2.6.0.3232
    Sprinter     11.0.0.6051
    Application Model     2.6.0.917
    Installation Steps followed:-
    1.Installed HP ALM
    2.Installed Patch Service Pack 2 (Patch 2,3,4)
    3.Installed Patch 6
    4.Installed Patch 7
    5.Installed the Extensions HP Enterprise Integration module for SAP applications using Extension Deployment Tool by following the steps provided in the Addin Page
    6.Created new project in HP ALM
    7.Login to the project (no issue)
    8.Enabled the Project Extensions
    9.Login to the project (able to access the project but error message is popup when we access Test plan and Defect module)
    Note: There is no error when we access the project for which the HP Enterprise Integration module for SAP applications EI not enabled. QC 11.0 is not integrated with any tools.
    Let me know is there any step we missed or we need to do any manual steps we need to do before enabling EI

  • Exchange 2013 owa integration with ADFS and cooexistance with exchange 2007

    Team,
    I have successfully integrated adfs 3.0 and Exchange 2013 owa and ecp.  However, we have a coexistence environment with exchange 2007.  When you access owa, which then redirects you to adfs, sign-in, and then get redirected back to owa. If your
    mailbox is still within exchange 2007, you get a blank login page.  If you mailbox is in exchange 2013 then you successfully get the owa page for 2013.  The problem is that all exchange 2007 mailbox users get blank pages at login. So I have determined
    that exchange 2013 cas is not doing the service location lookup on the mailbox to determine if a redirect to the legacy owa address is needed.  Is there a configuration setting that I might be missing? Or does the integration with adfs and owa not support
    the much needed mailbox lookup for a coexistance environment?  A side note: if we enable FBA with owa, both login scenarios work just fine (legacy and new 2013). The legacy namespace has been created, and applied to the exchange 2007 urls.  

    Hi,
    Try using AD FS claims-based authentication with Outlook Web App and EAC
    http://technet.microsoft.com/en-us/library/dn635116(v=exchg.150).aspx
    Thanks,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • Do we have OBIEE integrated with EBS

    Hi Experts,
    Do we have OBIEE integrated with EBS or we have to do it manullly..do we have any docs.
    Please suggest..
    S

    Hi,
    Never i have done this but i can show you the path.
    [http://it.toolbox.com/blogs/eye-on-obi/oracle-bi-applications-obiee-security-integration-with-oracle-ebusiness-suite-17246]
    OBIEE Integration  with EBS 11.5.10 or R12 Apps
    By,
    Kranthi.

  • 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

  • Discoverer integration with EBS R12 !!!

    Hello Sir,
    I need help to install/integrate Discoverer with R12.
    Actually, our clients are using Discoverer 4i in current EBS 11.5.10.2 in production. We have just upgraded EBS in TEST environment from 11.5.10.2 to R12.1.3.
    I had suggested client that Discoverer 4i is actually de-supported and they need to upgrade Discoverer version to minimum 10.1.2.3 or higher to integrate it with R12.1.3.
    Now, client also have requirement for Discoverer to be certified with MS Excel 2010 format. So I have suggested to upgrade Discoverer version to minimum 11.1.1.4.
    Latest certified Discoverer version is 11.1.1.7.0 as per note Using Discoverer 11.1.1 with Oracle E-Business Suite Release 12 (Doc ID 1074326.1)
    1) Can you please provide your opinion and any documentation which I can follow to install/integrate Discoverer with R12 ?
    2) Do I need to first install separate 10gAS for installing Discoverer 10.1.2.3 or Fusion middleware home for installing Discoverer 11g ? If yes, where can I find doc for this installation ?
    3) Since 10g support has ended July 2013, where can I get media for installing 10gAS ?
    4) Is there any additional licences required for using either Discoverer 10g or Discoverer 11g ?

    1) Can you please provide your opinion and any documentation which I can follow to install/integrate Discoverer with R12 ?
    In addition to the doc you have, please see:
    https://blogs.oracle.com/stevenChan/entry/discoverer_11_1_1_7
    How to Test Discoverer Integration with E-Business Suite 11i and Release 12? (Doc ID 1065257.1)
    Running Discoverer Reports From EBS R12 (Doc ID 1516784.1)
    R12: How to Create a Link to a Discoverer Workbook (Doc ID 471303.1)
    2) Do I need to first install separate 10gAS for installing Discoverer 10.1.2.3 or Fusion middleware home for installing Discoverer 11g ? If yes, where can I find doc for this installation ?
    Installation Recommendations - 11g Release 1 (11.1.1)
    Installer Screens - 11g Release 1 (11.1.1.7.0)
    3) Since 10g support has ended July 2013, where can I get media for installing 10gAS ?
    You can download WebLogic 10.3.6 from WebLogic Server 12c (12.1.1), WebLogic Server 11g (10.3.6) and Previous Releases
    4) Is there any additional licences required for using either Discoverer 10g or Discoverer 11g ?
    Please see Steven Chan's reply in this link -- https://blogs.oracle.com/stevenChan/entry/discoverer_11gr1_primer
    Thanks,
    Hussein

  • OBIEE 11G authentication integration with EBS 11 - is it possible?

    Hi experts,
    My OBIEE 11.1.1.5 is installed on Linux 64 bit machine.
    I've thoroughly performed all the action listed in the guide, but I'm getting the famous 'You are not logged in' message.
    Has anybody succeeded to enable security integration between OBIEE 11 and EBS 11?
    Thanks in advance,
    Alex

    Hi Deva,
    Thanks for your reply.
    I've heard from some people that there's a bug in OBIEE 11.1.1.5 that prevents integration of OBIEE 11 security with EBS 11.
    I'm trying to find anyone who actually succeeded to get the thing done.
    I used the DeliverBI document as well as the official guide.
    Is there any way to "debug" my settings? How can I know - what's wrong?
    Thanks,
    Alex

  • OBIEE Integration With EBS 11.5.10.2

    Hi All,
    I have installed BIAPPS (7.9.6.1) (components installed are 2 11g DBs (one is OLTP and other is OLAP) on RHEL 4, Oracle Application Server 10g, Informatica Power Center , DAC and OBIEE). After that i need to integrate the OBIEE with Oracle EBS. I have installed 11.5.10.2. I upgraded the database to 10g R2 and applied patch ATG 6 (Pre reqs of Integration).
    Steps Which i have done for integration:-
    I installed Financial module in Biapps. Made changes to that pre built rpd ie:OracleBIAnalyticsApps.rpd using Administrations tool. I have created datasource for EBS and given in connection pool. Similarly in dataware house connection pool also. When i test from Administration tool means Init Block > EBS Security context > Edit datasource. When i click on test the datasource i am getting error NQ_SESSION.ICX_SESSION_COOKIE has no value definition.
    I copied that rpd linux box where my OBIEE server resides and changed the rpd name in NQSConfig.INI. I added the oracle_home and tnsadmin etc in user.sh file. I added the dsn names which i created the same in windows in odbc.ini file. But NQServer.log says*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_OPTY_STATUS_REJECTED': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_SR_SEV_CRITICAL': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_FINS_TXN_DEPOSIT': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_FINS_TXN_WITHDRAW': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_IC_TERR_POSTN_Approved': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_IC_TERR_POSTN_ROLE_Owner': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_IC_TERR_POSTN_ROLE_Other': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'LAST_SYND_IDS_YTD_QTD': Dynamic refresh of repository scope variables has failed.*
    *[nQSError: 17001] Oracle Error code: 12154, message: ORA-12154: TNS:could not resolve the connect identifier specified*
    at OCI call OCIServerAttach.
    *[nQSError: 17014] Could not connect to Oracle database.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'LAST_SYND_RX_YTD_QTD': Dynamic refresh of repository scope variables has failed.*
    *[nQSError: 17001] Oracle Error code: 12154, message: ORA-12154: TNS:could not resolve the connect identifier specified*
    at OCI call OCIServerAttach.
    *[nQSError: 17014] Could not connect to Oracle database.*
    *2010-06-15 18:34:46*
    *[nQSError: 43059] Init block 'LAST_SYND_DS_YTD_QTD': Dynamic refresh of repository scope variables has failed.*
    *[nQSError: 17001] Oracle Error code: 12154, message: ORA-12154: TNS:could not resolve the connect identifier specified*
    at OCI call OCIServerAttach.
    *[nQSError: 17014] Could not connect to Oracle database.*
    *2010-06-15 18:34:46*
    *[nQSError: 43059] Init block 'CD_FCST_VISIBILITY_TYPE_INDIRECT_SALES': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:46*
    *[58002] Query Cache loaded with 0 entries from saved cache files.*
    *2010-06-15 18:34:46*
    *[43030] : Oracle BI Server started. Version: 10.1.3.4.1.090414.1900.*
    i am sure i changed the Oracle EBS OLTP -> connection pool, i changed to OCI10g/11g. How /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed is coming. I dont know.
    nqsserver.out.log_ logfile says
    */u01/OBIEE/BI/OracleBI/server/Bin/nqsserver: error while loading shared libraries: libmdxmembernamecache.so: cannot open shared object file: No such file or directory*
    */u01/OBIEE/BI/OracleBI/server/Bin/nqsserver: error while loading shared libraries: libmdxmembernamecache.so: cannot open shared object file: No such file or directory*
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    What all things i need to change in the rpd using Admin tool. i am using rpd of BIAPPS ie; OracleBIAnalyticsApps.rpd which has created after installing the biapps financial module.
    Please let me know any solution for this.
    Thanks,
    Manikandan

    Hi All,
    I have installed BIAPPS (7.9.6.1) (components installed are 2 11g DBs (one is OLTP and other is OLAP) on RHEL 4, Oracle Application Server 10g, Informatica Power Center , DAC and OBIEE). After that i need to integrate the OBIEE with Oracle EBS. I have installed 11.5.10.2. I upgraded the database to 10g R2 and applied patch ATG 6 (Pre reqs of Integration).
    Steps Which i have done for integration:-
    I installed Financial module in Biapps. Made changes to that pre built rpd ie:OracleBIAnalyticsApps.rpd using Administrations tool. I have created datasource for EBS and given in connection pool. Similarly in dataware house connection pool also. When i test from Administration tool means Init Block > EBS Security context > Edit datasource. When i click on test the datasource i am getting error NQ_SESSION.ICX_SESSION_COOKIE has no value definition.
    I copied that rpd linux box where my OBIEE server resides and changed the rpd name in NQSConfig.INI. I added the oracle_home and tnsadmin etc in user.sh file. I added the dsn names which i created the same in windows in odbc.ini file. But NQServer.log says*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_OPTY_STATUS_REJECTED': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_SR_SEV_CRITICAL': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_FINS_TXN_DEPOSIT': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_FINS_TXN_WITHDRAW': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_IC_TERR_POSTN_Approved': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_IC_TERR_POSTN_ROLE_Owner': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'CD_IC_TERR_POSTN_ROLE_Other': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'LAST_SYND_IDS_YTD_QTD': Dynamic refresh of repository scope variables has failed.*
    *[nQSError: 17001] Oracle Error code: 12154, message: ORA-12154: TNS:could not resolve the connect identifier specified*
    at OCI call OCIServerAttach.
    *[nQSError: 17014] Could not connect to Oracle database.*
    *2010-06-15 18:34:45*
    *[nQSError: 43059] Init block 'LAST_SYND_RX_YTD_QTD': Dynamic refresh of repository scope variables has failed.*
    *[nQSError: 17001] Oracle Error code: 12154, message: ORA-12154: TNS:could not resolve the connect identifier specified*
    at OCI call OCIServerAttach.
    *[nQSError: 17014] Could not connect to Oracle database.*
    *2010-06-15 18:34:46*
    *[nQSError: 43059] Init block 'LAST_SYND_DS_YTD_QTD': Dynamic refresh of repository scope variables has failed.*
    *[nQSError: 17001] Oracle Error code: 12154, message: ORA-12154: TNS:could not resolve the connect identifier specified*
    at OCI call OCIServerAttach.
    *[nQSError: 17014] Could not connect to Oracle database.*
    *2010-06-15 18:34:46*
    *[nQSError: 43059] Init block 'CD_FCST_VISIBILITY_TYPE_INDIRECT_SALES': Dynamic refresh of repository scope variables has failed.*
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    *[nQSError: 46029] Failed to load the DLL /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed.*
    *2010-06-15 18:34:46*
    *[58002] Query Cache loaded with 0 entries from saved cache files.*
    *2010-06-15 18:34:46*
    *[43030] : Oracle BI Server started. Version: 10.1.3.4.1.090414.1900.*
    i am sure i changed the Oracle EBS OLTP -> connection pool, i changed to OCI10g/11g. How /u01/OBIEE/BI/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' database client is installed is coming. I dont know.
    nqsserver.out.log_ logfile says
    */u01/OBIEE/BI/OracleBI/server/Bin/nqsserver: error while loading shared libraries: libmdxmembernamecache.so: cannot open shared object file: No such file or directory*
    */u01/OBIEE/BI/OracleBI/server/Bin/nqsserver: error while loading shared libraries: libmdxmembernamecache.so: cannot open shared object file: No such file or directory*
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    nqsserver:      Oracle BI Server shutdown.
    Oracle BI Server starting...
    rm: cannot remove `/u01/OBIEE/BI/OracleBIData/tmp/nQS_.TMP': No such file or directory*
    nqsserver:      Oracle BI Server started.  Version: 10.1.3.4.1.090414.1900.
    What all things i need to change in the rpd using Admin tool. i am using rpd of BIAPPS ie; OracleBIAnalyticsApps.rpd which has created after installing the biapps financial module.
    Please let me know any solution for this.
    Thanks,
    Manikandan

  • OIM integration with EBS

    Integrating OIM 9102 with EBS 12.0.6 and using User Management with HR Foundation Connector.
    while provisioning provided some dummy employee number for employee number and its giving the error and
    mentioned some default values for Business group id and person type id in Lookup.Lookup.EBS.UMHRMS.Configuration like 212 and 13 its throwing error
    DEBUG,20 May 2010 18:11:30,315,[OIMCP.EBSUM],oracle.iam.connectors.ebs.usermgmt.integration.EBSUserManagementHelper : setProcParamsWithFormData:: FINISHED
    DEBUG,20 May 2010 18:11:30,430,[OIMCP.EBSUM],oracle.iam.connectors.ebs.usermgmt.integration.EBSUserManagementHelper : createEBSEmployee : Callable Statement return value : 1
    DEBUG,20 May 2010 18:11:30,430,[OIMCP.EBSUM],oracle.iam.connectors.ebs.usermgmt.integration.EBSUserManagementHelper : createEBSEmployee : Person ID : 0
    DEBUG,20 May 2010 18:11:30,430,[OIMCP.EBSUM],oracle.iam.connectors.ebs.usermgmt.integration.EBSUserManagementHelper : createEBSEmployee:: FINISHED
    INFO,20 May 2010 18:11:30,430,[OIMCP.EBSUM],oracle.iam.connectors.ebs.usermgmt.integration.EBSUserManagement : createEmployee : Person ID returned after creating a person is invalid. Person ID = 0
    DEBUG,20 May 2010 18:11:30,430,[OIMCP.EBSUM],oracle.iam.connectors.ebs.usermgmt.integration.EBSUserManagement : createEmployee : Create employee result: ERROR
    DEBUG,20 May 2010 18:11:30,430,[OIMCP.EBSUM],oracle.iam.connectors.ebs.usermgmt.integration.EBSUserManagement : createEmployee:: FINISHED
    DEBUG,20 May 2010 18:11:30,430,[OIMCP.EBSUM],oracle.iam.connectors.ebs.usermgmt.integration.EBSUserManagement : createUserHRF : Result of createEmployee : ERROR
    DEBUG,20 May 2010 18:11:30,430,[OIMCP.EBSUM],oracle.iam.connectors.ebs.usermgmt.integration.EBSUserManagement : createUserHRF : Status = ERROR

    Hi!
    How did you solve the error? We're facing the same one.
    Have no idea what are we doing wrong

  • Apex Integration with EBS R12 - javax.servlet.ServletException

    Morning,
    We are in the process of upgrading from 11i to R12 and we have found that our method of launching Apex in 11i no longer works in R12. We are trying to follow the following instructions: http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf and have created a .jsp file and compiled as per the document. When we try to launch the function from apps though we get:
    An exception occured.
    URL=XXX/OA_HTML/XXFND_LaunchApex.jsp?transactionid=1236782452&language_code=US&CallFromForm='Y'&p_application=112&p_page=101&oas=DScF2XdCwRRnxFePUKHOnQ..
    javax.servlet.ServletException: oracle.classloader.util.AnnotatedClassNotFoundException:
           Missing class: _XXFND__LaunchApex
         Dependent class: oracle.jsp.runtimev2.JspPageInfo
                  Loader: oc4j:10.1.3
             Code-Source: XXX/apps/tech_st/10.1.3/j2ee/home/lib/ojsp.jar
           Configuration:  in META-INF/boot.xml in XXX/apps/tech_st/10.1.3/j2ee/home/oc4j.jar
    This load was initiated at oacore.web.html.jsp1603821464:0.0.0 using the loadClass() method.
    The missing class is not available from any code-source or loader in the system.I've XXX'ed out our domain. Has anyone else has this, or can anyone who has successfully integrated apex with EBS R12 let me know what they did?
    Thanks

    Hi,
    If the jsp compiled successfully then you may need to bounce your web server before the jsp can be used. See MOS Note 458338.1 for more details.
    Actually, now that Oracle have updated their FND Gateway for Apex integration there are only a few situations (such as if you want to pass parameters from the form function to Apex) where you need to use a custom jsp to launch Apex. In most cases you can use the Oracle supplied GWY.jsp to launch your Apex Page. To use this jsp you must apply the EBS R12 patch 12316083 (and patch 12726556 if you are launching from the forms navigator). How to use the GWY.jsp is described in "Extending Oracle E-Business Suite Release 12 using Oracle Application Express" white paper.
    Rod West

Maybe you are looking for

  • Iphone memory drain due to exchange: help

    For a month a thought I solved this problem, but than it came back. Now I am without solutions and hope some genius here can help me. Three months ago my iphone started with serious problems: - battery life went down from 2 days to 6 hours - apps cra

  • Text Box/Area and default value

    Is it possible to display a Text Box (or Text Area) in a Form page assigned a default value and prevent the user to change it? I need to register the actual user submitting the form. I have done this in WebDB22 Text Box and #user function but in Port

  • MobileMe to iCloud- many users, many devices

    Help! We're a family of four that has been working nicely with two Apple IDs for iTunes purchases, and a shared MobileMe account for sharing our contact list and multiple calendars.  We're now trying to figure out how to transition our configuration

  • Inline HTML + Inline Text + attachment all 3 in 1 mail  in Outlook

    Hello All, I am trying to compose and send a mail using JavaMail library using which I can send a mail with 1) HTML in the body of the mail and 2) 4 -5 line of text (along with HTML , not as alternative text) and 3) an attachment (which will also be

  • Send SC to Vendor for changing

    Hi Gurus, I am involved in an SRM 7.0 project implementation. One of the customer's requirements is to enable the possibility for a particular SC, of sending via e-mail the related link to the vendor and allow changing for example: quantities, items