These modifications address the error reported in Issue #3752.
The issue stemmed from the fact that during loading, when namespaces were injected into the mapping, only the key of the lookups dictionary would be altered, not the lookup class itself. For instance, mapping.lookups would appear as follows:
In the _infer_and_validate_lookups function within mapping_parser.py, we validate whether the sObjects mentioned in the mapping file under the lookup field are indeed part of the referenceTo of that field. However, the problem arose from the utilization of the name attribute under MappingLookup instead of the key value.
Change: We've modified it to reference the name with the key value of mapping.lookups instead of accessing it within MappingLookup class. This way the name would be the field with the injected namespace
W-15157537
These modifications address the error reported in Issue #3752.
The issue stemmed from the fact that during loading, when namespaces were injected into the mapping, only the key of the lookups dictionary would be altered, not the lookup class itself. For instance,
mapping.lookups
would appear as follows:In the
_infer_and_validate_lookups
function withinmapping_parser.py
, we validate whether the sObjects mentioned in the mapping file under the lookup field are indeed part of thereferenceTo
of that field. However, the problem arose from the utilization of thename
attribute underMappingLookup
instead of the key value.Change: We've modified it to reference the
name
with the key value ofmapping.lookups
instead of accessing it withinMappingLookup
class. This way thename
would be the field with the injected namespaceFixes #3752