APEX with R12 e-business integration

Hello

In Oracle apps 11.5.10.2, we have developed a few pages in APEX (version4.0) and integrated into e-business (i.e. access pages of the apex of the responsibility of e-business-> menu-> function)

now, we are trying to upgrade to R12 Oracle applications, where mod_plsql is no longer supported.

I wanted to know what is the best option and the simple to integrate the apex with e-business pages? and the details of how integrate.

1 http server separated with mod_plsql
2 apex listner (AL)

in the second option, we can install AL on tech-stack even as e-business or do we install on separate tech-battery?

Rgds,
-Kamal

Hi Kamal,

I think that the steps that you need to configure the integration are correct. Use of the gateway FND simply install the patch and then call the GWY.jsp of the function of the form with the profile that contains the URL of the Apex. With R12, you must use a jsp page to call Apex mod_plsql is not supported. Still, you need a listener OSH or separate Apex in support of mod_plsql for installation of the Apex.

Rod West

Tags: Database

Similar Questions

  • APEX with J2ee Web APP integration

    Hello

    We are evaluating the APEX. I understand that APEX is running on the Http Apache server.

    -I wanted to know if its possible to invoke servlets from the APEX web page /JSP. I guess we can call a URL of the servlet running on a website separate server (e.g. Tomcat, Jetty, etc.) the APEX using java scripts page. But I want to get back the other web server response (success/failure).
    We would like to call a servlet which records the user input data (data can be a file, etc.) in a separate DB of APEX web page.

    -Also is it possible to operate the APEX on a j2ee Web server, is there any work that goes on in this direction?

    Can someone please indicate the location of tutorial/steps that could help me raise please J2ee Web app help is in this regard would be appreciated?

    Thank you very much

    -VK

    Nanny:

    Replace

    DBMS_OUTPUT. Put_line (value);
    with
    HTP. PRN ("Output is" | value);

    Follow this link for more information on the package htp
    http://download.Oracle.com/docs/CD/B19306_01/AppDev.102/b14258/w_htp.htm#i1058734

    CITY

  • 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

  • Integration of the OPA 10.4 with Oracle E-business Suite

    We have a requirement for the integration of the OPA 10.4 with Oracle E - business suite.

    The condition is hypocritical:

    (1) EBS can call rules of the takeover bid on any screen - I think that this will be achieved by Oracle determinations Server (ODS) with probably a middleware between both to facilitate the exchange of webservice.

    Request- I just wanted to know if there is another way to better or if it is only best option?

    Are there examples of projects or pointers that can help us get a better understanding of the present?

    (2) given certain conditions of release in EBS, the modules of the OPA may be invoked, but this time there may be a few involved OPA interview screens.

    Request- How to proceed and achieve this goal?

    Any help on the above queries is really appreciated.

    (1) it is for an older version of OPA, but you might find something useful in this tutorial.

    (2) launch a browser window in passing a single parameter "caseid" to OPA startsession URL, so that a data adapter that you write can load and save data interviews of EBS based on the id of the object.

  • Integration of 10g discoverer with R12

    Hello

    I install independent Discoverer 10 g, no infra no and no intermediate layer, just I want to install Discoverer 10g, my question is-> it will create own discoverer own database, otherwise I have to integrate with applications,.

    If his will not create disco database, then we will integrate with R12.

    Thank you

    Danny,

    The EUL schema will be created in the Oracle Apps database.

    Please see the document below for more details.

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

    Kind regards
    Hussein

  • Java 7 is crtified with oracle E-Business suite R12

    Hello

    According to the note

    Map of java update to 7 for E-business suite and the note below. Please let me can know I proceed with this. Any negative impact on the server after the upgrade to java 7.

    Thanks in advance

    Salvation;

    You can use it,

    I suggest review:

    https://blogs.Oracle.com/stevenChan/entry/jre_7_certified_with_oracle

    Respect of

    HELIOS

  • Management of an APEX with walk-APIs - it APEX runtime environment?

    People,

    APEX Version: 4.2.1
    Database EE 11 GR 2
    Listener: EPG

    TLDR: Go at the end of the question for this thread in bold.

    I work in an environment where we have maintained by Oracle Forms applications and Oracle APEX on a database only internal production data. We want to take a redacted together these data (PII or personal Identifiable Information removal) and some applications of the APEX and put them on a separate external server for public consumption. The internal production environment is running APEX with the runtime and development environments. The external server runs APEX with just the execution with the query, only the applications environment. While two of the external applications are public applications without authentication (both work very well), there is an application that will have a relatively small number of users who authenticate with the application to access more detailed information than the general public. Still no PII or something like that, a little more information. Users are users of workspace APEX. The three applications are in the same workspace.

    I have to assume that I'm not the only person with the above configuration, but I had a moment difficult to work right. Although the documentation does not have the API, it is not always clear which API you would use and why.

    For example, in the internal production environment when a user connects to the authenticated application, they get access to the application (if they are in the right group) or they get an error page indicating that they have no access to the application. In the external runtime application that they will always have a ' ORA-06550: line 4, column 55: PLS-00201: identifier ' WWV_FLOW_F4000_PLUGINS.» ' INTERNAL_4155_SESSION_SENTRY' must be declared ORA-06550: line 4, column 1: PL/SQL: statement ignored ' error, which "sort of" makes sense because the application referenced (4155) is part of the installation of development and is not included as part of the runtime install only (either by the way, this seems like a bit of an oversight on the part of the APEX team). It is pretty obvious that the export and import of the workspace (and its users) 'something' got zero and some type of password reset is requested. Of course, end-user password reset request is not included in a single installation of runtime...

    So, off to the API to see if I can "reset" on the single runtime installation external users so that they do not have to reset their passwords when first connecting. Wow... Lots and lots of API. Understand that you must set the security with the APEX_UTIL group id. SET_SECURITY_GROUP_ID API takes some time. After much wandering around, I settled on the apex_util API and the WWV_FLOW_USERS view as a good place to study...

    However, when we query the view WWV_FLOW_USERS on each side, all of the columns "expected" that one would expect because of this behavior are identical between the installation of development / internal enforcement and the only external runtime installation. Things like CHANGE_PASSWORD_ON_FIRST_USE and FIRST_PASSWORD_USE_OCCURRED are identical (and btw, not the values that you expect them to be... FIRST_PASSWORD_USE_OCCURRED is N for all users except the user ADMIN). The only values that differ between the two environments are as CREATED_BY, CREATION_DATE, LAST_UPDATED_DATE, and LAST_UPDATED_BY columns.

    Things that work just great:

    < li > the installation itself! Very easy to move backward between each environment (runtime only or runtime and development).
    < Li > integration with SQL/Developer is fantastic. It is very cool to be able to right-click on an application in the internal environment and deploy it to the unique runtime environment. Ideally, it would be nice to be able to move workspaces APEX in the same way.

    Things that do not seem to be large:

    < Li > when that documentation tells you what each API, it doesn't tell you why you want to use it, or what you would use it for. Having a section "useful use case" in the documentation would be great. Yes, there is the example of code (which of course does not mention that you need to set the id of Group of security for most of them to work), but the code example is not really tell you why and what each of the attributes you can set with her (for the API set for example) will actually... For example the documentation does not really that many fields are not yet used, and even if the values are the exact opposite of what you would think they would be.

    So, my immediate question:

    What API will allow me to have users exported with a workspace to use applications that are authenticated in a single installation of runtime?

    And my follow-up question (s):

    You can actually use the API defined to manage a runtime environment and is at - it a good resource that explains the how and why rather than just the choice of the API.

    Well, after a lot of trying things, I finally had things to work.

    It seems that export and import a workspace "expires" users to your workspace. Despite the fact that, in the development environment / the ACCOUNT_EXPIRY (which is a date) has a whole bunch of different values and seems to work perfectly, when you import a workspace that the ACCOUNT_EXPIRY column is ready on the date you did import previous internal enforcement. For some reason, this is an indication that your account has expired at the time when you look at the WWV_FLOW_USERS table. Not one of the columns expected, but on the contrary this date column...

    So let's take a look at the [url http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35127/apex_util.htm#autoId126]Unexpire account of the workspace of the documentation procedure:]

    UNEXPIRE_WORKSPACE_ACCOUNT Procedure
    
    Unexpires developer and workspace administrator accounts and the associated passwords, enabling the developer or administrator to log in to a workspace.
    
    Syntax
    
    APEX_UTIL.UNEXPIRE_WORKSPACE_ACCOUNT (
        p_user_name IN VARCHAR2);
    
    Parameters
    
    Table 21-107 describes the parameters available in the UNEXPIRE_WORKSPACE_ACCOUNT procedure.
    
    Table 21-107 UNEXPIRE_WORKSPACE_ACCOUNT Parameters
    Parameter           Description
    
    p_user_name  The user name of the user account
    
    Example
    
    The following example shows how to use the UNEXPIRE_WORKSPACE_ACCOUNT procedure. Use this procedure to renew (unexpire) an Application Express workspace administrator account in the current workspace. This action specifically renews the account for use by developers or administrators to login to a workspace and may also renew the account for its use by end users to authenticate to developed applications.
    
    This procedure must be run by a user having administration privileges in the current workspace.
    
    BEGIN
        FOR c1 IN (select user_name from wwv_flow_users) loop
            APEX_UTIL.UNEXPIRE_WORKSPACE_ACCOUNT(p_user_name => c1.user_name);
            htp.p('Workspace Account:'||c1.user_name||' is now valid.');
        END LOOP;
    END;   
    
    See Also:
    "EXPIRE_WORKSPACE_ACCOUNT Procedure" and "WORKSPACE_ACCOUNT_DAYS_LEFT Function"
    

    It's very nice and all, but there are some things missing in the example above:

    (1) you must call the procedure of apex_util.set_security_group_id with the ID of the workspace you want to unexpire accounts.
    (2) you will need to issue a COMMIT for steps to engage the unexpire.

    Question: How are you supposed to know you need to do the above two steps?

    Take a look at what the API documentation has for the description of the SET_SECURITY_GROUP_ID procedure:

    SET_SECURITY_GROUP_ID Procedure
    Use this procedure with apex_util.find_security_group_id to ease the use of the mail package in batch mode. This procedure is especially useful when a schema is associated with more than one workspace. For example, you might want to create a procedure that is run by a nightly job to email all outstanding tasks.
    

    Note that there is no mention that you will need to call the SET_SECURITY_GROUP_ID procedure for almost all other API calls in the APEX_UTIL package (or at least many of them)...

  • Problems in using the APEX with glassfish server listener

    Hello
    I try to install APEX with listener application on my Oracle R12 application server. I installed glassfish 3.1 (zip file) and deployed my interlocutor on glassfish using the administration console
    http:// < Host >: 4848

    But I am not able to run the following links to get the status of the listener
    http:// < Host >: 8080/listenerStatus

    I get the following error when I try to connect using my user adminlistener who I defined under the Admin group, in accordance with the installation guide.
    HTTP status 403 - Access to the requested resource has been denied

    --------------------------------------------------------------------------------

    type of status report

    messageAccess to the requested resource has been denied

    descriptionAccess to the specified resource (access to the requested resource has been denied) was banned.


    --------------------------------------------------------------------------------
    Oracle GlassFish Server 3.1
    Also, when I try to start the administration console application using the link http:// < host >: 8080/apex
    I get the following error

    application = 4500 workspace = 10+.
    Error ERR - 1014 Application not found. +

    OK+


    Anyone know what could be the problem? Earlier, when I did the installtion even on my personal computer that runs on Windows OS I had faced some questions like this and was able to resolve by reinstalling glassfish with port 7878 place default 8080 HTTP and that solved the problem.

    But this time, I try to install on the Linux server and since I used the option of the glassfish server .zip file I don't have the option to configure during the installation. If you think that the problem is due to the conflict to port 8080, then can you please tell me how I can change the HTTP port without having to reinstall the glassfish Server?


    Thanks in advance!

    Hi reda,.

    http:// : 7878/apex/listenerStatus (I changed my HTTP port for 7878)

    But I have error which I run this URL below.

    HTTP status 403 - Access to the requested resource has been denied

    I'm sorry I have not answered your question 403, but I thought it should be a primary target in order to get your APEX installation up and running first.
    As you have moved this issue, it is logical to continue on other issues in your deployment.
    You say that you are trying to connect to listenerStatus as "adminlistener" with the group "Admin". You must use a user with the 'Manager' of the page group.
    However, if you have "Admin", you can access the 'status' tab in 'listenerAdmin' that contains exactly the information you see in 'listenerStatus '.

    Also, when I run the URL Listner Administrator page loads properly, but all fields are disabled. So I can only see the page, but not to make changes to the fields on tab 'connection '.

    You can change the JDBC settings in this tab? You must open the subform to display the fields.
    And you are able to change any settings on the other tabs?
    If so, everything works as expected. It is not possible to change the credentials of database using "listenerAdmin". The shape looks like the one you get in "listenerConfigure", but it is implemented differently, so what you see is the expected behavior.

    However, I can click on the 'Apply' button on this page and when I do that it takes me to the login user APEX screen. This is how it should be?

    Yes. What is this "Apply" button to reset the connection pool to use the current JDBC settings, which you should be able to edit as shown above. Therefore, when you apply the changed settings, the listenerAdmin will take you to the start APEX page to check that everything works (always) and continue to use APEX.

    -Udo

  • OAM 11g with E-Bussiness Suite integration

    Hi all

    Can someone please provide any document or link to integrate OAM 11 g with E-Business Suite.

    Thank you and best regards,

    Swathi.

    The document * integration Oracle E-Business Suite with Oracle Access Manager 10g with Oracle E-Business Suite AccessGate [ID 975182.1] * provides the integration steps for Oracle Access Manager 10g with E-Business Suite.

    Fix.

    We follow the document for the integration of OAM 11 g with E-Business Suite.

    For Oracle Access Manager 11g, follow the steps described in the Note: 1309013.1 (as explained in my previous answer, the product is called 11g but the version 10.3.4 - I know it's confusing, but it is the case with the Fusion level products).

    Thank you
    Hussein

  • OID/OAM with Oracle E-Business Suite

    Hello world

    OID is integrated successfully with Oracle E-Business Suite. Administrator as SYSADMIN, COMMENTS are able to login and access E-Business Suite with the redirected OID/SSO login Page. These users are migrated under OU = Finance, OU = employees, dc = myorg, dc = com via the load utility bulk OID.

    Via the OIDDAS Console (http:// < myorg >: 7777/oiddas), under Setup tab-> add an entry for OU = Finance, or = employees, dc = myorg, dc = com for the basis of creating users. OID administrator created a new user (i.e. the user fintest) under finance container through the console of OIDDAS and the same user is implemented in E-Business Suite Database under table FND_USER provided with a Globally Unique Identifier.

    (1) user created through the OIDDAS console will launch and access E-Business Suite URL (http:// < myorg >: 8000)
    (2) page of redirect OID/SSO Login appears.
    (3) fintest user will provide required login and password value to connect.
    (4) E-Business Suite homepage will be displayed for users fintest.

    I had a UI presentation layer where Oracle Access Manager is installed with the Server LDAP OID. Created a new workflow user finance Molok (OU = Finance, OU = employees, dc = myorg, dc = com). OAM administrator has created a new user (i.e. the user fintest2) under Finance container through workflows OAM and the same user is not supplied with E-Business Suite Database under table FND_USER provided with a Globally Unique Identifier.

    (1) user created through Workflows OAM will launch and access E-Business Suite URL (http:// < myorg >: 8000)
    (2) page of redirect OID/SSO Login appears.
    (3) fintest2 the user will provide required login and password value to connect.
    (4) in E-Business Suite oracle has not been linked with the Single-Sign-On account in place and place the homepage of E-Business.

    Note: We do not expect to make integration with OAM with Oracle E-Business Suite.

    Has anyone faced this kind of question. Please let me know your pointers.

    Thank you
    Ajay

    Hello

    Connect to Oracle Internet Directory, search EBusiness provisioning profile, remove the attribute of orclisenabled user profile in IDENTITY and SUBSCRIPTION list of areas for the properties of the parameter orclodipprovisioningeventsubscription.

    Thank you
    Ajay Babu Pentela

  • Management of Human Capital with R12

    Hello

    Could someone please share some documents on the application of Capital Management human and management with R12...?

    Satya,

    Please check the following links.

    Note: 561580.1 - Oracle E-Business Suite Release 12.1.1: release the contents of Documents
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=561580.1

    Note: 804373.1 - Oracle E-Business Suite release 12.1: output value Propositions
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=804373.1

    Note: 807319.1 - Oracle E-Business Suite Release 12.1.1: transfer of information online training
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=807319.1

    For the documents below, you need a name of user and password, so use (cboracle/oraclec6).

    Oracle E-Business Suite Human Capital Management: Exit 12, what's new in paragraph 12.1 and beyond
    http://www28.CPLAN.com/cbo_export/208/PS_S299976_299976_208-1_v1.PDF

    Vision of the management of Human Capital and the road map
    http://www28.CPLAN.com/cbo_export/208/PS_S300041_300041_208-1_v1.PDF

    How to make your presentation of data for Human Capital Management
    http://www28.CPLAN.com/cbo_export/208/PS_S300164_300164_208-1_v1.PDF

    Kind regards
    Hussein

  • I have a computer with Windows Vista business on her key. I have a dell windows vista Enterprise drive. the product to activate my acer desktop computer?

    Activation of WINDOWS VISTA oem with another oem drive?

    HI I have a computer with windows vista business on that key. Apparently, I do not have the original OEM drive but I have a dell windows vista Enterprise drive. the product to activate my acer desktop computer?

    Hello

    A manufacturer of recovery disc is designed for a particular brand and computer model; they are not interchangeable.

    Here is the link to order the Acer recovery disks:

    http://us-store.Acer.com/RCD/

    And if the Acer never included a drive to purchase, you should have a recovery Partition on your hard disk to reinstall Vista to how it was when new.

    With an Acer, you press Alt + F10 at startup to start the process of recovery back to new condition.

    See you soon.

  • Compatibility issues with Windows Vista Business

    Could not install Oracle 10 g/Microsoft SQL Server 2005 on this 32-bit machine. Windows Vista Business.It is machine Lenovo Thinkpad with 3 GB of RAM. Installation ends abnormally. Can install Oracle/SQL Server 2005 on Windows Vista or should I change to Windows Xp professional? Are there problems of compatibility with Windows Vista Business? How should I upgrade so that I can install Oracle/SQL Server etc for my development/practice work?

    Context/Back ground - as a developer I want to make some practices in Oracle 10g, MS SQL Server on this computer. I have the licensed version of Windows Vista on this Lenovo Machine. Please tell me how I can upgrade to Oracle, SQL Server etc can be installed on this machine.

    Thanks for your suggestion.

    Pratim Chanda Pankaj

    India

    Hello

    The question you posted is more suitable in the TechNet Forums. Please post your questions in the Microsoft TechNet forums to improve the assistance.

    Here is the link: http://social.technet.microsoft.com/forums/en-US/category/windowsvistaitpro/

  • How to connect my APEX with SQL Developer workspace?

    Hi all

    I am a new user of Oracle Apex. Is there a way to connect to my workspace created to http://apex.oracle.com/pls/apex with SQL Developer. If so, then let me know how. If someone has done successfully then please help me.

    Thank you

    Gerard

    Hi Gerard,

    It is not possible to do this on apex.oracle.com.

    Joel

Maybe you are looking for