Integration of Oracle Apex with EBS R12.1.1

Dear all,

We are in the process of integration Oracle Apex 4.0.2 with EBS R12.1.1 with the help of http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf.

After doing all the steps, the time where we sail of EBS to Apex application clicking on EBS links menu it ends with error below

"404 not found".

' / OA_HTML/null/pls/apex/f resource not found on this server.

After some tests, I found the code below in "LaunchApex.jsp" in order to get the value of profile (supposed to be "http://myserver:port") of custom system 'APEX_HTTP_SERVER' profile and prefacing of ' / apex/f? ' p = applicationid:page:APPS: ' does not work correctly

"
...

String l_launcher = ctx.getProfileStore () .getProfile ("APEX_HTTP_SERVER");
l_launcher = l_launcher + "/ apex/f? p ="+ p_application +": "+ p_page;
l_launcher = l_launcher + ': APPS: "+ p_item_names +": "+ p_item_values;

...

"

as we found that the profile custom system 'APEX_HTTP_SERVER' does not exist in the EBS system. But it works without any error page if we encode the URL of the entire application variable in l_launcher apex, but this hard brings us to the page of connection of EBS instead of the Apex application page.

So I think that we can't work around by using the value of 'APEX_HTTP_SERVER' profile because it has something to do with the EBS application session.

So could someone please help me how we could create custom profile system "APEX_HTTP_SERVER" or other options to make the transparent integration of apex Oracle with EBS works without any second login page

Thanks in advance

Published by: 805196 on August 25, 2011 12:23 AM

Hi oar,

you will need to change as the below in the jsp

String l_launcher = ctx.getProfileStore().getProfile("OAE_LAUNCHER");
l_launcher = l_launcher + "/apex/f?p=" + p_application + ":" + p_page;
l_launcher = l_launcher + "::APPS:::" + p_item_names + ":" + p_item_values;

Brgds,
Mini

--------------------
Mark responds promptly

Tags: Database

