Launch Application APEX of EBS

Hello

I created an Application in the APEX and want to launch from ebs as a form or a page of the OAF is attached. Could someone let me know the steps for it.

I need to create a new responsibility for him where it will be attached.

I use ebs r12 and APEX 4.2

Read this white paper for the EBS and APEX integration... : http://www.oracle.com/technetwork/developer-tools/apex/learnmore/apex-ebs-extension-white-paper-345780.pdf

Thank you

Tony Miller
Los Alamos, NM

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

  • Integrate form Oracle Application APEX 4.2

    Hi all!

    (Apologies if I'm missing any information, this is my first post here )

    I'm looking to integrate an Oracle form to an APEX application or be able to call an Oracle for an APEX Application form and open the form of the Oracle in a typical session of the EBS Java.

    I've seen several posts on this exact requirement, but none of the information is very current. I saw real Blog: integrating Oracle Forms with APEX which uses APEX$ CALL_FORM but I was not able to find any documentation on how to use this feature.

    I use version 12.1.3 EBS and on a Glassfish Server(I can update this to version 5 if it makes this easier)-4.2.0.00.27 APEX.

    Any information you can provide that I would be grateful.

    Thank you!

    Shelly

    Hello Shelly,

    2605127 wrote:

    Please change your login username of "2605127" to something meaningful. Reference: Video tutorial how to change username available

    I'm looking to integrate an Oracle form to an APEX application or be able to call an Oracle for an APEX Application form and open the form of the Oracle in a typical session of the EBS Java.

    I've seen several posts on this exact requirement, but none of the information is very current. I saw real Blog: integrating Oracle Forms with APEX which uses APEX$ CALL_FORM but I was not able to find any documentation on how to use this feature.

    APEX$ CALL_FORM isn't a documented Oracle procedure. You must build your own procedure CALL_FORM $ APEX.

    Reference: Forms to include in the Apex and read the blog post carefully.

    I use version 12.1.3 EBS and on a Glassfish Server(I can update this to version 5 if it makes this easier)-4.2.0.00.27 APEX.

    There is a lot of material on EBS and APEX integration.

    Reference:

    I hope this helps!

    Kind regards

    Kiran

  • 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

  • Calendar in El Capitan can launch applications as scheduled events... No work around?

    After upgrading to El Capitan of Lion (10.7.5) - I jumped over the Mountain Lion, the Mavericks and the Yosemite - now I'm missing a very important feature in the new calendar (iCal formally): it cannot launch applications such as events scheduled at set intervals.

    I also absolutely do not remove the possibility that it is me who is a bad thing.

    In some other forums people suggest to uncheck calendars in iCloud settings and then create a local calendar (and name it for example "on my Mac") who should be able to launch applications and then synchronize the calendars in iCloud again.

    Unfortunately, as soon as I uncheck calendars in iCloud, the application calendar itself does not create new calendars at all - local or not.

    I'm doing something wrong? If not, is there perhaps a workaround?

    Any help will be greatly appreciated!

    Use Automator to create a calendar alarm clock that would launch the applications.

    When you open the automate, create a new Document.

    Choose the type of alarm calendar.

    Stretching the library of utilities in an action to launch the Application. Set this to the application you want to run.

    Save it and it will create a local calendar with an event in its operation this alarm clock calendar. You can then handle this event.

  • Launch application on KeyPress sequence - Code example included

    I searched this forum and google hours and could not get it to work.

    I used this thread:

    http://supportforums.BlackBerry.com/T5/Java-development/launch-application-on-12345/m-p/502771

    I have a background process which is a PhoneListener.

    It intercepts the void callInitiated(int callid) and checks the sequence.

    If the sequence is the right one, she injects an end key and starts the application.

    There are 2 problems:

    (1) the dialed number appears with? prefix and I can't seem to find the right channel for the game.

    (2) if I inject end, the call ended, but so is my application that I just launched.

    I tried waiting and I tried the function calls but no dice the reorganization.

    public void callInitiated(int callid) {
    
            String dialedNumber = Phone.getCall(callid).getDisplayPhoneNumber();
            System.out.println("!!!!!!!!!!!!  Dialed:" + dialedNumber.length());
    
            if (true || dialedNumber.endsWith(KEY_SEQUENCE)) {
    
                // end the call
            //  EventInjector.KeyCodeEvent ev = new EventInjector.KeyCodeEvent(EventInjector.KeyCodeEvent.KEY_DOWN, ((char)Keypad.KEY_END), KeypadListener.STATUS_NOT_FROM_KEYPAD);
            //  EventInjector.invokeEvent(ev);
    
                final UiApplication app = UiApplication.getUiApplication();
                app.invokeLater(new Runnable() {
                    public void run() {
                        try {
                            Thread.sleep(20);
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                        }
                        try {
                            ApplicationManager.getApplicationManager().launch(
                            "MyApp?gui");
                        } catch (ApplicationManagerException e) {
                            e.printStackTrace();
                        }
                    }
                });
    
            }
        }
    

    any help?

    Thank you

    He solved.

    for some reason, the callInitiated (.) is called several times for each call

    Make sure that your code to initiate and end the call is executed only once (I used a hashtable and stored the callid) and you're golden.

  • It must for application Apex runs in mode listener Apex to use Apex listener 2.0 as a print server?

    Hello world

    I'm an Oracle Apex developer for 2 years now.

    Recently, I was in charge of search and do a few examples of how to print pdf with Oracle Apex 4.2.2 (Oracle 11 g).

    I want to use Apex 2.0 listener that standalone as a print server, we installed and we changed the configuration of the print server in the administration workspace. Then I created a report query and when I have the test report, a pdf file is downloaded, but when he opens, Adobe reader tells me that is not a valid pdf file.

    Our Apex application runs in the pl/sql gateway mode not Apex listener.

    So my squestion is: "" Is it mandatory for application Apex runs in mode listener Apex to use Apex listener 2.0 as a print server?".

    Thanks for help.

    Best regards

    You

    Khadija Khalfallah wrote:

    Thanks for your reply.

    We have an apex application that already runs using EPG and we want to allow printing of the pdf in it. So, we installed the ADR offline, to use as a print server but it does not seem possible if the Apex app uses a different web server than the listener of the Apex. right?

    Thank you once again.

    You have answered your own question... If you use the EPG, then you can NOT use another product middleware or application server until you turn off the EPG...

    Why you use the EPG in production?  Oracle does NOT recommend this (see the APEX Oracle installation instructions..)

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

  • What is the query to find the name of all applications for all EBS R12.1.3 modules?

    What is the query to find the name of all applications for all EBS R12.1.3 modules?

    With regard to:

    Mr. Shahzad Saleem

    Try:

    SELECT * FROM fnd_concurrent_programs_vl;

  • Launch applications published in the workspace of the internet 2.0

    Hello

    I can't launch applications published in the workspace of the internet 2.0. When I open an application opens a client application to view my horizon and the error message "error: host name cannot be resolved"appears. "

    I have access to the workspace via the internet on a load balancer (ZEN). I configured both connectors. One for connecting internal Kerberos authentication with external authentication with password authentication. This works well. From the local network, it works like a charm.

    Do I have to give the Horizon view connection manager a public IP address?

    Another (or maybe THE) problem is on the balancer FQDN/SSL setting. The FULL domain name is the portal.domain.com. Load Balancing is done via the internet with the same accessible URL. When I select the option "Load Balancer" in the workspace Configurator, it copies the CA certificate root of LB all go, restart the Tomcat server and then the page throw me back to the original page where the button load balancer is not selected. I get no error message and in the newspapers, I see only errors. You guys have an idea what I am doing wrong?

    Kind regards

    Andreas

    Yes, the Horizon view connection server must be solved also (must be a public IP address for this)

  • Oracle document for backups of applications Apex?

    Y at - it an official document from Oracle that tells us how to export applications apex command line instead of using the GUI in apex?

    When I google, I've seen a few links of apex users who had written that export using utilities to ApexExport, but since we are in the windows environment, we are
    hard time getting the class_path, java_home... etc to install correctly. I guess that its not just me most of them would have met there.


    But I'm looking for an official document to Oracle? (export of the Apex of the command line applications in the Windows environment).

    Hello

    Take a look at the blog following view that contains a Windows BAT files.

    http://www.talkapex.com/2012/04/command-line-backups-for-Apex.html

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Launching applications from partition Bootcamp without starting the virtual machine

    Hi all, installed Fusion because my colleague was furious about how you can launch applications without even opening the windows. But I was not able to do. I use a Bootcamp partition and is not, and I'm assuming that this is the reason why this feature is not available for me, but if someone could shed some light on this would be great!

    Thank you

    I think that your colleague is a bit confused. By definition, any product of virtualization to run a prompt to perform a request for comments. If you start in Unity mode, you might see Windows not running, but it's there. I suspect that what your colleague is talking about is the suspension in Unity mode. If you then start a Notes application, the virtual machine will resume, and since it is in Unity mode, it will appear to run the comments without Windows display application.

    Run a Boot Camp virtual machine means that you can not suspend (or snapshot, but that is irrelevant to this issue) because this can lead to corruption of the disk.

  • Excel applications Apex application migration

    Is it possible to migrate Excel applications applications apex?

    Because as much as I know that we can create the worksheet data applications, but is it possible to migrate Excel at apex application such as the migration of forms Microsoft access application/oracle and apex using available apex OR do application reports we have both different ways instead of developing from scratch?

    Please notify.

    Thank you
    Oar.

    Hello

    It is not possible to Excel applications applications Apex migration.

    Yes, you can create the data of the spreadsheet application.

    Kind regards

    Patel Kartik
    ------------------------------------------------------------------------
    http://patelkartik.blogspot.com/
    http://Apex.Oracle.com/pls/Apex/f?p=9904351712:1

  • Help to install applications BI with EBS

    Hello

    I'm new to BI applications. I have knowledge about applications of BI but not hands on.

    So I would ask experts to help installing APPS BI with EBS and that everything must be installed.

    I appreciate if you can provide me with any document setup or steps how to configure applications BI with EBS.

    Thanks in advance.

    Hi, hope this helps

    Download BI Apps: http://edelivery.oracle.com/

    1. Select the Documentation Library for your version of BI applications from this location
    [http://www.oracle.com/technetwork/middleware/bi-foundation/documentation/bi-apps-098545.html]

    2. in the Getting Started tab: see the Setup Guide for users Informatica PowerCenter for the installation steps

    3. in the Documentation tab: see Setup Guide for users Informatica PowerCenter for specific stages of Configuration (independent Source, EBS)

    Concerning

  • Print with APEX and EBS

    Hi gurus
    I have sucessfully integrated APEX with EBS, do a lot of reports on data from BSE.
    These reports are visible on the screen, but now I need a paper printed some of them.
    After having read a lot of literature, I realized that I need a print as BI Publisher server.
    I'm not sure but I think that EBS uses a similar architecture for printing, with a print server actually generate output.
    Is this correct? If that is correct, can I use the EBS for APEX printing print server? How can I do?

    I use APEX 3.2 and EBS 11.5.10

    Thanks in advance
    Oscar

    EBS has a version of BI publisher, but previous assignments, it was noted that the version of bi publisher integrated with EBS is NOT a version that runs with the integration of the APEX...

    Thank you

    Tony Miller
    Webster, TX

Maybe you are looking for

  • Satellite Pro 4300 - keys pressed "automatically".

    I have a problem with a series of Satellite Pro 4300 keys seem to have pressed automatically making me lose control of the computer frequently.I thought it might me some virus or spyware, but I formatted and reinstalled the operating system and the p

  • Satellite M30X-129 - power problems

    I have problems with the power supply and the laptop does not start, or crashes. I had the same problem in Oct 05 when DC power jack appears to be a little loose causing no charging battery / an irregular DC power supply with the laptop battery/dc po

  • T61p - video card (fx 570 m)-replacement

    Hello I have the t61p (6459-CTO) model with quad fx 570 nvidia video card, I bought in the United States. The video card no longer works, I'm looking for the replacement. To be more specific (the computer parts list info): 42 X 5976 SBB NVID FX570M Q

  • Samples and sample FREQ. / Chan

    Use of LV7.1 with Win_XP. In a DAS code, using digital dashboard counter to pull a loop timed. (See attached diagram) Initially I was acquiring only one channel and required a loop timed with a timing of 50ms. So to set the sampling at 200 Hz frequen

  • sound does not work. (no audio device)

    Hello, just the other day, I connected to my laptop and went to play a movie. I noticed that the sound was not working. I made is not on mute and not turned down all downstairs. I was looking on my control panel I clicked on the "speaker" icon and it