You need to sign in to do that
Don't have an account?
Eldon
auto fill custom fields to quote address while create quote from opportunity
Hi all,
I need to autofill ship to address and bill to address from some custom fields instead of std account address while creating quotes from opportunity.
this is what i was thinking of doing
opportunity opp = [select id,Billing_City__c from opportunity where id = :oppid limit 1];
return new PageReference('/0Q0/e?retURL=%2F'+oppid+'&oppid='+oppid+'&BilltoCity='+opp.Billing_City__c);
Its not working i need the separate API names of shiptoaddress and billtoaddress for the quote object. Any ideas?
I need to autofill ship to address and bill to address from some custom fields instead of std account address while creating quotes from opportunity.
this is what i was thinking of doing
opportunity opp = [select id,Billing_City__c from opportunity where id = :oppid limit 1];
return new PageReference('/0Q0/e?retURL=%2F'+oppid+'&oppid='+oppid+'&BilltoCity='+opp.Billing_City__c);
Its not working i need the separate API names of shiptoaddress and billtoaddress for the quote object. Any ideas?