Conversion of oracle forms 4.5 into oracle forms 9i

Hi Gurus!
Its becoming a bit more difficult for me to find the solutoin of the following problem!
Scenario is that i have a form developed in oracle forms 4.5, after conversion in oracle forms 9i, i am getting fixed as,
I have two text items say item1 and item2, item2's "Synchronize with item" property is set to "item1" and there is also a
WHEN-VALIDATE-ITEM trigger on item2, and as u know in 9i forms WHEN-VALIDATE-ITEM trigger on child item in this case item2 is
ignored, now if i move that trigger to item1(in this case the master item) then trigger is fired but then the business
logic/flow change as originally i didnt require any WHEN-VALIDATE-ITEM trigger on master item i.e item1
So wot should i do to resolve this problem/situation?
Plz let me know if i have conveyed successfully!
Thanx in advance!

Hi my company specialises in doing exactly this.
Please look at our web site www.transenigma.co.uk to see out conversion tools. We can take you from Forms v2 right htrough to Forms 6i web forms, and anywhere in between.
If we can help you, please send us an email.
Tony

Similar Messages

  • What are the most challenging conversions in Oracle apps...

    Can any one tell me what are the most challenging conversions in oracle apps.
    Thanks
    Sambit

    d1acf245-8019-40c9-a1df-fdc9374b36b2 wrote:
    Can any one tell me what are the most challenging conversions in oracle apps.
    Thanks
    Sambit
    https://forums.oracle.com/message/10705767
    Thanks,
    Hussein

  • URGENT:currency conversion from oracle financials 10.7 to 11i

    Hey all, Any one has the idea about the currency conversion from oracle financials 10.7 to 11i?? how to handle it?? do we need seperate code for currency conversion or is there any software that we can use??

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Shenba ([email protected]):
    Hey all, anyone has idea how the currency conversion is handled during upgrade of
    for oracle financials 10.7 to 11i. Is there any software available or do we need to do coding for currency conversion.
    Thanks<HR></BLOCKQUOTE>
    null

  • NoSuchFieldError: conversion with Oracle 10g?

    I'm getting the following after re-running some code that worked with 9i, but doesn't with 10g. It's on a simple XMLType.createXML(Connection, Document) call. I'm using the new ojdbc14.jar that came with the Oracle10g bundle. Any ideas?
    java.lang.NoSuchFieldError: conversion
         at oracle.xdb.XMLType.<init>(XMLType.java:617)
         at oracle.xdb.XMLType.createXML(XMLType.java:706)
         at oracle.xdb.XMLType.createXML(XMLType.java:1112)
         at com.aa.rpt.apps.bsa.automation.util.BSASQLController.updatePNR(BSASQLController.java:142)
         at com.aa.rpt.apps.bsa.automation.PNRDataPopulator.run(PNRDataPopulator.java:78)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
         at java.lang.Thread.run(Unknown Source)

    yes. but using the new xdb.jar and xmlparserv2.jar that came with the 10g bundle seems to have solved my problem.

  • The pdf file that i am converting has multiple pages but the conversion only exports the 1st page into excel.  How do i get the product to include all pages on multiple sheets?

    Hi,
    The pdf file that I am converting has multiple pages but the conversion only exports the 1st page into excel.  How do i get the product to include all pages on multiple sheets?

    Hi christinek,
    Can you please tell me how the PDF that you're converting was created? Sometimes, PDF files created by third-party PDF generators (that is non-Adobe applications), don't contain all the tags and file information necessary to ensure a proper conversion to Excel. There are no settings that you can change in ExportPDF to adjust how the file is imported.
    You can tell how the PDF was created by choosing File > Properties in Reader and looking for the PDF Producer on the Description tab. If the PDF was created by a third-party, it just may not be written to spec. Please see Support Policy for PDF Files created by non Adobe applications.
    Best,
    Sara

  • Problems about SQL (conversion to a form that Oracle can understand)

    how can I convert this SQL into a form that Oracle can understand??
    Select Temp.Country_name, number1
    from (Select L.CID, C.country_name, count(*) as number from Leagues L, Countries C
    where L.cid = C.cid and L.season = 'Autumn'
    Group By L.CID, C.country_name) AS Temp
    where number1 = (Select MAX(Temp. number1) from Temp)
    ORDER BY Temp.Country ASC;
    this query is to find the country that held the maximum number of leagues in "Autumn". Display the country_name and number. Sort the result according to country_name in alphabetical order and it should be allowed in SQL/92.
    relational schema of Leagues ( LID(PRIMARY KEY), LEAGUE NAME, CHAMPION_TID, YEAR, SEASON, CID)
    COUNTRIES (CID, COUNTRY_NAME, FOOTBALL_RANKING)
    Thank You.

    Hi,
    Welcome to the forum!
    Sorry, I don't know what's allowed in SQL/92.
    This works in Oracle 9 (and up) and doesn't rely on anything that I know is an Oracle-specific feature:
    WITH       country_summary     AS
         SELECT       c.country_name
         ,       COUNT (*)          AS country_total
         FROM       leagues     l
         JOIN       countries     c     ON     c.cid     = l.cid
         WHERE       l.season     = 'Autumn'
         GROUP BY  c.country_name
    --     ,            c.cid          -- needed only if country_name is not unique
    SELECT     *
    FROM     country_summary
    WHERE     cnt     = (
                    SELECT  MAX (cnt)
                    FROM    country_summary
    ;Here's another way, which works in Oracle 8.1 (and up):
    SELECT  *
    FROM     (
              SELECT       c.country_name
              ,       COUNT (*)                         AS country_total
              ,       RANK () OVER (ORDER BY COUNT (*) DESC)     AS rnk
              FROM       leagues     l
              ,       countries     c
              WHERE       c.cid          = l.cid
              AND       l.season     = 'Autumn'
              GROUP BY  c.country_name
         --     ,            c.cid          -- needed only if country_name is not unique
    WHERE     rnk     = 1
    ;By the way, do you find it easier to read and understand code when it's formatted like the examples above, or as you posted it?
    Help the people who want to help you. Always format your code. When posting any formatted text on this site, type these 6 characters:
    \(small letters only, inside curly brackets) before and after each section of formatted text, to preserve spacing.
    Edited by: Frank Kulash on Nov 4, 2010 10:35 AM
    Revised 2nd option, because Oracle 8.1 can't use ANSI join syntax.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Conversion of oracle 10g character (.txt) reports to bitmap (.pdf)

    Hi,
    I have two queries:
    1) I want to convert oracle 10g bitmap (.rtf) reports to bitmap (.pdf) reports. I can do it by converting desformat. But the problem is .rtf reports have PAGESIZE 13 inches x 11 inches. After conversion to .pdf I need to have A4 size (11.7 x 8.3) . This also I can do it manually by changing width and height. But the issue is I'm getting error that : some object is out of body. So I have to change the marging of each and every report manually by trail & error method. Which is consuming lot of time.
    So any one please provide me solution so that I can generate .pdf report in A4 format with out any issues. (By changing any class files, etc..)
    2) I want to convert character(.txt) reports to bitmap (.pdf) reports. Again its having same problem as mentioned in (1). So any shortcut or any method for doing it.
    Please let me know whatever you know abt this issue.
    Thanks in Advance

    Don't think there are any shortcuts you can convert 13x11 to 11.7x8.3 without modification of the layout. changes or moves of the frames/fields are expected if they are beyond 11.7x8.3.

  • Conversion of Oracle Reports to BI Publishser.

    Hi,
    When trying to convert the oracle report to BI publisher using the conversion utility Iam encountering the below error.
    Exception in thread "main" java.lang.UnsupportedClassVersionError: oracle/apps/x
    do/rdfparser/BIPBatchConversion (Unsupported major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    The below steps I followed
    1) copied all necessary .jar files to the D:\jdev\project folder
    2) Set the classpath
    3) set the path and class path with correct java home C:\Program Files\Java\jre1.6.0\lib
    ran the below command to convert the .xml file created using the report converter tool.
    D:\Jdev\project>java.exe -classpath aolj.jar;xdocore.jar;collections.jar;j5472959_xdo.zip;versioninfo.jar;xmlparserv2-904.jar oracle.apps.xdo.rdfparser.BIPBatchConversion -source d:\Desg\output -target d:\Desg\output -debug
    Any Suggestion is highly appreciated.
    Thanks.

    You have to change the system parameters :
    DESTFORMAT = Delimited
    DESNAME = c:\file.xls
    DESTYPE = FILE

  • Conversion of oracle report(RPT) to SQL*Reportwriter 1.1

    Hello,
    My client has setup of Oracle5.0,form2.3,Report in RPT format.
    He wish to upgrade this to Oracle 7.X , Forms3.0 and
    SQL*Reportwriter 1.1.
    I could convert Forms2.3 to Forms3.0 and upgraded the database
    to Oracle7.X by taking import of Version5.0 database....but I
    failed to upgrade Oracle reportwriter(in RPT format) to
    SQL*Reportwriter1.1..
    I will appreciate if any body can can expalin me steps to be
    followed for this(REPORT) upgradation..as I do beleive
    conversion is possible..
    I checked with manual but I am not clear...!!
    Regds,
    Pratip
    null

    hai pratip,
    there is no direct utility to convert rpt's to ver1.1 reports.
    we need to understand what exactly it is doing write the same
    thing in sqlreportwriter,other wise there is a thirdparty tool
    for conversion of rpt's to v1.1 reports.kumaran software is
    having that tool,if u want u can contact those people.
    friendly
    sarma
    Pratip Raychaudhuri (guest) wrote:
    : Hello,
    : My client has setup of Oracle5.0,form2.3,Report in RPT format.
    : He wish to upgrade this to Oracle 7.X , Forms3.0 and
    : SQL*Reportwriter 1.1.
    : I could convert Forms2.3 to Forms3.0 and upgraded the database
    : to Oracle7.X by taking import of Version5.0 database....but I
    : failed to upgrade Oracle reportwriter(in RPT format) to
    : SQL*Reportwriter1.1..
    : I will appreciate if any body can can expalin me steps to be
    : followed for this(REPORT) upgradation..as I do beleive
    : conversion is possible..
    : I checked with manual but I am not clear...!!
    : Regds,
    : Pratip
    null

  • Conversion of Oracle 8 Database to Oracle 9i Database

    Hi,
    Can anybody tell me the steps to be followed to transfer a database of Oracle8 into Oracle9i?
    Thanx.

    That is a big question. The best answer is that you should read the 9i Migration Guide documentation. Also, if you have MetaLink access, there is a "Top Articles" document that is very helpful.
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showFrameDocument?p_database_id=NOT&p_id=132255.1
    Tim

  • Utility for Item Conversion in Oracle Apps r12

    I want to read a flat file and upload data into staging table.
    Am working in oracle apps r12.
    which is the standard way to take data inside the staging table.
    Is it SQL LOader or UTL_FILE.
    r is there any other utility to upload bulk data into staging table.

    I want to read a flat file and upload data into staging table.
    Am working in oracle apps r12.
    which is the standard way to take data inside the staging table.
    Is it SQL LOader or UTL_FILE.
    r is there any other utility to upload bulk data into staging table.https://forums.oracle.com/forums/search.jspa?threadID=&q=utl_file+AND+loader&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=utl_file+AND+flat+AND+file&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=SQL+AND+LOADER+AND+Staging&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • SQL Server Date Conversion to Oracle Date

    I am new to ODI and am trying to figured out how to move a SQL Server date datatype value to an Oracle date.
    Thanks in advance.

    SQLServer datetime datatype is moved to an Oracle TIMESTAMP datatype via the technology's data type mapping. That particular LKM 'SQL to SQL' is written in java so reads from SQLServer into java datatypes then writes back out to Oracle.
    Cheers
    David

  • Xml 2 Fmb conversion in Oracle 9i

    I have converted several forms into XML with command "iff2xml90.bat *.fmb"
    All files *.fmb have been converted into _fmb.xml
    Then I have converted xml files into FMB with command "ifxml2f90.bat *.xml"
    All files _fmb.xml have been converted into _fmb.fmb instead of *.fmb
    If I use ifxml2f90.bat command with only file it's OK, but if I use it with several ones
    it doesn't work.
    Why ? What workaround exists ?

    Wilcards are not supported for the conversion command line - you can specifiy multiple files one after the other but not wildcards. IF you want to use wildcards then write your own Batch file or shell script that does that.

  • AGD/GDA datum conversions in Oracle 8.1.7

    Dan and/or Oracle Spatial development team,
    Australia has changed its datum for its national coordinate
    systems from AGD66/AGD84 to GDA94. Thus we have gone from
    a pre-satellite customised datum to a geocentric datum.
    I am planning for the conversion of ALL geographic data
    held at FT. This includes SDO_GEOMETRY data and coordinate
    data held in N/E columns in an Oracle based table.
    Two questions:
    1. What method does SDO_CS.TRANSFORM_LAYER use when converting between datums? NTv2 file based coordinate shifts or a 7 parameter transformation (Tasmania has its own parameters for a 7 parameter transformation).
    2. Is there some simple way to trick Oracle Spatial to allow me to update point data held in two columns ie Northing, Easting. Perhaps a trick using a view which dynamically constructs an MDSYS.SDO_GEOMETRY object?
    regards
    Simon

    Bruce and Siva,
    Thanks for the replies.
    The 7 parameter transform will suffice for most of our Oracle Spatial based data and it is good to be reminded that I can
    roll my own parameters!
    Regarding tranform(), I guess I will write a function that
    takes the N/E columns (IN/OUT), constructs an SDO_GEOMETRY object, transforms it, returns it and extract its n/e coordinate.
    update mytable m
    set northing = agd2gda(m.northing,m.easting).sdo_point.x,
    easting = agd2gda(m.northing,m.easting).sdo_point.y;
    I wonder if the query optimizer will notice its the same call
    and only execute it once?
    regards
    SImon

  • Conversion in oracle

    Hi all,
    i am new in this ... i only know therotically about conversion but you guys please tell me the steps ...so that i can do it practically ...and will help me in my project
    Edited by: sagar.palve on Jun 14, 2012 4:13 AM

    >
    i am new in this ... i only know therotically about conversion but you guys please tell me the steps ...so that i can do it practically ...and will help me in my project
    >
    In order to do that you need to explain what it is you want to do.
    1. What is your full sql developer version?
    2. What project are you talking about?
    3. What do you mean by conversion? Is this a conversion from another database to Oracle?
    Please provide details about the project.

