Hello,
We found out that, in Cloud for Customer, the Customer Business Object (namespace: http://sap.com/xi/AP/FO/BusinessPartner/Global) provides the Action CheckForDuplicates, in a way to run the duplicates check on the processed Customer.
Is there any way to acquire the list of the duplicates found by the Action in the ABSL Code? We tried to run the following code lines:
customer = Customer.Retrieve(bp);
customer.CheckForDuplicates();
if (customer.BusinessPartnerDuplicateCheck.IsSet()) {
foreach (varduplicateincustomer.BusinessPartnerDuplicateCheck.Result) {
// process duplicate.BusinessPartnerInternalID value/// ...
}
}
But unfortunately the BO member BusinessPartnerDuplicateCheckis not accessible on the Public level, as displayed by the error message we got at code activation:
Do you have any information about this request? We are available on any feedback about it.
Thanks a lot,
Davide