Skip to content

Commit

Permalink
Merge ada2d57 into feature/performance-tests__customizable-rollups
Browse files Browse the repository at this point in the history
  • Loading branch information
salesforce-org-metaci[bot] authored Jul 22, 2024
2 parents a62a35c + ada2d57 commit 11f0bde
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ public with sharing class ALLO_ManageAllocations_CTRL {
objectFields.add(Allocation__c.General_Accounting_Unit__c.getDescribe().getSobjectField());

for(Schema.FieldSetMember additionalField : additionalAllocationFields) {
Schema.DescribeFieldResult fieldResult = additionalField.getSObjectField().getDescribe();
if (fieldResult.isCalculated() || !fieldResult.permissionable || additionalField.getFieldPath().contains('__r')) {
continue;
}
objectFields.add(additionalField.getSObjectField());
}

Expand Down

0 comments on commit 11f0bde

Please sign in to comment.