SAP Fieldglass OOTB configurations for prov

Hi Team,

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.

1 Like

Hi @edmarks,

I had some other few questions.

  1. I am performing aggregation with a user report created by FG.

this is the output json:
{
“Name”: “integration 1, ariba”,
“Primary Purchasing Organization”: “McKesson Corporation”,
“Primary Supervisor”: “integration 1, ariba”,
“Role”: “Administrator”,
“User Status”: “Open”,
“Signature Authority Amount”: “”,
“Primary Purchasing Organization”: “McKesson Corporation”,
“Language”: “en_US”,
“Default Cost Object”: “”,
“Username”: “000000000743340090”,
“Default Company Code”: “”,
“Signature Authority Currency”: “”,
“Currency”: “USD”,
“Default Location”: “”,
“Default Location Code”: “”,
“Country/Region”: “”,
“Email”: “[email protected]”,
“Phone Number”: “”,
“State/Province”: “”,
“User Create Date”: “03/23/2023 18:13”
},

There are certain attrs which are not present here like cost centre but post aggregation it is still showing up:
image

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”
},

  1. for adding new attrs we can add them directly and schema and then similarly like above map the attribute in vscode correct with userReportAttrName?

  2. 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.