-
How to show error message on the detail page of Salesforce sobject through before delete trigger?
I want to show error message on Account detail page, given below trigger shows error on the different page :-
trigger testDelete on Account (before delete)
{
List <Account> acc = [SELECT Id, (SELECT Id FROM Opportunities ) FROM Account WHERE Id IN : Trigger.old];
for(Account a : acc)
{
if(a.Opportunities.size()>0)
{
Trigger.oldmap.get(a.Id).addError('Cant Delete');
}
}
}
Log In to reply.
Popular Salesforce Blogs
Most Beneficial Features of Salesforce Sales Cloud For Any Business
Sales cloud of Salesforce is mainly used by B2B and B2C organizations to manage sales, customer support and marketing operations and the engagement strategies. The…
The Fundamentals of Salesforce CDP
In the realm of marketing, every little thing you do has the power to make or break your business. While many tried and tested marketing…
How Salesforce Financial Services Cloud Solves Problems For FinTech Companies
Working in the financial services industry is not an easy-breezy thing to do. It is all about managing people’s wealth and helping them plan their lives, literally.…