You need to sign in to do that
Don't have an account?

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?
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?
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

Thanks Sonam! I'll look into it.