Maybe you are looking for

  • Why does my Mac Air when on the internet the window just freezes when loading?

    MacBook Air 13, 1.8 GHz Intel Core i5, 4 GB 1600 MHz DDR3, Macintosh HD, Intel HD Graphics 4000 1024 MB, OS X Yosemite 10.10.3 When connected to the internet things run pretty smoothly, then when I change sites or load another window it sometimes sta

  • Recommended External Drive for iTunes

    Can anyone recommend a good 2-3 terabyte external drive to be attached either to Mac Mini or Network and to hold all my current and future iTunes media ?? I have 500gb already and dont want to use up the entire Mac Mini drive Tha

  • How to Install Oracle Data Access Components (ODAC) on Windows Server 2003?

    I recently installed "32-bit Oracle Data Access Components (ODAC) with Oracle Developer Tools for Visual Studio" on my computer (Windows 7, 64bit). Everything seems fine and I can develop and run my application in Visual Studio 2010 and IIS 7. Now, w

  • Manual check updation

    Hello Gurus, Can any one solve this issue. I have 3 company codes-555,888,999 and here paying company code is 444. So, i did Vendor invoice from FB60, company code 555 amt 100       F-53 vendor payment company code 555 amt 100   After that when i wan

  • Dynamically  filename is required in CC but not reuired in Target field

    HI, my requirement is to create filename dynamically(UDF) in Receiver communication channel but I dont want the name should be populated in the target field as target field is not provided by business. I received the below UDF from SDN    String date