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

Similar Messages

  • Migrate Oracle Forms 4.5 to APEX

    Hi Gurus,
    We are in the process of migrating Oracle Forms 4.5 to Oracle APEX 3.2.1. In order to use the Forms to XML conversion tool, they say the Form version should be at least 6i.
    I would be more grateful if somebody can get me Forms 4.5 to 6 or 9 migration guide and if possible some examples, so that I can proceed with this migration.
    Any help on this would be very much appreciated.
    Thanks and Regards,

    Oracle supports there tools because there are often needs to move technologies. What made Forms the right choice 10 years ago may not mean it is the right choice now. Hence, it might make sense to switch. Any tool which can take you some of the way can be a help. However, we also have to be realistic on what these tools can do.
    If you are aware that a tool takes you to a solution which is less than optimal than if you had designed it from scratch but its good enough for you then fine. If thats what you want and the tool does it for you then go for it.
    My experience, and I'm fortunate to have worked with hundreds of Forms customers/projects is that the hype/excitement sometimes has to be balanced with some practical real world experience.
    Even moving PL/SQL from Forms into the database is a difficult task and thats the same language.

  • 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

  • Is there a Migration tool for migrating Oracle forms 5 to Java

    Hi,
    I would like to know if there are any oracle tools available for migrating Oracle forms to j2ee.I read that " Oracle JHeadstart 10g" migrates the forms 6i to java/html.Does Oracle JHeadstart 10g also migrate forms 5 to j2ee.I am new to both oracle forms and j2ee and any information about this would be a great help.
    Thanks,
    Kevin

    Kevin,
    there are a couple of migration partners that offer their migration tool and many are listed on the otn page for Forms (otn.oracle.com/products/forms). You may want to make yourself a picture of how efficient such a migration coul dbecome
    Frank

  • Migrating Oracle Form 9i to Java

    Hi every body,
    I have a question,
    What tool could migrating Oracle Form 9i to Java?
    Thanks in advanced,

    http://otn.oracle.com/products/forms/htdocs/10g/FormsJavaSOD.html
    Has the details.

  • How to run oracle forms in ipdad or smart mobile using OS android

    please help me
    how to run oracle forms in ipad or smart mobile using OS( android )and connect to application server 10g?????
    Thanks

    If you had looked at data dashboard and some of the other links on Android, you would see that you cannot run a LabVIEW app on Android. Nor can you use a serial port. With Data Dashboard, you have a pc running LabVIEW and it publishes to network shared variables. Data Dashboard on the Android allows you to view those variables.

  • Migrate Oracle 11g database from Windows To Linux using RMAN hot / cold  backup ?

    Hi Friends,
    Is it possible to Migrate Oracle 11g database from Windows To Linux using RMAN hot / cold  backup ? ( as i would like to perform Point In Time recovery)
    (or) The only way is to use RMAN convert as mentioned here  - Transporting Data Across Platforms
    (or) Is there any other method (except exp/imp and data pump)
    Regards,
    DB

    HI
    his post describes the procedure required to migrate a database from Windows to Linux using the RMAN Convert Database command.
    Both Windows and Linux platforms have the same endian format, which makes possible to transfer the whole database, making the migration process very straightforward and simple.
    To migrate between platforms that have a different endian format, Cross Platform Transportable Tablespaces (XTTS) needs to be used instead.
    List of Steps Needed to Complete the Migration
    The migration process is simple, but as it has several steps it is convenient to be familiar with them before running it.
    1. Check platform compatibility between source and target OS
    2. Start the database in read only mode
    3. Check database readiness for transport from Windows to Linux using DBMS_TDB.CHECK_DB
    4. Check if there are any external objects
    5. Execute the Rman Convert database command
    6. Copy converted datafiles, generated Transport Script and Parameter File to Linux
    7. Edit the init.ora for the new database
    8. Edit the Transport Script and Parameter File changing the windows paths to Linux Paths
    9. Execute the Transport Script
    10.Change the Database ID
    11.Check database integrity
    Thank you

  • How to do Indepth table analysis without using any tool

    Is there anyway of indepth analysis of tables of a database without using any tool, i.e. by means of sql's, pl/sql's only.
    My database has around 800 main tables which have several other related relational tables(objects relating 2 tables on basis of OTO, OTM, MTO, MTM object relationship) and several dependent views(made from among the 800 base table only).
    Currently database is indexed, has joins and views, all in working scenario but yet do not gauranty consistent behaviour.
    My sole purpose is to analyse all main tables (around 800 of them) in my database by running scripts and prompt errors, warnings, exceptions wherever table needs indexing or change of joins(eg - from cross to inner,etc. ) or check inorder to avoid table full scan for related relational tables and dependent views.
    My databse is Oracle10g.
    Please do revert for any doubts.

    My sole purpose is to analyse all main tables (around 800 of them) in my database by running scripts and prompt errors, warnings, exceptions wherever table needs indexing or change of joins(eg - from cross to inner,etc. ) or check inorder to avoid table full scan for related relational tables and dependent views.There are no tools which can tell whether your table needs indexing or whether you need to change joins methods, by just looking at your database. At most, you can get an idea about the missing indexes in case of a parent-child relation. Everything else, falls under application tuning - which involves sql tracing, profiling etc.
    If you cannot trace individual sessions, then you are better off monitoring the database with statspack/AWR (if licensed). Generate reports at frequent intervals, look at the resource consuming SQLs and have a discussion with dev team to fix them, whenever possible.
    EM can also be used for SQL analysis.

  • Is there any blog or examples to handle the errors without using ESB tool kit.

    Hello,
    I have been trying to work with error handling since last week but I dont understand how to construct the error message. Is there any blog or examples to explain handle the errors step by step from scratch without using ESB tool kit.Can anybody help me out.
    Thanks in advance.

    You can use option 3 to construct the error message inside orchestration.
    Before using a BizTalk XML Message inside an orchestration, it must first be constructed. In fact this is just populating the message with XML. If there is an attempt to use this message before it is constructed, the above error will come. Some messages
    come pre-constructed, such as messages that originate from a send port
    There are several ways to construct a message inside an orchestration:
    Create a new message from an existing message using BizTalk map
    Assign one message to other(i.e. creating a copy of an existing message)
    Creating a message with the help of a System.XML.XMLDocument variable
    We have to first declare an orchestration variable of type XmlDocument. Then in a message assignment shape, we need to do something like this:
    myxmlDoc = new XmlDocument();
    myxmlDoc.LoadXML("<somexmlhere></somexmlhere>")
    myMsgBeingConstructed = myxmlDoc;
    Abhijit Mahato - Microsoft Community Contributor 2011 - MCTS BizTalk Server blog: http://abhijitmahato.wordpress.com/ Please "Mark as Answer" if Post has Answered the Question

  • 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...

  • 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.

  • Migrating Oracle forms and reports from 6i to 10g Application server on Uni

    HI Guys,
    We are migrating from Oracle forms and reports 6i to 10g.
    We will be having application server on Unix box.
    I understand following will be the changes i will have to do in this respect -
    1. Fonts are to be revisited only Java fonts are supported.
    2. Obsolete items, function calls, triggers are to be removed.
    My question is since this application can be cross platform application,
    Can anyone provide me with changes that I will have to do with configuration files like -
    1. Formsweb.cfg,
    2. forms.conf
    3. default.env
    4. registry.dat
    Keeping in mind that the application server will be on unix box.
    Thanks,
    Av.

    Java fonts are only supported for the Forms version.
    You can use your own fonts for Reports however, there is some legwork to do this. I know because I just went through it.
    If you will only being using the PDF output (which for me replaced the Preview mode that existed in 6i), then you have to install the TTF for the missing font, an AFM (use the ttf2pt1 utility to generate the AFM file, but make sure you remove the AFM extension when moving it to Unix). You'll want to use the PDF Subset in the uifont.ali (which exists under the ORACLE_HOME/guicommon/tk/admin directory and add the line underneath the PDF Subset "Font Family Name"="TTF Font Name" The font family name is found when you open the AFM file in textpad or wordpad for the font you generated. This is what you enter. The TTF Font Name is the name the TTF font. You'll have to restart Reports Server after this.
    If printing to the printer directly is an option you must have, I will tell you it does not work in Linux right now. You can print to the printer but if the font doesn't exist on the internal memory of the printer, it won't work. There are 3rd party utilities like ORARRP and PDFPrint that can take care of this but, each has its own limitations. The one thing I found with ORARRP is if you generate a Report with an RRPA file extension and open it on Windows, it works great, the printer dialog comes up asking you what printer you want to print too. However, if you call this in Linux/Unix with the filename, it brings it up in the web browser but doesn't prompt you for your printer to print too automatically. So, for me, it's a show stopper. My only other option is to install the fonts on the printer that are missing.
    As for the files you want to change, you'll obviously have to make changes to the formsweb.cfg, default.env, forms.conf. I have to modify the reports.sh for some PL/SQL attached libraries to make sure it picks them up. I did have to modify Registry.dat.
    There is alot of work but mainly forms wasn't too bad, unless you had fonts that weren't supported. Usually there is another font that you can use to replace the old one but you have to know which fonts exists on the server and try all the keys on the keyboard to find the corresponding keystroke.
    Hope this helps.
    Chris

  • 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

  • How to Migrate Oracle Forms 4.5 to Forms 10g

    Hi All,
    I want to know abt migration steps i.e. i 'm doing migration of Oracle Forms 4.5 to Oracle Forms 10g. Then existing forms is on Windows xx and the database is Oracle 8.
    What is the better way to approach this issue? Whether, directly open the existing Forms into Oracle Forms 10g or first open the form into Forms 6i and then after 10g?
    Tell me the System Specification.... Database version.... Which Application Server is suitable.... And whether the Oracle 9i database possible for Forms 10g or not.
    Pls Give me solution.
    Thanks.

    For Forms Upgrade information I would firstly checkout the Forms Upgrade Center. If you don't find your answer there I would post your question to the Forms
    <p />
    Donal

  • 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

