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

Custom Delete button on standard layout
I am trying to create a custom delete button on an objectA which deletes the particular record only if the value in fieldA matches the Role of the logged in user. If it does not match it needs to throw an error. I was trying to use 'OnClick javascript". Can anyone help me wit the code? Thanks!
{!REQUIRESCRIPT("/soap/ajax/19.0/connection.js")}
var accountid = "{!Account.Id}"
var roleName = "{!$UserRole.Name}"
var accRole = "{!Account.RoleName__c}"
if(roleName == accRole)
{
var delResult = sforce.connection.deleteIds([accountid]);
if (delResult[0].getBoolean("success"))
{
parent.location.href =('/001/o');
}
else {
sforce.debug.log("failed to delete account " + delResult[0]);
}
}
else
{
alert('Doesnt match criterion');
}