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

Update Record outside of SFDC
Hi,
We send out a number of emails to clients/prospects.
What would be great is to include a link within said email that says, for example, 'Send Quote' and links back to the related record and updates a field on that record....is that possible?
Thanks in advance,
Steve
We send out a number of emails to clients/prospects.
What would be great is to include a link within said email that says, for example, 'Send Quote' and links back to the related record and updates a field on that record....is that possible?
Thanks in advance,
Steve
[1] https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/apex_System_PageReference_getParameters.htm
PushTopic pushTopicAccount = new PushTopic();
pushTopicAccount.Name = 'ProvaAccount';
pushTopicAccount.Query = 'SELECT Name FROM Account WHERE Name =: InfocertTEST';
pushTopicAccount.ApiVersion = 34.0;
pushTopicAccount.NotifyForOperationCreate = true;
pushTopicAccount.NotifyForOperationUpdate = true;
pushTopicAccount.NotifyForOperationUndelete = true;
pushTopicAccount.NotifyForOperationDelete = true;
pushTopicAccount.NotifyForFields = 'Referenced';
insert pushTopicAccount;