Maybe you are looking for

  • 10gR2 OUI failure on Windows XP Pro SP3

    I had 10g Express edition running successfully but wanted to move up to 10g Standard / Enterprise. I am running Windows XP Professional with Service Pack 3 and my computer has an AMD Athlon 64 X2 Dual Core Processor. I have downloaded the windows 32b

  • Adobe Acrobat Pro 10 does not start anymore

    This happened to me three times now. One time Adobe Acrobat Pro 10 is working properly for weeks. It crashes once and after that it does not start anymore without providing a message or clue. What I used to do is remove CS6 completely and reinstall i

  • Problem in save  image

    Here i write text inside image then the image which contain text drawn on stegoPanel i want to save this stego image . when i save it the file appear put not contain the image // imports public class TestImage extends JFrame {     private JPanel main

  • New Ipod Resolution in IMovie share with Ipod???

    With the announcement that Itunes will now me posting videos in the 640 X 480, will Imoive HD have an update to export to the Ipod in this format? Currently, you can only export to the Ipod in the 320 X 240 format? Not sure if you would get a noticea

  • Why can't I use smart print after upgrading my Mozilla Firefox browser

    I am on Windows Vista and using 3.6.24 version of Mozilla Firefox.  When I upgraded to that version I got a brief message that HP Smart Printing was not compatible and then Smart Printing disappeared.  I cannot get into the program and the icon does