You need to sign in to do that
Don't have an account?
Trigger Error - Why does the 'SObject row was retrieved via SOQL without querying the requested field' error appear?
Hello,
I am getting this error message in my Conference app when I try to assign a Speaker to a Session, I get this error message. Can you please explain why I am getting this error? I am also pasting the code for the Trigger. Thanks!


I am getting this error message in my Conference app when I try to assign a Speaker to a Session, I get this error message. Can you please explain why I am getting this error? I am also pasting the code for the Trigger. Thanks!
Session_Speaker__c sessionSpeaker =
[ Select Session__r.Name,
Session__r.Session_Date__c,
Session__r.Last_Name__c,
Session__r.First_Name__c,
Session__r.Email__c
Let us know if this will help you
All Answers
Session_Speaker__c sessionSpeaker =
[ Select Session__r.Name,
Session__r.Session_Date__c,
Session__r.Last_Name__c,
Session__r.First_Name__c,
Session__r.Email__c
Let us know if this will help you