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

Auto-fill values from Account to Case.
Hi,
On our Accounts we have a unique ID field that works as a unique identifier in other systems. When customers call the Customer Care and they create Cases this is what they supply as part of the identification process. This unique ID needs to be entered in the Case which should then link the case to the account and populate fields on the case with information from the account.
Any ideas on how to go about?
This has been solved.
One problem was that using an after insert on the case you cannot change the Case via Trigger.new.
I had to retrieve the case with an SOQL and then update with the update statement.
All Answers
A trigger should do the trick for you.
Something like this:
Thanks for reply,
When trying to set the account on the case I cannot get the account to be saved. The field on the Case that I thought stored the account is a lookup(Account) how do I get the case to be related to the account my code looks like:
This has been solved.
One problem was that using an after insert on the case you cannot change the Case via Trigger.new.
I had to retrieve the case with an SOQL and then update with the update statement.