Similar Questions

  • Integration of apex with EBS R12 - javax.servlet.ServletException

    Morning,
    We are in the process of upgrading to 11i to R12 and we found that our launch Apex in 11i method no longer works in R12. We try 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 according to the document. When we try to start the apps function if 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 have XXX'ed on our field. Someone else has it, or anyone who has successfully integrated apex with EBS R12 can let me know what they were doing?

    Thank you

    Hello

    If the jsp is compiled successfully you can bounce your web server before you can use the jsp. See MOS notes 458338.1 for further details.

    In fact, now that Oracle have updated their FND gateway for integration Apex there are only a few situations (for example, if you want to pass parameters to the function of the form at the Apex) where you need to use a custom jsp page to launch the Apex. In most cases you can use the Oracle provided GWY.jsp to start your Page Apex. To use this jsp, you must apply the patch 12316083 EBS R12 (and the patch 12726556 if you launch in browser forms). How to use the GWY.jsp is described in 'Extending Oracle E-Business Suite Release 12 using Oracle Application Express' white paper.

    Rod West

  • Integration of APEX with EBS R12.1.1

    Dear all,

    As I need to integrate EBS R12.1.1 without SSO and APEX

    To do this, I followed the steps in the link below

    http://forums.Oracle.com/forums/thread.jspa?threadID=586011 & tstart = 0


    The steps are

    Implemented at the Apex:

    1. create a blank page in OAE application, for example P2.

    2. edit the page attribute and set the security - authentication "Page is Public.

    3. create a branch in this page, as follows:

    Direction of Type Page accept transformation (not common)
    On the linen branch point: before header
    Action - Page 101 (that's my login page id)

    Implemented in EBS:

    1. create a profile under the responsibility of the developer of the Application as follows:

    Name OAE_LAUNCHER
    Request < what >
    User profile name Oracle Application Express Launcher
    Oracle Application Express Launcher description

    2. the superior set to the value of profile system-> profile-> system administrator responsibility and look for the "OAE_LAUNCHER". Set the value to the level of the Site as:

    port http:// < hostname >: < apex >/pls/apex

    3 create a function under the responsibility of the administrator system-> Application-> function, as follows:

    Name of the function LAUNCH_APEX
    Application of ApEX launch user function name
    Property function plsql SSWA type
    OAE_PKG of HTML Web. LaunchOAE

    4. create a PL/SQL Web entry under the responsibility of the system-> Security-> PL/SQL Web administrator, as follows:

    Name OAE_PKG
    Type package

    5. create an entry in any menu that need to use this link, as follows:

    Application of quick launch ApEX
    Function start an ApEX Application
    Description start an ApEX Application

    * 6. Compile the package OAE_PKG in EBS database *.

    procedure LaunchOAE (varchar2 parameters) is

    l_apex_launcher varchar2 (2000);
    l_apex_launcher_profile varchar2 (2000);
    l_userid applsys. FND_USER.user_id%type;
    l_username applsys. FND_USER.user_name%type;
    l_launcher_params VARCHAR2 (2000);
    l_resp_id NUMBER;
    l_resp_appl_id NUMBER;
    l_security_group_id NUMBER;
    l_org_id NUMBER;

    Start

    l_apex_launcher_profile: = fnd_profile.value('OAE_LAUNCHER');

    If l_htmldb_launcher_profile IS NULL then
    HTP.p (' contact the system administrator.) ');
    HTP.p ("profile - OAE_LAUNCHER is null");
    return;
    end if;

    l_userid: = FND_GLOBAL. USER_ID;
    l_username: = FND_GLOBAL. USER_NAME;
    l_resp_id: = FND_GLOBAL. RESP_ID;
    l_resp_appl_id: = FND_GLOBAL. RESP_APPL_ID;
    l_security_group_id: = FND_GLOBAL. SECURITY_GROUP_ID;
    l_org_id: = FND_GLOBAL.ORG_ID;

    l_launcher_params: = l_launcher_uri: = ' / f? p = 101:2:NO:P101_USERNAME, P101_PASSWORD, P101_RESP_ID, P101_RESP_APPL_ID, P101_SECURITY_GROUP_ID, P101_ORG_ID:' | l_username | ',' || l_password | «, » || l_resp_id | «, » || l_resp_appl_id | «, » || l_security_group_id | «, » || l_org_id;
    l_apex_launcher: = l_apex_launcher_profile | l_launcher_params;

    owa_util. REDIRECT_URL (l_htmldb_launcher);

    end if;

    exception
    while others then
    HTP.p (SQLERRM);
    end LaunchOAE;


    I'm done up to 5 steps, but in step 6, during the compilation of the procedure, I get an error ORA-00900: invalid SQL statement

    could someone help me solve this error as I followed Rod West document

    If any other progressive documents available for Apex & EBS R12 integration please share.



    Kind regards
    Alexander

    Hi Serge,

    SSWA plsql function, is a property that you define everything by creating a FUNCTION under the RESPONSIBILITY of the SYSTEM ADMINISTRATOR...

    If you want to integrate the APEX with EBS 11i or R12...

    As in R12, the JSP that is given in the document West Rod call APEX page shortly after clicking the menu in EBS...

    Therefore compile the JSP correctly by following the steps in the document, if you have compiled successfully, while the APEX page will be redirected by clicking on the MENU of the EBS.

    Make sure that U compile it successfully...

    Izz all wells
    GTA...

    AWARDS: Don't forget to mark correct or useful posts on the forum, not only for my answers, but for everyone!

    Published by: GTA on 26 January 2011 22:01

    Published by: GTA on 26 January 2011 22:02

    Published by: GTA on 26 January 2011 22:43

  • How to configure Oracle Discoverer with EBS R12?

    Dear

    I hope that, by default, only oracle Discoverer is not configured with EBS R 12. How to configure?
    Any help, much appreciated.

    Naya,

    Please refer to the next note, it should be useful:

    Note: 373634.1 - using discoverer 10.1.2 with Oracle E-Business Suite Release 12
    https://MetaLink.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=373634.1

  • Integration of Oracle Apex 4.0.2 with EBS R12.1.1

    We could integrate Oracle Apex 4.0.2 with EBS R12.1.1 with the help of http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf successfully.

    The document said to navigate from EBS to Oracle Apex without any second login screen (works very well!), but now how we sail to EBS to Oracle Apex (in the same session) without any screen connection again as below

    User login of EBS-->--> Oracle Apex-> EBS EBS

    Please help to achieve this goal.

    Hello

    In your application's authentication scheme in the sign-out URL Section, gives the following

    wwv_flow_custom_auth_std.logout_then_go_to_url?p_args=&APP_ID.:http://xyz.ck.com:8010/OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE
    

    Provide your url on ebiz instead of http://xyz.ck.com:8010 in the link above.

    Thus, while pressing the logout link in your apex, you will not be redirected to login ebiz again page, it will be redirect you ebiz menu homepage back in the same session itself.

    This will work for sure.

    Good luck!!!

    Change your login username of "805196" in a meaningful Word.

    Brgds,
    Mini

    -------------------
    If this has answered your question, then awarded points and close the debate.

  • can I integrate with EBS R12.1 teradata

    Hello

    can I integrate EBS R12 with teradata database aand bar?

    Kind regards

    According to these documents, like Teradata is certified with EBS R12. However, I would suggest you contact the software vendor and confirm if these tools/software are certified (and can be integrated) with Oracle E-Business Suite or not.

    http://www.Teradata.com/t/assets/0/206/280/6d8246de-69c0-4D64-b559-0c9988df7855.PDF
    http://www.Oracle.com/us/products/middleware/063329.PDF
    http://www.Teradata.com/t/assets/0/206/280/ee65d53f-b88c-4dbe-BE99-a19009bc4cd8.PDF

    Thank you
    Hussein

  • girdles you installation control 12 c with EBS R12.1.1

    Hi I can install grid control 12cr3 with EBS r12.1.1 (11.0.1.7 database). I tried several times but it fails at 36%. gives error OPatch file not available.

    Please provide some doc id.

    and suggest how I can install it successfully.

    concerning

    pritesh Rodriguez

    Pritesh,

    First of all, it is recommended to use a dedicated database to host a repository EM.

    Make sure that you follow these instructions 8.2 "before you begin" section of the earlier mentioned Basic Installation Guide.

    ", You should not set the ORACLE_HOME and ORACLE_SID environment variables." "You must make sure that the Oracle directories do NOT appear in the path."

    Did you follow the steps listed in the section below? If so, at what stage you encountered the error?

    Installation of a system of Enterprise Manager

    Kind regards

    -Loc

  • Integration of the IPM with EBS

    Everybody, hell

    My IPM server: 11.1.1.3 version (linux)
    Server version: EBS R12

    I m following the sub process.


    Document download (for KFI) through document capture, then it goes to the IPM server.
    Then, in Server EBS, click the zoom button, browser task IPM page is open.
    Open as user1:
    Push data into EBS seeking task IPM viewer data.
    Save it in EBS. Click on the approval of the Bill, give an authorization to obtain data to a particular user.

    Log in as User2: not found a job.

    Error in the BPEL instance is as below:


    * < part name = "summary" > *.
    * < Summary > Exception occurred when the link was invoked. Exception occurred during invocation of the JCA binding: "binding JCA execute operations reference 'Get_InvoiceTransaction' have to: Interaction processing error." Error during execution of the BPEL_RETRIEVEINVOICE processing. Interaction AXF_VALIDATION_IMPORT_PKG$ RET API. An error occurred during the processing of the interaction to call the BPEL_RETRIEVEINVOICE. AXF_VALIDATION_IMPORT_PKG$ RET API. Cause: java.sql.SQLException: invalid name model: AXF. AXF_VALIDATION_IMPORT_PKG_R_I '.» The called JCA adapter threw an exception of resource. Please review the error message above carefully to determine a resolution. < / Summary > *.
    * < / piece > *.
    * < part name = 'detail' > *.
    * < model name invalid detail >: AXF. AXF_VALIDATION_IMPORT_PKG_R_I < / detail > *.


    If someone can tell what packages are used to integrate IPM and EBS.

    Here are the names of sql file for the integration of the IPM with EBS:

    PATH\CREATE_TEMP_TABLE. SQL;
    PATH\AXF_VALIDATION_IMPORT_PKG.SQL; s
    PATH\AXF_VALIDATION_IMPORT_PKG_BODY. SQL;
    PATH\AXF_PREIMPORT_CUSTOM_PKG. SQL;
    PATH\AXF_PREIMPORT_CUSTOM_PKG_BODY. SQL;
    PATH\BPEL_11G_IMPORTINVOICE. SQL;
    PATH\BPEL_PLACEIPMVALIDATIONHOLDSON. SQL;
    PATH\BPEL_PREIMPORTCLEANUP. SQL;
    PATH\BPEL_UPDATEHOLDLIST. SQL;
    PATH\BPEL_VALIDATEINVOICE. SQL;
    PATH\BPEL_RETRIEVEINVOICE. SQL;
    PATH\BPEL_GETORGID. SQL;
    PATH\EBS_CREATE_HOLD_LOOKUP. SQL;


    Please answer me ASAP.


    Regarding

    Jyoti

    The problem with the documentation, is that there is no mention of these SQL files that need enforcement. Those that must be performed and visible in the schema of the user of the DB that you configured in your DB Adapater. There are many stored procedures using the model of Accelerator AXF appearing in these SQL. I believe (from memory) is grant it access to one, but I do not see that in your list, and you list looks like also a bit incomplete, which version of the model are you using?

  • Install the discoverer 10g with EBS R12

    Hello

    I want to install the discoverer 10g with EBS R12,
    Please send me any document and the steps required to install and configure?

    Thank you
    Kouadio

    PL, perform in MOS Doc 373634.1 (using discoverer 10.1.2 with Oracle E-Business Suite Release 12)

    HTH
    Srini

  • Integration of applications of BI with EBS R12 - connect as an administrator directly

    Hi all

    Thank you for taking the time to read this post.

    Environment

    Oracle BI Applications financial analytics 7.9.6
    Oracle E-Business Suite R12

    Problem

    I'm following Oracle Support Note + Integrating Oracle Applications Business Intelligence with Oracle E-Business Suite [552735.1 ID] + to allow my EBS users to log on to OBI Apps of the EBS instance. This does not work and that my EBS users log on dashboards and responses through the menu links documented in EBS. However, presentation BI administrator is not a user of the EBS and can now connect through the connection URL http:// < host > BI: 9704/analytics/saw.dll? Dashboard. Instead, there is a message:

    + "You are not already connected to the Oracle BI server." +

    + "If you have already connected, your connection may have expired, or a communication or a server error could have happened". +

    Is there a way to allow presentation BI administrator to directly access the login page BI, once integration at EBS has been set up?

    Thanks for your help.

    Kind regards
    Gary.

    You can use saw.dll? Dashboard & NQUser = Admin & NQPassword = AdminPassword but it is not secure because the password is transmitted in raw and stored text in the history of the brower URL

  • Oracle Data Guard with EBS R12

    Dear gurus,

    I want to know about Oracle Data Guard with Oracle EBS Release 12, claims we separate license with Oracle E-Business Suite R12 of application Data Guard? (i.e. separate premises, same place).


    Please me advice in this regard.


    -Mickaël

    AFAIK, you don't need to have a separate license for Data Guard. However, I would say that you call your Oracle representative.

  • Deploy a war in an Instance of AS Oracle 10.1.3 that comes with EBS R12

    Is there really no way to install demantra.war in the 10.1.3 instance Oracle Home of a R12?

    It's kind of stupid install another one as a server, to use application of Demantra only.

    If you need to install a sperate instance then how the license works. Do you need to purchase a separate license for it.

    In addition, configured in Eneterprise Manager
    http://xxxxxx:18100 / emd/console/targets

    Can someone tell me what is the username and password to access
    Nothing works for i.e ias_admin oc4jadmin etc.

    Best regards and much appreciated

    Sandeep

    Hi Sandeep,

    Take a look on the following document.

    Note: 603716.1 - Using AS10g AS Control with e-Business Suite release 12
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=603716.1

    Kind regards
    Hussein

  • Result of cuts 11.2.0.3 Advance with EBS r12.1.3

    Hi all

    Nice day.

    We have a database of a growth of about 3 to 4 GB per day and we are looking for the best answer to audit needs and performance.

    We had discussions with one of the archiving solution provider, but the meeting was unable to set the backup strategy for the database. To remedy this, we are looking for the solution of compression compress the database.

    Oracle has not been able to provide results of sufficient success and validations for the performance of instance EBS r12 on prod with cuts of the advance on.

    So I would understand if someone uses it and how well has it? other suggestions are also welcome.

    concerning

    Karan Kukreja

    Try this link - Aderas Inc - Whitepapers

  • not able to connect Toad/sql * plus with ebs R12.2

    Dear experts,

    I have a R12.2 EBS instance with linux 5 (32-bit), but trying to connect to the database using toad / sql * plus of the client machine. his mistake.

    another instance ebs r12.1.1 with the work of database 11g very well,

    Please suggest how I can fix it.

    Database - 11.2.0.3.0

    EBS - R12.2

    OS - release of the Red Hat Enterprise Linux 5.5 Server (Tikanga)

    concerning

    pritesh Rodriguez

    problem is solved.

    using the id of doc metalink 291897.1.

    concerning

    pritesh Rodriguez

  • Classic report to Oracle apex with removal of icon/image

    Hi all

    I'm looking for a classic report with delete image icon for each line. Can someone please suggest me a link to view or approach.

    I use Oracle APEX 4.2.1 and Oracle 11 g r2 database.

    Thank you

    Orton

    Here is an oldest blog showing how to do this: http://apps2fusion.com/at/kr/391-oracle-apex-person-details-tutorial-02-delete-functionality

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

Maybe you are looking for