I am working on prov for SAP fieldglass i have requirement where while creating the account we need to pass these all attributes via Sailpoint:
Currency
Plant
ApprovalLimit
Cost Center
Purchasing Organization
Company Code
LANGUAGE
I see some of these fields are not available as per the documentation and are not even coming in schema.
Is it possible to prov account with all these fields?
It’s possible to add additional attributes to the Fieldglass schema via the UI, but these then need to be mapped via the API source update functionality. The VSCode extension is PERFECT for this, but it can also be done by “GET” the current source configuration, modify as needed, and then “Patch” to update.
There are certain attrs which are not present here like cost centre but post aggregation it is still showing up:
I want to understand how and from where is it coming from
this is how it is mapped in vscode.
I don’t have any worker report id added as well in connection
“Cost Center”: {
“userReportAttrName”: null,
“workerReportAttrName”: “Cost Center Code”
},
for adding new attrs we can add them directly and schema and then similarly like above map the attribute in vscode correct with userReportAttrName?
If i want to pass additional attributes while creating an account like currency, cost centre etc which are not present OOTB can we add them? If yes what is the naming convention?
I don’t have access to a tenant with SAP Fieldglass currently so I don’t have a good reference point unfortunately. I have seen it pull in these additional values though and thought they were from the “Single Worker Report ID”, but I’m not sure if you configured that. It’s a bit of “black magic” honestly because the documentation doesn’t clarify how this actually works.