johnsontitusMay 21, 20201 min readUpserting RecordsThis example uses upsert and an external ID field Line_Item_Id__c on the Asset object to maintain a one-to-one relationship between an...
johnsontitusMay 21, 20201 min readUsing Joins in SOQLSemi-Joins with IN: Eg, query using objects - Account and Opportunity, SELECT Id, Name FROM Account WHERE Id IN ( SELECT AccountId FROM...
johnsontitusMay 21, 20201 min readData Quality ManagementTo return duplicate Account/Contact/Lead names: select name, count(id) from <Account/Contact/Lead> group by name having count(id) > 1 To...
johnsontitusMay 18, 20201 min readProvide access to multiple people working on an AccountAccount team of upto 5 people can be created. And each member can be assigned different roles and different levels of access to the...
johnsontitusMay 17, 20201 min readCheck in Flow Solution for any Business requirementshttps://appexchange.salesforce.com/appxStore?type=Flow
johnsontitusMay 14, 20201 min readProcess paymentsuse case - Allow customers to pay invoices raised in salesforce Solution - payment processing apps in appexchange