Skip to content

Commit 300afe6

Browse files
Merge pull request #237461 from kenwith/patch-97
Updates for acrolinx analysis.
2 parents ddcecc0 + c2e092e commit 300afe6

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

articles/active-directory/app-provisioning/workday-retrieve-pronoun-information.md

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: active-directory
88
ms.subservice: app-provisioning
99
ms.topic: reference
1010
ms.workload: identity
11-
ms.date: 07/05/2022
11+
ms.date: 05/09/2023
1212
ms.author: kenwith
1313
ms.reviewer: arvinh, chmutali
1414
---
@@ -26,13 +26,10 @@ Workday introduced the ability for workers to [display pronoun information](http
2626
>Links to certain Workday community notes and documents in this article require Workday community account credentials. Please check with your Workday administrator or partner to get the required access.
2727
2828
## Enabling pronoun data in Workday
29-
This section describes steps required to enable pronoun data in Workday. We recommend engaging your Workday administrator to complete the steps listed below.
30-
1. Ensure that pronoun display and sharing preferences are enabled as per Workday guidelines. Refer Workday documents:
31-
32-
[Steps: Set Up Gender Pronouns to Display on a Worker Profile * Human Capital Management * Reader * Administrator Guide (workday.com)](https://doc.workday.com/r/gJQvxHUyQOZv_31Vknf~3w/7gZPvVfbRhLiPissprv6lQ)
33-
34-
[Steps: Set Up Public Profile Preferences * Human Capital Management * Reader * Administrator Guide (workday.com)](https://doc.workday.com/r/gJQvxHUyQOZv_31Vknf~3w/FuENV1VTRTHWo_h93KIjJA)
35-
29+
This section describes the steps required to enable pronoun data in Workday. We recommend engaging your Workday administrator to complete the steps listed.
30+
1. Ensure that pronoun display and sharing preferences are enabled as per Workday guidelines. Refer to the Workday documents:
31+
- [Steps: Set Up Gender Pronouns to Display on a Worker Profile * Human Capital Management * Reader * Administrator Guide (workday.com)](https://doc.workday.com/r/gJQvxHUyQOZv_31Vknf~3w/7gZPvVfbRhLiPissprv6lQ)
32+
- [Steps: Set Up Public Profile Preferences * Human Capital Management * Reader * Administrator Guide (workday.com)](https://doc.workday.com/r/gJQvxHUyQOZv_31Vknf~3w/FuENV1VTRTHWo_h93KIjJA)
3633
1. Use Workday **Maintain Pronouns** task to define preferred pronoun data (HE/HIM, SHE/HER, and THEY/THEM) in your Workday tenant.
3734
1. Use Workday **Maintain Localization Settings task -> Personal Information** area to activate pronoun data for different countries.
3835
1. Select the Workday Integration System Security Group used with your Azure AD integration. Update the [domain permissions for the security group](../saas-apps/workday-inbound-tutorial.md#configuring-domain-security-policy-permissions), so it has GET access for the Workday domain **Reports: Public Profile**.
@@ -44,13 +41,13 @@ This section describes steps required to enable pronoun data in Workday. We reco
4441
>[!div class="mx-imgBorder"]
4542
>![Screenshot of enabling pronoun display option.](./media/workday-pronoun-data/enable-pronoun-display-preference.png)
4643
47-
1. Use Workday Studio or Postman to invoke [Get_Workers API version 38.1](https://community.workday.com/sites/default/files/file-hosting/productionapi/Human_Resources/v38.1/Get_Workers.html) for the test user using the Workday Azure AD integration system user. In the SOAP request header specify the option Include_Reference_Descriptors_In_Response.
44+
1. Use Workday Studio or Postman to invoke [Get_Workers API version 38.1](https://community.workday.com/sites/default/files/file-hosting/productionapi/Human_Resources/v38.1/Get_Workers.html) for the test user using the Workday Azure AD integration system user. In the SOAP request header, specify the option Include_Reference_Descriptors_In_Response.
4845
```
4946
<bsvc:Workday_Common_Header>
5047
<bsvc:Include_Reference_Descriptors_In_Response>true</bsvc:Include_Reference_Descriptors_In_Response>
5148
</bsvc:Workday_Common_Header>
5249
```
53-
1. In the Get_Workers response, you will now see pronoun information.
50+
1. In the Get_Workers response, view the pronoun information.
5451
5552
>[!div class="mx-imgBorder"]
5653
>![Screenshot of Workday Get Workers API response.](./media/workday-pronoun-data/get-workers-response-with-pronoun.png)
@@ -62,11 +59,11 @@ Once you confirm that pronoun data is available in the *Get_Workers* response, g
6259
6360
## Updating Azure AD provisioning app to retrieve pronouns
6461
65-
To retrieve pronouns from Workday, you'll need to update your Azure AD provisioning app to query Workday using v38.1 of the Workday Web Services. We recommend testing this configuration first in your test/sandbox environment before implementing the change in production.
62+
To retrieve pronouns from Workday, update your Azure AD provisioning app to query Workday using v38.1 of the Workday Web Services. We recommend testing this configuration first in your test/sandbox environment before implementing the change in production.
6663
6764
1. Sign-in to Azure portal as administrator.
6865
1. Open your *Workday to AD User provisioning* app OR *Workday to Azure AD User provisioning* app.
69-
1. In the **Admin Credentials** section, update the **Tenant URL** to include the Workday Web Service version v38.1 as shown below.
66+
1. In the **Admin Credentials** section, update the **Tenant URL** to include the Workday Web Service version v38.1 as shown.
7067
7168
>[!div class="mx-imgBorder"]
7269
>![Screenshot of Azure portal provisioning app with Workday version.](./media/workday-pronoun-data/update-workday-version.png)
@@ -79,11 +76,11 @@ To retrieve pronouns from Workday, you'll need to update your Azure AD provision
7976
8077
1. Save your changes.
8178
1. You can now add a new attribute mapping to flow the Workday attribute **PreferredPronoun** to any attribute in AD/Azure AD.
82-
1. If you want to incorporate pronoun information as part of display name, you can update the attribute mapping for displayName attribute to use the below expression.
79+
1. If you want to incorporate pronoun information as part of display name, you can update the attribute mapping for displayName attribute to use the expression.
8380
8481
`Switch([PreferredPronoun], Join("", [PreferredNameData], " (", [PreferredPronoun], ")"), "", [PreferredNameData])`
8582
86-
1. If worker *Aaron Hall* has set his pronoun information in Workday as `HE/HIM`, then the above expression will set the display name in Azure AD as: *Aaron Hall (HE/HIM)*
83+
1. If worker *Aaron Hall* has set his pronoun information in Workday as `HE/HIM`, the above expression sets the display name in Azure AD as: *Aaron Hall (HE/HIM)*
8784
1. Save your changes.
8885
1. Test the configuration for one user with provisioning on demand.
8986

0 commit comments

Comments
 (0)