Working on Forms

I am working on re-creating my companies web site.  I have the contact us form complete and functioning properly.  I am trying to create a second form to request a quote, where the information entered on the initial contact page will transfer over to the second page.  I am not sure how to accomplish this.  Would this be directed somehow through the supporting txt doc or in the code itself?
Any help would be appreciated!

Not sure what you mean by txt file. In order to process forms, you need a server side script of some kind. Can you send us the code from the form so we can see what you are attempting?

Similar Messages

  • TABLE_FROM_BLOCK is not working in forms 10g ??????

    Hi all,
    How to use TABLE_FROM_BLOCK in forms 10g. its working in forms 6i .
    the same form is not working in 10g . i got this error.
    frm-40933 Cannot populate table because datatype is incorrect.
    pls help me
    Regards
    Gopinath M

    According to Metalink's Developer 2.1 Release Notes (Doc ID #90090.1), section 4.2.1, "TABLE_FROM_BLOCK Built-In":
    DO NOT use the TABLE_FROM_BLOCK built-in described in the
    documentation. It is reserved for internal use only. No support
    for this built-in will be provided under any circumstances.
    If you used this built-in, you will need to recode your from(s) for 10g.
    Message was edited by:
    Mark Roberts

  • Ole2 commands not working in forms 10g

    OLE2.set_property(Application, 'Visible', true);
    above statement not working in forms 10g;

    Try to use the OLE2 fuction from WEBUTIL library. There is function in webutil CLIENT_OLE2.
    -Ammad

  • SQL Code not working in Forms Developer?

    Hi all,
    I'm using Oracle 10g and I have th following code running on iSQL+ but not working on Forms and I got the following erro
    The SQL code:
         select returningreason
            from (
                     select returningreason,
                     dense_rank() over (partition by 1 order by count(*) desc) as drnk
                     from returned_goods
                     group by returningreason)
           where drnk = 1;And the error happens near the word over to the right and the error statement is:
    Error 103 at line 18, column 19
       Encountered the symbol "(" when expecting one of the following:
             , formThanks in advance :)

    Triggers are compiled in forms so need to use only the features available to forms, which doesn't include all the new stuff in the database.
    select over partition
    NVL2They don't work in forms and reports too.
    Also if you use them in record Group
    Forms/SQL Compiler was not lined up to the database(10G).
    Meanwhile,for example. Pipelined TABLE and relative Select work in Reports AND Forms.

  • How do i get a work authorization form for a repair?

    My MacBook Pro has some structural damage and I am trying to get it repaired. I have a reservation at the Genius Bar set for Wednesday. On the website however, it says that if a repair is needed, then I need a work authorization form and to bring it with me. I was wondering how I get one of these forms. Do I print it off from their website? I don't know. Please help!!

    My experience has been that one will be issued at the genius bar if you choose to have any repairs performed.  I suggest that you simply keep the appointment and you will have one issued by the technician.
    Ciao.

  • Work request form in workflow

    Hi All,
    Do you have any idea how to create notification and work order automatically into SAP from Work Request Form for visiblity into cost of resource and material prior to commitments.
    Thanks

    Answered

  • How do i get a work authorization form

    how do I get a wowk authorization form to take to the repair centre?

    Welcome to the Support Communities. This thread may help:
    how do i get a work authorization form for a repair?
    ...Found in the More Like This section at right. This ASC tutorial may also help:
    Search the community

  • Forte form editor wont work, missing *.form file

    Hi,
    I have a .java GUI file (subclass of a subclass of JDialog) that was generated with Forte, but the .form file that the form editor needs wasnt checked into CVS. So now I cant open the form editor in Forte (sun one). Is there a way to auto generate a new one based on the *.java code?
    Thanks,
    Chris
    ps. I know this isnt a forte board, I coudlnt find the forte board.
    pps. Sorry if this has been asked before, I searched for the answer and couldnt find one...
    ppps. I tried a blank file, and I tried a minimal XML document, neither worked (the *.form file is XML).

    Thanks for the suggestion!
    I searched their list, and found this post:
    Essentially it is currently impossible, and the GUI must be recreated. dote!
    http://www.netbeans.org/servlets/ReadMsg?msgId=87985&listName=nbusers
    Richard,
    currently it is not possible to generate .form file from java code - because
    form editor is not "two-way" (that is why .form XML files are used to store
    GUI information). However two-way editing is planned for the future - see
    our proposal:
    http://www.netbeans.org/www-nbusers/msg03322.html.
    There was also a related discussion some time before (about "reverse
    endineering"):
    http://www.netbeans.org/www-nbusers/msg01590.html.
    As for converting forms from old NetBeans X2: direct serialization was used
    for saving forms sooner, which is not suitable for longer persistence -
    because e.g. serialized Swing components might not be compatible between JDK
    versions. (That's why we moved to more general XML storing time ago.) So -
    to import older forms you should use at least the same JDK version you used
    with old X2. I would also recommend you to import it using Forte 2.0, which
    could be more "polite" to old form formats (is a bit older than NetBeans
    3.1). Once you save form to XML .form file, you can use it in newest JDK and
    NetBeans.
    Hope this somehow helps,
    Tomas Pavek
    -----Original Message-----
    From: Uschold, Richard J. [mailto:[email protected]]
    Sent: Tuesday, January 30, 2001 5:22 PM
    To: '[email protected]'
    Subject: [nbusers] Converting a *.java file to a *.form or *.xml
    Is there a way to start with a *.java file and convert / generate a *.form
    file? (for NetBeans X2 2.1) Or maybe convert / generate a *.xml project
    file for NetBeans 3.1?
    I had a project in NetBeans X2 2.1 last year and I lost everything except
    the *.java file.
    Thanks
    Rick Uschold

  • Need help for working in forms

    Hi i am using oracle 10g and forms 6i.
    I written one query in toad it is working fine but when i put in forms-6i it's giving error. i understood that it's not taking inline views.
    Here i am going to put the query can any body please help to work in forms also.
    SELECT PART_NO,DESCRIPTION,DEFECT_QTY,DESTRUCTION_QTY,DEFECT_QTY-DESTRUCTION_QTY PENDING
                   FROM (SELECT ESD.PART_NO,EPM.PRT_DESCRIPTION DESCRIPTION,SUM(DEFECT_QTY) DEFECT_QTY,
                   NVL(SUM((SELECT SUM(DECODE(TRAN_TYPE,'E',QTY))
                   FROM EIIS_DEFECTTRANTB
                   WHERE REJ_NO=ESD.DRS_NO AND PART_NO = ESD.PART_NO)),0) DESTRUCTION_QTY
                   FROM EIIS_SUPDEFECT_HDR ESH,
                   EIIS_SUPDEFECT_DTL ESD,
         EPPS_PARTTB     EPM
                   WHERE ESH.DRS_NO = ESD.DRS_NO
                   AND     ESD.PART_NO = EPM.PRT_PARTNO          
                   AND     ESH.REJ_TYPE ='M'
                   AND     ESH.STATUS = 2
                   GROUP BY ESD.PART_NO,EPM.PRT_DESCRIPTION)
         WHERE DEFECT_QTY-DESTRUCTION_QTY>0
    Thanks in advance...
    Regards
    indra

    If it's working in toad it will definitely work in forms also,make sure that bind variables you are keeping should be in the data block..Try to print a message after your query so that you will know whether control is going to your query or not.
    Declare
    v_test         VARCHAR2(100);
    Begin
    SELECT PART_NO,DESCRIPTION,DEFECT_QTY,DESTRUCTION_QTY,DEFECT_QTY-DESTRUCTION_QTY PENDING
    INTO
    FROM (SELECT ESD.PART_NO,EPM.PRT_DESCRIPTION DESCRIPTION,SUM(DEFECT_QTY) DEFECT_QTY,
    NVL(SUM((SELECT SUM(DECODE(TRAN_TYPE,'E',QTY))
    FROM EIIS_DEFECTTRANTB
    WHERE REJ_NO=ESD.DRS_NO AND PART_NO = ESD.PART_NO)),0) DESTRUCTION_QTY
    FROM EIIS_SUPDEFECT_HDR ESH,
    EIIS_SUPDEFECT_DTL ESD,
    EPPS_PARTTB EPM
    WHERE ESH.DRS_NO = ESD.DRS_NO
    AND ESD.PART_NO = EPM.PRT_PARTNO
    AND ESH.REJ_TYPE ='M'
    AND ESH.STATUS = 2
    GROUP BY ESD.PART_NO,EPM.PRT_DESCRIPTION)
    WHERE DEFECT_QTY-DESTRUCTION_QTY>0
    message('Query is'  || v_test);
    END;Edited by: sandy on Feb 7, 2012 11:15 AM
    Edited by: sandy on Feb 7, 2012 11:16 AM

  • Where Should I add the path of Down loaded librearys before working on form

    Hi all,
    This is Narendra.
    I am working on oracle apps technical.
    I have been working on reports,have little Knowledge on forms.
    After Instaliation before working on forms we have to down load librearys in to local mechian and add that path at some where.
    1)where should I add That path?
    2)From where I have to add down load that librearys?
    Regards,
    Narendra.
    [email protected]

    Narendra,
    If you want to open an Oracle Apps form using Forms Builder, then please do the following:
    - Copy all pll files, TEMPLATE.fmb & APPSTAND.fmb from $AU_TOP/resource to your local pc (C:\ABC)
    - Add (C:\ABC) to FORMS60_PATH in the registry (HKLM > Software > Oracle)
    - Close/Open Forms Builder
    - Open the form

  • WRF(Work Request Form)

    Hi All,
    We are using WRF(Work Request form) for entering all the details regarding the equipment failure.We can update how many resource we are using and then material which we are using for repairing this faulty equipment.
    We update all these details in this WRF(Work Request Form).After filling all these details WRF will generate PM Order No. & Notification No. and we update this Order No. and Notification No. manually in WRFu2026But our requirement that these Order and Notification No. will automatically populate in WRF without entering manually..
    Do you have any ideas regarding that.
    Thanks.

    hi

  • Where should I add path of librearys before working on forms

    Hi Group,
    I gone through link given by you,
    Thanks for your replay,
    I feel happy If you give that path which starts with regedit\HKEY_LOCAL\SOFTWER----------------- Some thing I dont Know exactly.
    regards,
    Narendra,
    [email protected]

    Duplicate thread ..
    Where Should I add the path of Down loaded librearys before working on form
    Where Should I add the path of Down loaded librearys before working on form

  • How's is the career in working with forms and reports?

    hello my dear oracle experts.
    i am sandeep.
    i am a fresher who got job in small company should be working on forms and reports.
    how will be the career growth in working on this profile.
    how can i move on to the ERP side??
    can anybody suggest me some career options.
    Thanks in advance.
    Sandeep.
    Edited by: 827089 on Jan 13, 2011 10:48 PM

    Well, Forms and Reports are still core skills to have.
    Oracle JDeveloper and Oracle ADF are the core tool/framework used for our future business applications (Fusion) as well as being at the core of our tools like WebCenter, BPM, EM etc etc. So that might be a smart option of you want to do something new which will be a core Oracle skill. The book I wrote on this might be of use. Google for "Quick Start Guide to Fusion Development Oracle JDeveloper Oracle ADF".
    Regards
    Grant

  • I am a realtor working with form simplicity on Safari but it keeps freezing up on me any advice?

    I am a realtor working with form simplicity on Safari but it keeps freezing up on me any advice?

    Adobe Flashplayer needs to be updated.
    http://mfrmls.com/component/content/article/570

  • Dynamic multi-row SQL :: doesn't work in Forms?

    I need to use a dynamic SQL statement and was at first trying to
    use the DBMS_SQL, which is overly complex. So I read up on NDS
    and thought that it would be much better to use.
    Unfortunately, Forms (6i) refuses to accept the correct syntax.
    ie:
    OPEN plr_cv FOR 'select foo from bar';
    returns an error:
    "Encountered the symbol 'select foo from bar'
    when expecting one of the following:
    select"
    plr_cv has been defined as per the examples in the Oracle
    documentation (as a ref cursor). Even a cut-and-paste of code
    from the Oracle Docs won't work. Why won't forms let me use NDS
    here? Is there a workaround?

    Did you ever get this to work. I tried using dynamic sql but this does not work in FORMS 6i.

  • What is a work authorisation form?

    i have made an appointment after reading through the site , it then told me after I made the appointment that I need to bring a work authorisation form. what is it, and where can I find this? I have booked an appointment as my phone keeps freezing and turning itself off, it has been reset and has the latest software update.

    As it happens, I am in possession of two copies of the form in question -- one for my phone and one for my wife's phone. They were emailed to me after my initial visit to have the battery diagnosed. Had they had any spare batteries left in stock, the form would likely just have been something I signed on a screen, but they were sent to me for use when the store gets more batteries.
    The email subject called it an "Apple Store Work Authorization"; it was a "Genius Bar Work Authorization" inside.
    I don't know why an automated system would have told you to bring a work authorization form if it did not issue one to you. When I made the initial appointment, I was not told by either the website or the emailed confirmation to bring any forms, but perhaps the system has changed as they get further into the battery exchange program, or perhaps it varies from locale to locale. (I'm in the USA. I don't know what Warwick you are from.)

