You need to sign in to do that
Don't have an account?
CloudyJosh
Copy info between different fields on the Account page?
So lets say I have a billing name / shipping name on the account page, and I want to be able to copy the info from the billing name field to the shipping name field, and vie versa with a click of a button, so the user doesn't have to reenter everything, how can this be done?
Cliff:
Two forms on the account page, billing and shipping name
I need to copy billing name to shipping name, and vice versa
I need this done with a click of a button (there will be 2 buttons)
Any help is appreciated!
Following approaches can be taken
1. We can populate using trigger/ Workflow.
2. We can use custom button to do the same on detail page.
3. If there is a custom page, we can use javascript/apex to do the same.
Thanks
Piyush
sfpiyush@gmail.com
Please find sample to be used :
Behavior: Execute JavaScript
{!REQUIRESCRIPT("/soap/ajax/26.0/connection.js")}
var c = new sforce.SObject("Account");
c.id = "{!Account.Id}";
result = sforce.connection.update([c]);
window.location.reload();
If you require salesforce support, please get in touch at sfpiyush@gmail.com
Thanks
sfpiyush@gmail.com
Thanks!