Oracle forms vs apex

hi all ,
i want to know the difference between the both , because i've read before that the two of them are for developing enterprise applications, so what is the difference ? is apex for developing applications just for small enterprises ? or what ?
thanks in advance

This question was asked at least hundreds of times, it might be a good idea to use the forum search (or google for that matter) to see what comes up. The whole topic is somewhat huge and can't be broken down in a few sentences. So you have to read and make up your mind yourself.
For example look what google brought up when feeding it with the search terms oracle forms apex (I agree these are very strange search terms to use when searching for information on oracle forms and apex, as search phrases like wrzlbrmpf are more likely to return anything):
http://www.oracle.com/technetwork/developer-tools/apex/application-express/apex-for-forms-098747.html
cheers

Similar Messages

  • Migrating Oracle forms to APEX 3.2 without using Forms2XML tool

    Can we migrate Oracle forms to APEX 3.2 without using Forms2XML tool?

    Hi Anoo,
    In order to convert Oracle Forms to Oracle Application Express, using the Forms Conversion utility in Oracle APEX 3.2, you are required to convert your Forms Module (FMB) files to XML format, using the Oracle Forms to XML conversion tool, Forms2XML. I would recommend that you review Chapter 4 [Converting an Oracle Forms Application|http://download.oracle.com/docs/cd/E14373_01/migrate.32/e13368/appmgr_forms.htm] , in the Oracle Application Express Migration Guide Release 3.2
    If you have any further questions relating to the Oracle Forms to Oracle Application Express conversions, I would recommend that you refer to the [Application Express|http://forums.oracle.com/forums/forum.jspa?forumID=137] forum.
    I hope this helps.
    Regards,
    Hilary

  • Oracle forms in APEX  problem

    Hi all,
    I have called oracle forms into my oracle apex application through iframe but having few problems.
    Sometimes oracle forms in  iframe region got stuck and then not work any more and if I logout from apex and login again it still in that stuck position.
    I don't no what to do now.
    I am thinking that it is reading from cache and i tried to close browser and clear cache and then login it still in that position.
    I want that whenever oracle forms are called it, does not read cache and run from scratch.
    Any solution guys.....
    Thanks

    You should check this link:
    https://apex.oracle.com/pls/apex/f?p=31517:95
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    https://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494

  • Oracle Forms to Apex

    We are considering migrating our Forms based applications to Oracle Apex. Does Apex offer all the capabilities that Oracle Forms offers ? What are the gotchas ?

    I can add some detailed questions to this topic.
    Apex does not have the forms execution model: enter_query, execute_query. If you have forms where you
    have the user enter query values and then programmatically execute_query and check form_success you need to
    find another way to do this. This is something I haven't totally worked out how to get the same functionality as
    in forms where one might use the same form for insert/update and even delete. How can the forms execution
    model be implemented in apex?
    I don't know if apex has the ability forms had to refer to items indirectly or generically. For example in forms one could reference the current item as :system.trigger_field . Contents of items could be generically copied:
    copy (name_in(v_source_item), v_dest_item);
    Forms had scope for triggers. So one could put a trigger on a block and it could fire for every item. Adding to
    this each trigger could be marked: before, after, or override. It is a very flexible system. Thus one could have a block level trigger fire for every item but also have a per item trigger that could fire before, after or instead of the block level trigger. I don't know if apex 4.0 dynamic actions are so flexible. For example, can a dynamic action be defined that would act on any item in a form without hard coding all the item names in it?
    I do not know how many detail tables can be handled in apex. Whereas in forms one could have a lot. I have a form with 50 relationships off the master table :-) Probably can't do that in apex.
    Similarly apex is limited in the number of fields that can comprise the primary key. I don't think it handles more
    than 2 fields.

  • Oracle Forms vs APEX for Web Development

    Could you please suggest me which Oracle Technology will be better suitable give flexibility for developing a web application of Information processing.
    1). Oracle Forms (Web)
    or
    2) Oracle Application express
    and also please explain the how it is good comparative other.

    I think you should also include the licensing issues in application development/deployment plans. As you might know, Forms requires iDS (for development) and iAS EE (for deployment) licenses. For JDeveloper and ADF, the development platform is free and the iAS Java version is much cheaper compared to the iAS EE license. When it comes to APEX licensing, it is free as long as the database server is properly licensed. For a small size company, APEX and the JDeveloper + ADF and iAS Java version makes perfect sense. Because Forms Services is only a part of the EE version of the iAS server, it might be an expensive option for a small scale application. On the other hand iAS EE is very capable and scaleable framework and you can deploy both J2EE, Forms, Reports, Discoverer, Portal applications from a single platform.
    Hope this proves useful.
    Zafer

  • Oracle Form functions and procedures in APEX, how?

    I am working to recreate in APEX, already existing Read Only Forms in Oracle Forms. APEX Interactive Report functionality among other things, makes it worth while as well as targetting a different audience than the one that utilizies the Oracle Form versions. Oracle Forms versions use lots of pre and post query triggers, PLSQL Functions.
    In Oracle Forms one of the places those functions can be located is in the "Program Units" section of the Form. A typical function of this sort, based on a specific Mission ID Itinerary, collects scheduled passengers last names, formats them with a comma and space after each one, into a single string that is returned and displayed as the passenger list of one row.
    I have all this code written so I can move most of the main query of the Oracle Form into an Interactive Report. These functions and triggers called from within the Form, from the "Program Units" section of the Oracle Form rather than being stored in the Database schema in a package, where would they go inside APEX? Can I create a "Shortcut" in APEX and call it from the Interactive Report "Region Source"? Can I create the PLSQL function at the page level or region level of the Interactive Report? Or, is my best bet creating a package stored in the database, of all these functions and/or proecedures I may need from the original Oracle Form?
    Some advice would be greatly appriciated.

    RLBickham wrote:
    I don't think I have been clear enough in describing the specific thing I want to do, it simply does not reach the level of forms to APEX conversion. It is basically a PLSQL Function problem.
    I have an Interactive Report that is currently getting 90 percent of what I want however, each row, representing a Mission may have multiple legs. Each Leg has two locations or ICAO codes attached to it. Based on the Mission number, I want to loop through the leg table, collect all the ICAO codes for that Mission, put them all into 1 variable separated by a coma and add that variable to the column display of that Interactive Report as the last column.
    In Oracle Forms I have a function saved to the database that is called within the main query. Maybe I am asking a question that does not need to be asked but in any case my question is can I put that function currently in the database somewhere in the confines of the Interactive Report and reference it via Http somehow or should I just stick with putting functions and procedures in packages stored in the database and called the conventional way?You could move the function to the database and call it from the report query, but it sounds as if it's superfluous. In the report query use whatever form of Re: 4. How do I convert rows to columns? is appropriate to your (unspecified) database version.
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.

  • How to call a Oracle Form from within the oracle APEX application

    Hi,
    I am new for Oracle APEX. I have a requirment where need to call a Oracle form (.fmx file) from within the Oracle APEX application.
    Can someone help me out ?
    it would be a great help.
    Thanks

    This might help you...
    http://roelhartman.blogspot.com/2008/11/integrate-oracle-forms-with-apex.html

  • Oracle.forms.engine.Main not found.java.lang.ClassNotFoundException error

    Hi Members,
    I am getting the oracle.forms.engine.Main not found.java.lang.ClassNotFoundException error when trying to access Oracle forms using APEX 2.2.1 and SSO.
    load:class.oracle.forms.engine.Main not found
    The forms have been compiled, forms path setup properly and the setup required to run forms seems to be right. Jinitiator has also been installed.
    I have searched the forums and tried everything. I have checked jinitiator settings, cleared cache and even reinstalled it. Do you have any experience with this error? Appreciate any answers. Thanks.
    Ravi.

    Dear Friends,
    I was also facing the same problem. to solve this, i have uninstalled Oracle Jinitiator. Cleared all the temporary internet files & cookies. Then while running the form, when it asks to install JInitiator, i have specified a different path for jinitiator, For Example, By default it asks for C:\programfiles, i have changed it to c:\manish directory.
    This has solved my problem. Probably this also help you.
    Regards,
    Manish Trivedi,
    India

  • Integrating Forms and Apex. (Calling Apex from Forms).

    Hi all.
    We'll soon start an upgrade of our Forms / Reports 6i Application to 11g.
    I was wondering, maybe, it would be nice to add some value for the upgrade process as a whole, using some of Apex new features like web mobile interface or maybe an integration between Forms an Apex, for example to provide users with the powerful features of Interactive Reports, just to name one.
    I have found this interesting link: http://roelhartman.blogspot.com/2008/11/integrate-oracle-forms-with-apex.html. (not a 100% clear for me, but at least it is a start).
    Obviously, to make it attractive, one would expect automatic login between the two Apps. As far as i know, this could be done like this:
    1) Using SSO. With that a Portal / Forms / Reports/ Discoverer/ version would be mandatory (too expensive for some clients).
    2) Oracle Access Manager? Not sure, can Oracle Forms connect to Access Manager? or LDAP? How about the licensing costs?. Not a clue.
    3) Make all Apex pages public? Not feasible.
    4) Now this one: in our forms application, every user authenticates within the application and we internally map that application user to an actual database user. At all times we hold metadata info about the current user (app, and DB), as well as application context. So this is my question:
    It is possible to create an Apex app, with database authentication method, and somehow pass the metadata from forms, and have a kind of custom login procedure that does all the application to DB user conversion process and application context setting????
    This is a very important question for us, although not sure where to really post it...
    Feedback will be greatly appreciated .....!
    Regards,Luis ....:)=

    I did something like that once. What you can do is set some random session id after logging in in Forms. Pass this session id to Apex every time and let Apex check if it is a valid session id.
    More information here:
    http://sqlcur.blogspot.com/2009/04/forms-apex-integration-2.html
    In that example I create a new session id on every call to an Apex page from Forms, but you can use the same session id as long as the user is logged in in Forms.
    Ino

  • How to configure Oracle SSO for forms and apex

    Hi All,
    I am trying to configure oracle SSO for forms and apex using third party external authentication. Please help me how to configure. I a have tried all possible things
    from web but I am not able to do it. Is there any doc or links are much appreciated.
    Info: Some reason my oiddas web link is not working it used to work fine before and also the from /pls/orasso/ link I am not able to login may be because of my oiddas issue
    Thanks

    Hi Andreas,
    Thanks you for your help. I am trying to implement third party external LDAP authentication for APEX and Forms.
    So I started with OID and SSO setup to create external Partner Applications. Some reason my oid and sso web login links are not working. I didn't find any errors. I need some help in finding the problem and direction, I already read docs on web but no proper direction. I appreciate your help.
    Thanks

  • Invalid object error while migrating oracle forms 6i to APEX

    Hi,
    I have a form name abc.fmb and I did converted to xml and imported using application migration in APEX
    With these I have nine PL/SQL libraries (PLL). converted it to PLD using rwconvertor and imported in APEX. Also, I have 4 tables i.e data base block in forms.
    Now, when i m migrating forms to APEX it is giving an error message saying invalid objects and shows the table name and column name. But the column name that it shows is a text box in the form that is also a database item ...
    eg:- addr is the block name in forms
    item name dsp_name
    error: invalid object
    Please suggest.
    Thanks,
    AP.

    Hi AP
    i would suggest this...
    Oracle Application Express (APEX)
    Regards,
    Abdetu...

  • Open Oracle Forms app from APEX

    How can I open an Oracle Forms application from within APEX?
    Right now, the Forms app is accessed simply through a Bookmarked hyperlink, so it seems to me I should be able to open a browser window and send it the same url from within APEX. Can someone provide all the details please? Thank You.

    I don't know about Oracle Forms specifically... but you should be able to put a link to any arbitrary URL within your Apex application, and have the browser access that URL.
    For instance, you can create a button and set that URL as the button's location, or create a Display-Only item with a default value set to a block of HTML including an &lt;a href&gt; tag.

  • Call APEX from Oracle*Forms

    My first APEX
    I have "built" a APEX-Application to upload and download documents (APEX advanced tutorial).
    It works as a stand-alone-solution.
    Now I want to call this APEX-Form from Oracle*Forms (web.show_document(url))
    I found that I can call a specific Apex-Page by application-id and page-Number.
    But APEX still asks for Username/ Password. And I want to transfer some other parameters to apex.
    The url I could hide. I also think about encryption/ time-stamp mechanism.
    I think there should be a standard-mechanism.
    But now I am in doubt: Is this possible at all?

    hi Scott.
    i actually developed a javabean to communicate with a mikrotik router and it works very nice on Oracle forms 10g !
    but i need to develop an mobile interface for users , so i am using apex to accomplish this task, but i will need to call the javabean from apex.
    thanks

  • Checkboxes: ApEx vs Oracle Forms

    I'd like to create a checkbox that behaves the way checkboxes do in Oracle Forms.
    The underlying database column can hold the values 'Y' or 'N'.
    I'd like a 'Y' to cause the checkbox to be checked and an 'N' to have it unchecked.
    Similarly, if I check an unchecked checkbox, I'd like the value of 'Y' to be put into the column.
    Fairly standard behaviour, I would have thought, but I can't get ApEx to do it.
    Any ideas?

    See Re: Saving checkboxes to table

  • How to call a Oracle Form from within the APEX

    Hi,
    I have a requirment where need to call a oracle form from within the Oracle APEX application?
    I will appriciate if can someone help me out.
    Thanks

    Hi,
    are you working with Forms 6i or 10g?
    If you want to call a forms 10g page. Just use a button with javascript:
    - Target type: URL
    - URL Target: javascript:window.open ('http://<server>:<port>/forms/frmservlet?config=<conf>','Forms window');
    With Forms 6i you can open the directory where your forms file is inside (works just with IE):
    <script type="text/javascript">
    function fnc_window()  {w = open('C:\\FormsFiles', "winLov","scrollbars=yes,resizable=no,width=600,height=400");
    if (w.opener == null)
    w.opener = self;
    </script>Or execute the forms file with vbscript (IE only):
    <script language = "vbscript">
    sub fnc_forms()
    dim progName
    progName = "c:\FormsFiles\myForm.exe"
    set oShell = createobject("wscript.shell") 'create a shell
    '***use the line below to call your app, defined above with the "progName" variable:
    oShell.run(progName)
    end sub
    </script>

Maybe you are looking for