お気に入りSamsudeen Ameen (digiAppForce) が「Advanced Administrator Study Group」で投稿 (元の質問者: Samsudeen Ameen)2021年11月19日 14:02Samsudeen AmeenError not firingI am sure someone here can help me figure out what I am doing wrong here. We have an opportunity record type where partner portal users (they are also contact) have to select a lookup field called "Study" that looks up to a custom object called Project__c when creating oppty. However, Project__c also has another child-related object called Nurse_Training_Session__c. Nurse_Training_Session__c has a field that looks up to Contact called HcP__c and another lookup field called Project__c. Now, HcP__c is used to track contacts who have been assigned to work on a project (Project__c). When they log in to the portal to create an opportunity, we want to throw an error if they select a study they have not been assigned. @TestVisibleprivate static final String UNALLOCATED_STUDY_ERROR_MSG = 'You have not been allocated to work on this study. Please select the correct study'; public void beforeInsert(List<Opportunity> newList){ Set<Id> projIds = new Set<Id>(); // Store Project__r.Id Id nurseSuppliesRecordTypeId = Schema.SObjectType.Opportunity.getRecordTypeInfosByDeveloperName().get('Nurse_Supplies').getRecordTypeId(); Id curUserId = userinfo.getUserId(); // Get current logged in user User curUser = [SELECT Id, ContactId FROM User WHERE Id = :curUserId AND ContactId != null]; Contact contId = [SELECT Id FROM Contact WHERE Id = :curUser.ContactId]; List<Nurse_Training_Session__c> lstHcps = [SELECT Id, HcP__r.Id, Project__r.Id FROM Nurse_Training_Session__c WHERE HcP__r.Id = :contId.Id]; If(curUser != null && !lstHcps.isEmpty()){ for(Nurse_Training_Session__c hcp: lstHcps){ projIds.add(hcp.Project__r.Id); } for(Opportunity op: newList){ if(op.RecordTypeId == nurseSuppliesRecordTypeId && op.Study__c != null && !projIds.contains(op.Study__r.Id)) { op.Study__c.addError(UNALLOCATED_STUDY_ERROR_MSG); } } } } 表示件数を増やす1 件のコメントRicardo Costa (Ricardo)2025年4月14日 6:15Check the procedures thet envolve the codeコメントを追加コメントを記入...太字斜体下線取り消し線箇条書き番号付きリストリンクを追加コードブロック画像を挿入ファイルを添付リンク URLキャンセル保存0/9000返信
Samsudeen AmeenError not firingI am sure someone here can help me figure out what I am doing wrong here. We have an opportunity record type where partner portal users (they are also contact) have to select a lookup field called "Study" that looks up to a custom object called Project__c when creating oppty. However, Project__c also has another child-related object called Nurse_Training_Session__c. Nurse_Training_Session__c has a field that looks up to Contact called HcP__c and another lookup field called Project__c. Now, HcP__c is used to track contacts who have been assigned to work on a project (Project__c). When they log in to the portal to create an opportunity, we want to throw an error if they select a study they have not been assigned. @TestVisibleprivate static final String UNALLOCATED_STUDY_ERROR_MSG = 'You have not been allocated to work on this study. Please select the correct study'; public void beforeInsert(List<Opportunity> newList){ Set<Id> projIds = new Set<Id>(); // Store Project__r.Id Id nurseSuppliesRecordTypeId = Schema.SObjectType.Opportunity.getRecordTypeInfosByDeveloperName().get('Nurse_Supplies').getRecordTypeId(); Id curUserId = userinfo.getUserId(); // Get current logged in user User curUser = [SELECT Id, ContactId FROM User WHERE Id = :curUserId AND ContactId != null]; Contact contId = [SELECT Id FROM Contact WHERE Id = :curUser.ContactId]; List<Nurse_Training_Session__c> lstHcps = [SELECT Id, HcP__r.Id, Project__r.Id FROM Nurse_Training_Session__c WHERE HcP__r.Id = :contId.Id]; If(curUser != null && !lstHcps.isEmpty()){ for(Nurse_Training_Session__c hcp: lstHcps){ projIds.add(hcp.Project__r.Id); } for(Opportunity op: newList){ if(op.RecordTypeId == nurseSuppliesRecordTypeId && op.Study__c != null && !projIds.contains(op.Study__r.Id)) { op.Study__c.addError(UNALLOCATED_STUDY_ERROR_MSG); } } } } 表示件数を増やす