Convert sql form 3.0 to oracle form

hi all
if someone know how to convert oracle sql form 3.0 to oracle form
best regards

Hi Samer:
The f45gen executable tha come with forms 4.5 can move your forms to 4.5 and then you can upgrade to forms 6i (or possibly 9i). Unfortunately I am writing this from home and I do not have Forms 4.5 her but I do have it at work. I'll sees if I can get you the correct syntax by tomorrow (if I have time). In the mean time if you have forms 4.5 you can try looking at the help for maybe f45gen or conversion, etc and you may get the syntax. Hope this helps.
Thomas Morgan

Similar Messages

  • FRM-10043: Cannot open file after converting SQL*Form 2.3 INP to 4.5 FMB

    After running the f45gen32.exe on a version SQL*Form 2.3 INP file, it generates
    the version 4.5 FMB adn the .err file (that does not indicate that any errors have occurred).
    When I attempt to open the converted module using Developer 2000 v.1.3, it continuously
    indicates the following error:
    FRM-10043: Cannot open file
    This error is received despite selecting all the required conversion parameters (per metalink and
    other notes found on this forum).
    This is a conversion of SQL*Forms version 2.3 to 4.5, with the ultimate goal of converting to 6i.
    The same process works with other forms.?
    Any suggestions would be greatly appreciated.

    Does anyone have a workaround for this issue?
    Is Developer 2000 v.1.3 the incorrect version to use?
    Thank you for your assistance.

  • How to convert SQL server stored procedures to Oracle 11g

    Hi Experts,
    In SQL server 30 stored procedures are there how to convert all the stored procedure
    from SQL server to Oracle 11g.
    Please help me,
    Thanks.

    ramya_162 wrote:
    In SQL server 30 stored procedures are there how to convert all the stored procedure
    from SQL server to Oracle 11g.
    The single most fundamental concept you need to understand (grok in its fullness) is:
    ORACLE IS NOT SQL-SERVER
    There is very little, to NOTHING, in common between T-SQL (a language extension to SQL) and PL/SQL (integration of SQL with the language Ada, part of ALGOL family of languages that includes Pascal and C++).
    So taking a T-SQL procedure and porting it as is to PL/SQL is plain stupid.
    Why?
    Oracle sucks at trying to be SQL-Server.
    So how do you migrate from SQL-Server to Oracle?
    By taking the REQUIREMENTS that the T-SQL procedures address, and addressing these requirements using Oracle SQL and PL/SQL.

  • Error converting SQL Server text field to Oracle CLOB

    I am trying to convert an SQL Server DB to Oracle DB using DB link. The issue I am facing is one of the SQL Server table contains text field and we are trying to convert the text field to CLOB.
    The error I am getting is "SQL Error: ORA-00997: illegal use of LONG datatype"
    The statement is something like this.
    Insert into oracle_table
    Select col_1,col_2,col_3,col_4,col_5 from sql_table@sqldblink;
    Please help.

    Hi,
      This is a known restriction involving long columns -
    (1) LONG datatype not supported with use of DBLINK when insert or update involves a select statement
    (2) LONG datatype cannot be used in a WHERE clause, in INSERT into ... SELECT ... FROM
    constructs, and in snapshots.
    The workround is to use a PL/SQL procedure or try the SQLPLUS COPY command.
    If you have access to My Oracle Support then review these notes -
    Cannot Move A Long From non Oracle database Ora-00997: Illegal Use Of Long Datatype (Doc ID 1246594.1)
    How To Workaround Error: Ora-00997: Illegal Use Of Long Datatype (Doc ID 361716.1)
    Regards,
    Mike

  • Converting SQL Server Stored Procedure to Oracle

    Hi there,
    I tried to use SwisSQL to convert my SQL Server stored procedure to Orcale without much success.
    Is there anyone who could help me out with this?
    My SQL Server Stored Procedure is:
    CREATE PROCEDURE [dbo].[SP_BackgroundCheckRequest]
         --MASTER Table
         @MASTER_ID int,
         @PERSONNEL_ID int = NULL,
    @DATE_OF_BIRTH datetime = NULL,
         @GENDER varchar(1) = NULL,
         @COUNTRY_OF_BIRTH varchar(3) = NULL,
    @TOWN_OF_BIRTH varchar(100) = NULL,
         @STATE_OF_BIRTH varchar(50) = NULL,
         @CHECK_CATEGORY varchar(10) = NULL,
         @CHECK_TYPE varchar(10) = NULL,
         @PRIORITY varchar(10) = NULL,
         @PRIORITY_REASON varchar(100) = NULL,
         @SCREENING_LEVEL nchar(1) = NULL,
         @POSITION nchar(50) = NULL,
         @REQUEST_SOURCE varchar(60) = NULL,
         --NAME_TYPE Table
         @NAME_TYPE varchar(5) = NULL,
         @FAMILY_NAME varchar(50) = NULL,
         @FIRST_NAME varchar(50) = NULL,
         @MIDDLE_NAME varchar(50) = NULL,
         @TITLE varchar(10) = NULL,
         @PREFFERED_NAME varchar(40) = NULL,
         @PREVIOUS_NAME varchar(140) = NULL,
         --ADDRESS_TYPE Table
         @ADDRESS_TYPE varchar(10) = NULL,
         @ADDRESS_LINE_1 varchar(30) = NULL,
         @ADDRESS_LINE_2 varchar(30) = NULL,
         @ADDRESS_LINE_3 varchar(30) = NULL,
         @COUNTRY varchar(3) = NULL,
         @SUBURB varchar(50) = NULL,
         @STATE varchar(50) = NULL,
         @POSTCODE varchar(15) = NULL,
         @START_DATE varchar(10) = NULL,
         @END_DATE varchar(10) = NULL,
         --LICENSE_TYPE Table
         @LICENSE_TYPE varchar(5) = NULL,
         @LICENSE_AGENCY varchar(15) = NULL,
         @LICENSE_NUMBER varchar(100) = NULL,
         @LICENSE_SIGHTED varchar(1) = NULL,
         --PHONE_TYPE Table
         @TELEPHONE_TYPE varchar(5) = NULL,
         @TELEPHONE_NUMBER varchar(20) = NULL,
         @MOBILE_TYPE varchar(5) = NULL,
         @MOBILE_NUMBER varchar(20) = NULL,
         @EXTENSION_TYPE varchar(5) = NULL,
         @EXTENSION_NUMBER varchar(20) = NULL,
         --PASSPORT_TYPE Table
         @PASSPORT_TYPE varchar(5) = NULL,
         @PASSPORT_NUMBER varchar(50) = NULL,
         @PASSPORT_COUNTRY varchar(3) = NULL,
         @PASSPORT_SIGHTED varchar(1) = NULL
    AS
    BEGIN TRANSACTION
    INSERT into MASTER (MASTER_ID, PERSONNEL_ID, DATE_OF_BIRTH, GENDER, COUNTRY_OF_BIRTH,
         TOWN_OF_BIRTH, STATE_OF_BIRTH, CHECK_CATEGORY, CHECK_TYPE, PRIORITY, PRIORITY_REASON,
         SCREENING_LEVEL, POSITION, REQUEST_SOURCE)
         VALUES (@MASTER_ID, @PERSONNEL_ID, @DATE_OF_BIRTH, @GENDER, @COUNTRY_OF_BIRTH,
         @TOWN_OF_BIRTH, @STATE_OF_BIRTH, @CHECK_CATEGORY, @CHECK_TYPE, @PRIORITY, @PRIORITY_REASON,
         @SCREENING_LEVEL, @POSITION, @REQUEST_SOURCE)
    IF @@ERROR <> 0
    BEGIN
         ROLLBACK
         RAISERROR ('Error inserting values into MASTER table!', 16, 1)
         RETURN
    END
    INSERT into NAME_TYPE (MASTER_ID,NAME_TYPE,FAMILY_NAME,FIRST_NAME,MIDDLE_NAME,TITLE)
         VALUES (@MASTER_ID,@NAME_TYPE,@FAMILY_NAME,@FIRST_NAME,@MIDDLE_NAME,@TITLE)
    IF @@ERROR <> 0
    BEGIN
         ROLLBACK
         RAISERROR ('Error inserting values into NAME_TYPE table!', 16, 1)
         RETURN
    END
    INSERT into ADDRESS_TYPE (MASTER_ID,TYPE,ADDRESS_LINE_1,ADDRESS_LINE_2,ADDRESS_LINE_3,
              COUNTRY,SUBURB,STATE,POSTCODE,START_DATE,END_DATE)
         VALUES (@MASTER_ID,@ADDRESS_TYPE,@ADDRESS_LINE_1,@ADDRESS_LINE_2,@ADDRESS_LINE_3,
              @COUNTRY,@SUBURB,@STATE,@POSTCODE,@START_DATE,@END_DATE)
    IF @@ERROR <> 0
    BEGIN
         ROLLBACK
         RAISERROR ('Error inserting values into ADDRESS_TYPE table!', 16, 1)
         RETURN
    END
    INSERT into LICENSE_TYPE (MASTER_ID,TYPE,AGENCY,NUMBER,SIGHTED_YN)
         VALUES (@MASTER_ID,@LICENSE_TYPE,@LICENSE_AGENCY,@LICENSE_NUMBER,@LICENSE_SIGHTED)
    IF @@ERROR <> 0
    BEGIN
         ROLLBACK
         RAISERROR ('Error inserting values into LICENSE_TYPE table!', 16, 1)
         RETURN
    END
    INSERT into PHONE_TYPE (MASTER_ID,TYPE,NUMBER)
         VALUES (@MASTER_ID,@TELEPHONE_TYPE,@TELEPHONE_NUMBER)
    IF @@ERROR <> 0
    BEGIN
         ROLLBACK
         RAISERROR ('Error inserting Telephone number into PHONE_TYPE table!', 16, 1)
         RETURN
    END
    IF ((@MOBILE_TYPE <> NULL) AND (@MOBILE_NUMBER <> NULL))
    BEGIN
         INSERT into PHONE_TYPE (MASTER_ID,TYPE,NUMBER)
              VALUES (@MASTER_ID,@MOBILE_TYPE,@MOBILE_NUMBER)
         IF @@ERROR <> 0
         BEGIN
              ROLLBACK
              RAISERROR ('Error inserting Mobile number into PHONE_TYPE table!', 16, 1)
              RETURN
         END
    END
    IF ((@EXTENSION_TYPE <> NULL) AND (@EXTENSION_NUMBER <> NULL))
    BEGIN
         INSERT into PHONE_TYPE (MASTER_ID,TYPE,NUMBER)
              VALUES (@MASTER_ID,@EXTENSION_TYPE,@EXTENSION_NUMBER)
         IF @@ERROR <> 0
         BEGIN
              ROLLBACK
              RAISERROR ('Error inserting Extension number into PHONE_TYPE table!', 16, 1)
              RETURN
         END
    END
    INSERT into PASSPORT_TYPE (MASTER_ID,NUMBER,COUNTRY,SIGHTED_YN)
         VALUES (@MASTER_ID,@PASSPORT_NUMBER,@PASSPORT_COUNTRY,@PASSPORT_SIGHTED)
    IF @@ERROR <> 0
    BEGIN
         ROLLBACK
         RAISERROR ('Error inserting values into PASSPORT_TYPE table!', 16, 1)
         RETURN
    END
    COMMIT

    First, a basic concept. That also illustrates how different Oracle is (and PL/SQL) from SQL-Server (and T-SQL).
    PL/SQL integrates two different languages. The PL language. The SQL language. It allows you to code SQL source code natively inside the PL language. The PL compiler is clever enough to do the rest - make calls to the SQL engine to create SQL cursors, bind PL variable values to bind variables in the SQL code. Etc.
    PL is a "proper" programming language. It is much like Pascal (it is based on Ada, a close family member of Pascal). It is nothing at all like T-SQL.
    Okay, now for the very basic rule for Oracle development.
    Maximize SQL. This means using the SQL language to crunch data. It is the "closest" to the data. It is designed and optimised for dealing with data. Do your data processing using SQL.
    Minimize PL/SQL. This means using the PL language not to crunch data, but to provide the conditional logic. Implement business rules. And then have the SQL language crunch the data as the data processing language.
    Attempting to directly translate T-SQL code into PL/SQL is flawed. It is like trying to make coffee with teabags. Yeah, the tea may have caffeine it, but it is not coffee.
    To do what that T-SQL script does, insert a row into a table, a typical PL/SQL equivalent will look as follows:
    create or replace procedure InsertMaster( masterRow master%rowtype ) authid definer is
    .. types and variables declared here
    begin
      -- masterRow is a record structure that matches the actual MASTER table
      .. apply business rules and validation to the data.. raising user exceptions as needed
      -- e.g. the POSITION column must be upper case
      masterRow.position := upper(masterRow.position);
      -- after the business logic and data validation we can add the row to the table
      -- (PL will make the INSERT call to the SQL engine)
      insert into master values masterRow;
    end;No commit. The caller does the business transaction. It needs to decide when to commit to maintain the integrity of the data in the database. It may need to do several more calls, before committing.
    With this approach, we can give the application schema (the caller) execute privs on this procedure. This procedure is defined with definer rights. This means it runs with the privs of owner of that procedure and MASTER table. It is trusted code. It does all the correct stuff to add a valid and checked row to the MASTER table. So we give the app schema execute privs on the procedure and no insert priv on the MASTER table.
    The only way the caller can add row to the MASTER table is via this trusted procedure of ours.
    And this is a typical approach in Oracle - using the PL/SQL (both PL language and SQL language) code to create an interface to a logical database in Oracle. Abstracting the complexities of SQL from the caller. Moving business and validation into PL. Allowing us the flexibility of modifying business and validation logic, without touching a single byte of caller/client code. Allowing us to manage and tune SQL performance without dealing with (badly designed and coded) SQL from a client - as the SQL resides in PL/SQL packages and procedures and functions.

  • Can sql*forms version 3 run in oracle 8 or higher database

    I support an application developed many years ago with sql forms version 3 - has .inp files for the source code. It is currently running on a 7.3.4 database. My bos has asked why the database cannot be updated to a newer version. It is my understanding theat newer versions of the database do not support the types of triggers used in sql*forms. is this correct?
    thanks
    tim

    all objects documented below are located in C:\...TNS_Admin folder (instant client install path similar to path structure mentioned by EdStevens). The tnsnames.ora and SQLNet.ora1 were copied from Development_Suite\NETWORK\ADMIN.
    Here are several key entries from tnsnames.ora :
    TOMACC=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=txri-oprdracdb-1-vip.tomkinsbp.com)(PORT=1522))
    (CONNECT_DATA=
    (SERVICE_NAME=TOMACC)
    (INSTANCE_NAME=TOMACC1)
    EBSOTM=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=txri-ebsdevdb-1.tomkinsbp.com)(PORT=1523))
    (CONNECT_DATA=
    (SERVICE_NAME=EBSOTM)
    (INSTANCE_NAME=EBSOTM)
    TOMAC5=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=txri-oqadb-1.tomkinsbp.com)(PORT=10501))
    (CONNECT_DATA=
    (SERVICE_NAME=TOMAC5)
    (INSTANCE_NAME=TOMAC5)
    TOMAC6=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=txri-oprdapp2-2.tomkinsbp.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=TOMAC6)
    (INSTANCE_NAME=TOMAC6)
    Here is sqlnet.ora1 (not sure the 1 should be there...but I copied it from Development_Suite as is:
    # sqlnet.ora Network Configuration File: C:\DevSuiteHome_1\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES, EZCONNECT, ONAMES, HOSTNAME)
    Here is Listener.Ora - looks totally wrong - likely created when I installed 11g_r2 is my guess
    # listener.ora Network Configuration File: C:\Program Files\app\Oracle\tns_Admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\app\eswistak\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\app\eswistak\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ADR_BASE_LISTENER = C:\app\eswistak

  • Migration from SQL Forms 3.0 to Forms 6i

    Dear All,
    i am having an application which is in SQL Forms 3.0, now i want to convert my application into Forms 6i or Forms 4.5. can u please help me how to get my goal??
    is there any utility by using that i can convert all my forms, if it is exist then please tell me the name and from where i can get it.
    Thanx to all in advance.
    Regards
    Krishna

    Hi,
    Please visit the url below for your SQL*Forms 3.0 to Oracle Forms 6i migration project:
    http://www.acclivities.com/Products/Migrator.html
    Thanks,
    Aijaz Qureshi
    Acclivities Technology

  • How to convert a Form to a Text file and XML file?

    Hi:
    I want to convert a Form to a Text file and XML file,but I don't know how convert?
    Please help!
    Oracle Form Builder V10.1.2.0.2
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0
    Thanks in advance!

    ..or follow the steps in Mtalink note; Doc ID: Note:196924.1
    Forms XML Conversion Feature ( Converting Forms To XML)

  • Problem while converting a Form to ADF using Jheadstart

    Hi,
    As I convert the forms to ADF . When I am in the 1st step to extarct the application defination.xml and ADF BC's .
    When I click on forms2ADF generation to generate the xml and ABF business components . I receive the following error:
    java.lang.Exception: EMPDEPT: : An error occurred while composing ADF Business Components:
    java.lang.NullPointerException
         at oracle.jmig.target.bc4j.objects.BC4JObject.getChild(BC4JObject.java:204)
         at oracle.jmig.target.bc4j.objects.ViewLinkDefEnd.findOrCreateViewAttribute(ViewLinkDefEnd.java:189)
         at oracle.jmig.target.bc4j.objects.ViewLinkDefEnd.processProperties(ViewLinkDefEnd.java:125)
         at oracle.jmig.target.bc4j.objects.BC4JObject.findOrCreate(BC4JObject.java:290)
         at oracle.jmig.target.bc4j.objects.ViewLinkDefEnd.<init>(ViewLinkDefEnd.java:41)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at oracle.jmig.target.bc4j.BC4JClassReflection.construct(BC4JClassReflection.java:132)
         at oracle.jmig.target.bc4j.BC4JFactory.processElement(BC4JFactory.java:138)
         at oracle.jmig.target.bc4j.BC4JFactory.processNodeList(BC4JFactory.java:244)
         at oracle.jmig.target.bc4j.BC4JFactory.processElement(BC4JFactory.java:197)
         at oracle.jmig.target.bc4j.BC4JFactory.processNodeList(BC4JFactory.java:244)
         at oracle.jmig.target.bc4j.BC4JFactory.processElement(BC4JFactory.java:197)
         at oracle.jmig.target.bc4j.BC4JFactory.processNodeList(BC4JFactory.java:244)
         at oracle.jmig.target.bc4j.BC4JFactory.processElement(BC4JFactory.java:197)
         at oracle.jmig.target.bc4j.BC4JFactory.startProcess(BC4JFactory.java:122)
         at oracle.jmig.target.bc4j.BC4JFactory.createBC4J(BC4JFactory.java:100)
         at oracle.jmig.target.bc4j.BC4JComposer.compose(BC4JComposer.java:178)
         at oracle.jmig.MigrationRunnable.compose(MigrationRunnable.java:473)
         at oracle.jmig.MigrationRunnable.migrate(MigrationRunnable.java:278)
         at oracle.jmig.MigrationRunnable.run(MigrationRunnable.java:130)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:551)
         at java.lang.Thread.run(Thread.java:595)
         at oracle.jmig.target.bc4j.BC4JComposer.compose(BC4JComposer.java:213)
         at oracle.jmig.MigrationRunnable.compose(MigrationRunnable.java:473)
         at oracle.jmig.MigrationRunnable.migrate(MigrationRunnable.java:278)
         at oracle.jmig.MigrationRunnable.run(MigrationRunnable.java:130)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:551)
         at java.lang.Thread.run(Thread.java:595)
    Please help in this regards,
    Regards,
    Noman

    Noman,
    I assume you are using the 10.1.3.3 version?
    If you send an e-mail to [email protected], I will get you access to the latest JHeadstart 11 build which includes many improvements and other fixes in Forms2ADF. Note that you should use this build with JDeveloper 11.1.1.0.
    Steven Davelaar,
    Jheadstart Team.

  • SQL*Forms 3.0 software

    Any idea where I can get my hands on SQL*Forms 3.0 software for some self directed R&D. I have searched on the web extensively but no luck so far.
    Any help will be greatly appreciated.
    Thanks
    Raghu

    Simpler solution. Go Start->Programs->Oracle Developer 6.0->Forms Compiler. Fill in the details you require and don't forget to mark the square Upgrade from 3.0 Forms or 5.0 Menu. If you do not understand something, you probably do not need it.
    Good luck,
    Dave

  • How to convert 6i forms to 10g

    hello,
    please tell me how to convert 6i forms into 10g forms
    i cant find ne way to do that.

    If your forms are not all integrated with each other, in other words some are for Payrole and others are for Inventory, you could maintain an AS 1.0.2 environment for one function and an AS 10.1.2 environment for another. You can access the same database assuming you are running the latest Forms 6i version (unless you are not interested or concerned about using an Oracle Certified configuration). The latest (and last) Forms 6i release supported for non-Oracle Applications customers is 6.0.8.26 (Patch 17) and can be downloaded from Metalink.
    Of course, the above configuration would mean that the URL to each application would differ because they would likely be on different machines and/or use different port numbers. For example:
    http://system1.com:7777/servlet/f60servlet?form=payrole.fmx
    http://system2.com:7780/forms/frmservlet?form=inventory.fmx
    Bottom line is that all forms modules running in a particular AS environment must be of the same version. So, forms running in AS 10.1.2 must be compiled against Forms 10.1.2. Forms running in AS 1.0.2 must all be compiled against Forms 6.0.8

  • Convert dynamic form to dynamic input form

    Hi All,
    I am using Jdeveloper 11.1.2.4.
    As a part of a requirement, I have created a dynamic form built out of a read only view object.
    On a user event (button press), I want to convert the form into an input form to allow the user to make suitable change to data and save to the database.
    At this stage I have programmatic access to the table name which is being used to create the dynamic form.
    Please suggest on how to convert the dynamic form into input form.
    Best Regards,
    Ankit Gupta

    <cfupdate> process data from the form scope. You are
    not putting your
    role datum into the form scope. You need to scope the
    variable in your
    cfset(s).
    <cfset form.roleColumn = form.role=>
    But I am not sure this would work well. It is probably better
    if you
    write your own SQL. <cfinsert> and <cfupdate> are
    for very basic
    database operations. Once you start putting other processing
    requirements in, such as this, they quickly become
    inadequate.
    Try replacing your <cfupdate> with a <cfquery>
    tag something like this.
    <cfquery datasource="my_DSN">
    UPDATE my_table
    SET lastName = '#form.lastName#',
    firstName = '#form.firstName#',
    #form.role# = true
    WHERE key = value
    </cfquery>
    I made my best guesses at how this SQL would look based on
    the examples
    you have provided. You'll have to finish it off based on your
    actual
    requirements.
    Mikelaskowski wrote:
    > Thanks,
    > I really like your solution. It definatly sounds a lot
    easier.
    > I am still having a little trouble though. I am probably
    missing something
    > silly (especially in my cfupdate tag) as I am a little
    new at this stil.
    >
    > When I used your code in my action page I get the
    following error:
    > Error Occurred While Processing Request
    > Variable PRESIDENT is undefined. <--when president is
    selected in the role
    > field. It changes nicely when another is selected.
    >
    > Here is my current code on my action page:
    >
    >
    > Thanks Again!!!
    >
    > <CFSET lastFirst = lastName & ", " &
    firstName>
    > <CFSET roleColumn = Evaluate(role)>
    > <cfupdate datasource="my_DSN"
    tablename="my_table">
    > <html>
    > <head>
    > <title>Title</title>
    > </head>
    > <body>
    > <cfoutput>The role is #roleColumn#<br>
    > The value is #lastFirst#</cfoutput>
    > </body>
    > </html>
    >

  • Sql Forms 2.3 help needed urgent

    I have a situation here.How to navigate to the next blk, And If we make any changes in the .inp file will it help?
    My client here uses Forms 2.3 for there Oracle Apps 10.7c

    Use the block level trigger FND_NXTBLK, or if not in an AOL environment use NXT_BLK (if I recall correctly). This is how you navigate from block to block. The command would be
    #EXEMACRO exetrg FND_NXTBLK;
    or you could use go_blk
    #EXEMACRO GO_BLK block_name;
    The .inp file is your form. Don't edit it unless you know what you are doing. Use the SQL*Forms tool and you'll be safer.
    Hope this helps. Not much detail in your posting. - Tristan

  • SQL*Menu 5.0 and SQL*Forms 3.0

    We are running Oracle 7.3.4 on HP UX 10.2.(We know it is not supported-but have no option to upgrade at present) We are upgrading our server and will be installing Oracle 7.3.4 Enterprise edition on the new server. I read on the Oracle Installation guide that SQL*Menu 5 and SQL*Forms 3.0 is not avalilable on the 7.3.4 Installation(They said it is avalilable on 7.2- we have got the CD for that)
    COuld you confirm if SQL*MEnu 5 .(SQL*Menu Version 5.0.11) and SQL*Forms 3.0 (SQL*Forms version 3.0.16)is available or not on the Oracle7.3.4 CD. If not , how do I install these two from the Oracle 7.2 CD- (Since I need to install Oracle 7.3.4) . Or can I just copy the relevant directories from the old server to the new server. If i do that will I have to relink executables after copying ? Many thanks in anticipation

    The SQL*Menu 5.0 and SQL*Form 3.0 tools are not on (our) 7.3.4 CD for HP-UX 10.20. The tools on the 7.2 CD are actually the v6 versions, and I think you have to install them to a seperate oracle home anyway, in which case, all you need to do is install 7.3.4 server to a different oracle home.
    I did have a go at re-linking them, but I could not get it to work, so I just copied the binaries and configuration over. They've worked perfectly since we did that in '98/'99.
    Good luck.
    Tak Tang

  • Did JHeadstart 11g capable to convert 10g forms to 11g  ADF Faces?

    We would like to purchase JHeadstart. We are using Oracle 10g Database , Forms & Report. Ours goal is to convert 10g forms to 11g ADF Faces. Which version of JHeadstart could capable to convert 10g Forms to 11g ADF Faces Directly? Need yours valuable suggestion/consultancy.

    Shahed,
    Thanks for your interest in Oracle JHeadstart. You should use Oracle JHeadstart 11g. You can buy the software through your local Oracle Consulting contact. If you do not have a contact please contact [email protected] and we will provide the right contact details. A good way to get a project like this started is through the Forms2ADF assessment service. You can read more about it in the factsheet http://www.oracle.com/technology/products/jheadstart/OracleForms2ADFAssessment.pdf.
    Regards,
    Ton
    Oracle JHeadstart Team

Maybe you are looking for