SAP HR/HCM Exclude Certain Department Records Aggregate into SailPoint

Hi Experts,

Recently I have integrated SAP HRMS using SAP HR/HCM connector. Would like to know is there any method I can achieve when aggregation of employee records into SailPoint, I want to ignore/avoid reading certain group of people into SailPoint.

Hi @BernardNetpoleon

Welcome to the SailPoint developer community.

You can apply filter string to filter the records during aggregation.

For example: ( type != “Employee” )

For more info, check this doc

Thanks
Krish

Hi Krishna,

Thank you for the idea. Below is my PATCH request, I am trying to avoid reading from source to SailPoint when the record’s department fulfil the requirement. Is below syntax correct?

[
{
“op”: “add”,
“path”: “/connectorAttributes/filterString”,
“value”: “( department == "HR")”
}
]

Yes, This will skip HR department users in Aggregation.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.