Need order form guidance / tutorial 

I have been creating various php pages to submit detail to my
database but I have come up against something that is more
complicated.
I would like to do more with a file orderform.php that is
processed by and displays on processorder.php.
When the user clicks “Submit” I would like to
have processorder.php process payment, send both the customer and
me an e-mail confirming the order and insert the contents of the
order into a database.
Can I write processorder.php to do the above or do I have to
recreate the order form with dynamic content? If so, can anyone
suggest a tutorial (for a relative newbie) on creating such a form?
Thanks

There is a book specificallly targeted at those questions of "how do a learn JDeveloper" and "how do a learn ADF" - especially if you are a newbie.
The Quick Start Guide to Fusion Development Oracle JDeveloper and Oracle ADF aims to get you up and running with ADF applications in as short a time as possible.
Further details can be found here:
http://www.mhprofessional.com/product.php?isbn=0071744282
Regards
Grant
p.s. as the author, you might expect slight bias in recommending this book ;o) , but the reviews (from some well known names on the forums) have been positive as well.
http://www.amazon.com/Quick-Start-Oracle-Fusion-Development/dp/0071744282

Similar Messages

  • Need ADF basic guidance Tutorial

    i am newbie. As my current assignment i need to work on Jdevloper and ADF. Can somebody please give some guidance how to start with ADF.
    If somebody can give some basic reference guide/tutorial it will be of great help.
    sudip

    There is a book specificallly targeted at those questions of "how do a learn JDeveloper" and "how do a learn ADF" - especially if you are a newbie.
    The Quick Start Guide to Fusion Development Oracle JDeveloper and Oracle ADF aims to get you up and running with ADF applications in as short a time as possible.
    Further details can be found here:
    http://www.mhprofessional.com/product.php?isbn=0071744282
    Regards
    Grant
    p.s. as the author, you might expect slight bias in recommending this book ;o) , but the reviews (from some well known names on the forums) have been positive as well.
    http://www.amazon.com/Quick-Start-Oracle-Fusion-Development/dp/0071744282

  • Acrobat 9 Pro: Order Form, need SUM=blank? and not $0.00 (HELP!!!)

    I know this might be an easy question for people with javascript knowledge.... but I can't get this working... please help!
    I need Order Form total field (sum) to default to blank (instead of $0.00).
    *example: Under >calculate I am using "simplified field notation" and (Qty1)*7.95 -- sum appears in "total 1"
         The unit price is $7.95 - The value of Qty1 = total 1 (calculations are working fine)
         Currently all total boxes read as $0.00 --- I need SUM to be blank until a customer selects a quantity
    How can I make the SUM default to blank? and NOT $0.00 - Is it a validation script??? If so, please help with code!!!
    Help is appreciated - Thanks!
    PS - SUM fields can't be set as non-printing, because Shipping Dept./Accounting Dept. needs ability to print and view totals (if amount is selected - otherwise it could be blank).
    *** SUM fields need to be blank for customers who print form and manually enter data & totals...
    I am using a Mac, and Adobe Acrobat 9 Pro

    I appreciate the reply... (it's been many hours without one)
    I tried the validation script, and as you indicated, the only way the total field (with the validation script) appears blank is AFTER the Reset button is clicked. (However I have not checked this in a reader)
    I can't see how I can make it work in that manner. Customer inputs Billing & Delivery Addresses at top, then proceeds to select products. If the reset button has to be pressed, all the data (ie. addresses) are removed.
    If there was a way to apply the reset function automatically at the opening of the pdf doc. then it would achieve the result I need. I wonder if there isn't a way with a check box at the top that customer clicks which would apply the reset function.
    If you (or anyone) has any further tips or help I would appreciate it. This is the last item the client has requested for change.
    PS. In case anyone can think of a print script to use... The sum value, when =0 (no qty) needs to print blank sum fields (not $0.00) BUT if there is a sum value, the amount must print (for Ship/Acct Depts)
    *** I just thought of something... The only time where the sum value needs to be blank is when customer prints and inputs data by hand.... so, would there be a way to add a print button that can also clear the sum values at the same time with the "reset" function and the validation script???

  • Creating a purchase order form that has a flowable layout" Help Tutorial

    Regarding the "Creating a purchase order form that has a flowable layout" Help Tutorial,  I can't seem to get the data to pull in for just the PO in question, is there a secret?
    Ideally, it should create one form for each PO with the detail lines for each PO on the individual forms.  Can we do this?
    Many thanks!

    Hi
    If the smartform purchase order is not available in your system
    means you can download the form IDES and you can upload the form in ur ecc 6.0 system.we faced a similar kind of problem in our system and we did as i said.
    Once you uploaded the things you can easily view the form interface and rest of the things related to smartforms.
    Thanks and Regards
    Arun Joseph

  • Need to Make end customer field mandatory in sales order form.

    I need to make end customer field mandatory when sales channel entered as some value...
    for this i have used when validate record on order form
    when i enter a value in sales channel as desired value the form is getting saved automatically and the field is getting mandatory
    but my requirement is to make field mandatory and then to save the order.
    let me know the sequence how it works if any one knows.

    Sanni,
    >
    when i enter a value in sales channel as desired value the form is <b>getting saved automatically</b> and (then) the <b>field is getting mandatory</b>
    but my requirement is to make field mandatory and then to save the order.
    >
    Which trigger are you using to do the "getting saved automatically'?
    Does this trigger fire before the trigger that is making the field mandatory?
    Regards,
    PS: Is this an Oracle EBS query? If yes, this is the wrong forum
    Edited by: Prabodh on Jun 14, 2012 4:48 PM

  • Creating order form and need Java Script to calculate unit price and quantity in Acrobat Pro.

    Hi,
    I am creating order form in Acrobat Pro , and I have
    code
    Order Quantity
    Unit price $
    201
    500
    $ 0.52
    201
    1000
    $ 0.36
    202
    300
    $ 0.26
    202
    500
    $ 0.2
    How make Subtotal and Total price with Java script.
    I do not know how to write java script.
    Anyone can help me?
    Thanks,

    Thanks for your response. I have 2 quantities and 2 Unit price for each code, I know a simple sum in calculation it works for 1 unit price and quantity.  Can you please let me know how to do it? One of the expert sent m this:
    //change field names as needed
    var qt1 = this.getField("qt1").value;
    var up1 = this.getField("up1").value;
    var qt2 = this.getField("qt2").value;
    var up2 = this.getField("up2").value;
    event.value = (qt1 * up1) + (qt2 * up2);
    I put this in total text field (calculation tab , Custom script) , but it  did not worked.
    I appreciate it if anyone can help or give me  suggestion.

  • I NEED A FORM THAT WILL PUT NAME IN ALPHABETIC ORDER.  THIS FORM NEEDS TO HAVE COLUMNS WITH HEADERS.

    I NEED A FORM THAT LISTS NAMES IN ALPHBETIC ORDER ON THE LEFT SIDE GOING DOWN.  THIS FORM ALSO NEEDS COLUMNS THAT HAVE PRODUCT IDENTIFICATION ON THE TOP OF THE COLUMNS.

    Hi,
      Is your question in the context of the responses that you collect (this is the View Responses tab) or the actual form that your end users will see?
    In a nutshell, (1)  a field in your form corresponds to a column in the responses table. (2) the caption text of the form field will be the column header (show up at the top of the column). (3) to list names in alphabetical in your form, you can use choices fields, like multiple choices field or drop down field - you will have to enter the name in alphabetical order manually.
    Hope this helps,
    Thanks,
    Lucia

  • Need help on purchase order form

    Hi friends,
    Is it possible to put one folder ( tab) in purchase order form. I am trying to put folder in po screen. if i put any button object in po form it works. but when i put folder it is not showing folder and no errors.
    can anybody help me.....

    Hi Manish,
    it is possible to add the folder to purchase order form.
    you get the reference to Tax Folder of Purchase Order as Item.
    oItem=poForm.Items,Item("2013")
    then set the properties for your folder
    oFolderItem.visible=true
    oFolderItem.left=oItem.Right
    oFolderItem.top=oItem.Top
    oFolderItem.height=oItem.height
    oFolderItem.Width=oItem.width
    oFolderItem.frompane=0
    oFolderItem.topane=0
    oFolderItem.Specific.caption="asdf"
    oFolderItem.Specific.GroupWith("2013")
    Hope it helps you
    Regards
    Vishnu

  • How to open an order form of a particular order in edit mode

    hi
    i need to open a order's order form in edit mode so that it can be approved or any other operations done on that.
    there is an similar post but the soln s nt available fr the abve mentioned prob
    " i dont knw what are the exact parameters that should be assigned in ordfind so that it will lead to the ordhead"
    thank u in advance for any guidance that cud be provided.

    I m using oracle appln server 10g forms. I m trying to open tat form using a url.. generally i m accessing via a java program where i m giving tis url.

  • Help with adding action script to an order form

    Hi - Firs time I'm on this board. Searched and didn't see
    anything that fit. Adobe/Macromedia Support told me my form needs
    an action script insert for me to gain access to a previous page.
    I'm revamping an online order form. It's about 2 1/2 pages in
    length. I find that I can't go back to the first page -- I'm locked
    in the second one. On split screen the HTML coding shows there is
    more than one page. Also, when I look at it in a browser the whole
    page is there.
    Does anyone know how and where I can put in action script.
    I'm not an HTML maven so this isn't my thing. Thanks for whatever
    advice you can give.
    Best - ETide

    Visit gotoandlearn.com and find a tutorial there for creating
    a preloader.

  • Regarding the SMARTFORMS ( Return sales Order Form )

    Hi All,
    i need to develope a smartform from Scarch onwrds for Return Sales Order form.
    If any one have material for how to devleope a SMARTFORM. and also any one idea on standard SMART for Sales order form, please help me.
    Regards
    Gangi

    Hi,
    Here are the links for step by step material for SMARTFORMS
    http://sap.niraj.tripod.com/id67.html
    Check these links for sample program.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%20samples/smartforms/smartform%20in%20abap.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%20samples/smartforms/tutorial%20with%20code%20sample%20on%20smart%20forms.pdf
    Regards
    Sudheer

  • How to construct an order form in Muse

    want to use this form as an order form and need to know how to enter elements (checkboxes, pull-down menus, radio buttons, number fields, etc). This info was not covered at all. How do I achieve that level of form? I notice that I can build a form by accessing the Admin Console, but I don't know how these two form building areas work together. I'd like some help with that.

    Hi
    With Adobe Muse CC 2014.1 , Checkbox field and reCaptcha can be added to forms.
    Please install our latest update to try these new features.
    Release notes | Adobe Muse CC
    Thanks,
    Sanjit

  • How to add additional lines to the Order Form template?

    I purchased and installed Acrobat Pro 9 because of its ability to create forms and found the Order Form template is just perfect for what I need, why reinvent the wheel, right?   Except I found I can't figure out how to add additional object that duplicate what is already there.  I highlighted an entire row and tried to just copy and paste but the past function put the copied objects at the bottom of the form in what looks like a group, all out of order.  I tried looking in the online help for a possible key combination that would inset an additional row of objects but couldn't find any.
    Also the form doesn't move down and create a new page keeping all the other elements in line, it moves to the bottom of the current page and stops.   Thought the template was based on a table so I was going to insert additional rows thinking once it reached the bottom of the current page it would automatically break to a new page and continue, but it's not a table.  So my question is, how can I add duplicate object that match the Order Form templates Item, Description, etc. objects?  I've come to realize learning to use this product is not going to be as simple a proposition as I was lead to believe.  O well, live and learn!
    If someone can point me in the right direction, any help is greatly appreciated.
    Tony Rodriguez

    Thanks, Barney! It's even easier than the solution I came to: copying and pasting into the field. 

  • Using a conditional pop-up menu for creating an order form...

    I am trying to create an order form on Numbers (version 2.0.1) using my iPad. My idea is to create a pop-up menu that would contain a number of products (about 50 or so). I'd copy this pop-up menu on all the cells in the column under "Description". That part is no problem. BUT ... ideally when a product is selected from the pop-up menu, I would like for its price to automatically populate the corresponding cell under "Unit Price". Obviously the various products will have various prices. For example, I might have three products listed as "Assorted Miniatures" which cost $5 each; "Animal Pot" which costs $10; and "Geometric Pot" which costs $15. Can this be done???
    If and when that is accomplished, then I presume I can easily apply the basic formulas to get total amounts. All of this means that once completed the only thing I really need to do is select products and then all the pricing and total amounts are automatically listed and calculated. Can someone assist? I have a show coming up this weekend and I hope to fill out lots of order forms!!! :-)  Thank you!!!

    MicMac22,
    Here is my take. Lookup table as Wayne suggests.
    Popup menu is a great idea.
    description
    quant
    unit price
    total Amt
    Item 2
    $2.00
    Item 1
    $1.00
    My entry table would look like yours.
    item
    price
    item 1
    $1.00
    item 2
    $2.00
    item 3
    $3.00
    Table 2 is your lookup table.
    The formula in your entry table unit price is pasted into row 2 and copied down.
    IFERROR(OFFSET(Table 2::$A$1,MATCH(A2,item,0)−1,1,,),"")
    This says find the match of entry in A2 in item column in table 2 return the value in the column 1 over. If error return nothing ("").
    Will this work for you?
    Q

  • Item should not duplicate in sales order form in line tab ..

    Hi All,
    Not very sure this is the right forum for this if not please tell me the correct forum to post this.
    We have a requirement(11.5.9) which we have to achieve it using custom.pll, as I am very much new to use it need help on this.
    In Sales Order form once we enter in Lines Information TAB,
    For example we will enter Item 'ABCD' at Line 1.1 then again at Line 2.1 if I try to enter the same item 'ABCD' it should pop up a message saying "Item Already Entered" once we press Tab on Ordered Item Field.
    If we enter a different Item it should take as usual.
    I will appreciate if some body posts the code for the same which we can do it using CUSTOM.pll
    Thanks in Advance
    Devender

    If you are in the WHEN-VALIDATE-ITEM trigger, you cannot navigate back through the list of already entered records (especially if record you are in is not complete). It does delay the validation, but duplicate checks are typically done by querying the database on both WHEN-VALIDATE-ITEM and PRE-INSERT/PRE-UPDATE triggers. This means when entering a new Sales Order, you won't be warned that Line 2 has the same item as Line 1 until you save, but there are no navigation required to avoid issues such as trying to leave the current record before it is valid.

Maybe you are looking for

  • How to connect MacBook4,1 to tv s video

    I am trying to connect my Macbook 4,1 to my TV but my TV is older and the only ports that it has are the s-video port and normal video (red, yellow, white) ports.  I don't know what cables I need to buy to make this connection work.  I have seen seve

  • Word Processing Software

    What word processing programs are available for the MacBook with OS X 10.6.8?  Is there something like Pages?  How can this be purchased, downloaded and installed?

  • KMS control in console

    Is there any way, to control KMS properties (resolution, active outputs, ...) from console? I've got a notebook with 1680x1050 display and 1280x1024 external display. When I boot without external display, whole notebook screen is used at native resol

  • Encypting Pdf document sent through email from BO WEBI

    Hi, Encypting Pdf document sent through email from BO WEBI . Is there any sdk scripts/3rd part tools to do this. Thanks Ranjith

  • I want to test sender ABAP proxy in AAE by SOAP client

    To PI Specialists Now I plan to test sender ABAP proxy in AAE by SOAP client system. (we use aae so we set sender abap proxy by sender soap adapter.) ABAP creating team and PI creating team are in other site.We cant contact easily. I want to separate