Skip to content

Commit

Permalink
Merge d2eb6cf into feature/240
Browse files Browse the repository at this point in the history
  • Loading branch information
salesforce-org-metaci[bot] authored Jul 22, 2024
2 parents 03756e3 + d2eb6cf commit e0a7a8e
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 e0a7a8e

Please sign in to comment.