function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
NikongNikong 

Pass information from a pdf form into an Opportunity

We want an online PDF order form that will display products and pricebooks related to a certain account. The PDF form would have checkboxes next to the products that customers will be able to check. There will aslo be a box where they can enter the number of the products they want.

My question is... is it possible to use apex to get the information from the PDF order form and create an Opportunity in Salesforce with line items when the customers hit submit?
Sonam_SFDCSonam_SFDC
Guess this is possible if you create the form on Visualforce(the one you mentioned as PDF form) and use wrapper class(http://wiki.developerforce.com/page/Wrapper_Class) to bind the checkbox and the Product and pricebook records - to have your vf pge online : http://wiki.developerforce.com/page/An_Introduction_to_Force.com_Sites


NikongNikong
Thanks Sonam! I'll look into it.