Maybe you are looking for

  • BAPI_TRIP_CREATE_FROM_DATA Fill in all required entry fields

    Dear community, We are trying to use the function "BAPI_TRIP_CREATE_FROM_DATA" for a new customer program to create trips for the employees. When we try and use this function to create trips, it returns an error message saying "Fill in all required e

  • How to use Groovy sum function in JDev11g

    In Fusion developer guide: 3.6 Overview of Groovy Support Says you can use the following built-in aggregate functions on ADF RowSet objects: ■ rowSetAttr.sum(GroovyExpr) ■ rowSetAttr.count(GroovyExpr) ■ rowSetAttr.avg(GroovyExpr) ■ rowSetAttr.min(Gro

  • Monitor settings problem

    Hi there! I've experienced a strange problem related to my LG monitor/Mac Mini. Occasionally the monitor becomes "jumpy", the horizontal lines are visible when I scroll over my dock and also on some animated websites. However, if I go to the display

  • Intermittent too many open files error and Invalid TLV error

    Post Author: jam2008 CA Forum: General I'm writing this up in the hopes of saving someone else a couple of days of hair-pulling... Environment: Crystal Reports XI Enterprise / also runtime via Accpac ERP 5.4 Invalid TLV error in Accpac "too many open

  • Persisting a session even when the browser is closed

    i want to persist a user session even when the browser is closed. How to do it through cookies. I know i define a cookie, set its max age and then put that in response. But its not working. I am using I.E