You need to sign in to do that
Don't have an account?
asims2006
Receiving Compile Error: Expression cannot be assigned at line -1 column -1 Please Help
I am trying to update a field on the Account object and keep receiving Compile Error: Expression cannot be assigned at line -1 column -1.
trigger UpdatePriceLevel on Account (before insert, before update, after insert, after update)
{
for(Account a : trigger.new)
{Account.Price_Level_Location__c = Ticket__c.Price_Level_Location__c ;}
}
trigger UpdatePriceLevel on Account (before insert, before update, after insert, after update)
{
for(Account a : trigger.new)
{Account.Price_Level_Location__c = Ticket__c.Price_Level_Location__c ;}
}
No such thing.
Some kind of corruption.
When a corruption occurs, getting your code out and into a new class module or trigger is the solution.
Doesn't happen a lot but when it does, that is the only way to resolve.