Installer OfficeConnect avec les locataires (administrateur de la TI)
- La dernière version d’OfficeConnect. Voir : Téléchargement de produits.
- Détail de l'authentification pour les locataires Adaptive Planning configurés avec authentification unique Workday ou Workday Financial Management. Vous pouvez trouver les détails suivants dans le client API OfficeConnect de Workday :
- Adresse URL du point de terminaison d’autorisation
- URL du point de terminaison de l’API REST
- Identifiant de client
- Détails de l'authentification pour les locataires Adaptive Planning sans authentification unique Workday :
- Adresse URL du point de terminaison API
- Adresse URL du point de terminaison d’autorisation
Si votre instance utilise une authentification régionale qui n’est pas fondée sur les États-Unis, les adresses URL d’autorisation et les points de terminaison d’API varient en fonction de votre région. Voir : Référence : URL d’authentification régionales.
Vous pouvez inclure les locataires lors de l’installation d’OfficeConnect :
- Pour les installations par utilisateur, utilisezOfficeConnectSetup.exe.
- Pour les installations par machine, utilisezOfficeConnectMachineSetup.exe.
- Créez un fichier XML avec les détails du locataire. Vous pouvez inclure :
- Plusieurs locataires. Exemple : production et bac à sable
- Plusieurs types de locataires. Exemple : Adaptive Planning et Workday Financial Management
- Installer OfficeConnect avec le fichier XML et préciser leCONNECTIONCONFIGla propriété.Exemple :C:\Files\OfficeConnectSetup.exe /quiet CONNECTIONCONFIG="C:\Files\tenants.xml"
Exemple 1 : locataire Adaptive Planning sans fonction d’authentification unique Workday :
<connection name="Production Planning"> <PlanningApiUrl>https://uslogin1.adaptiveplanning.com</PlanningApiUrl> <PlanningAuthorizationUrl>https://uslogin1.adaptiveplanning.com</PlanningAuthorizationUrl> </connection>
Exemple 2 : locataire Adaptive Planning avec fonction d’authentification unique Workday :
<connection name="Sandbox"> <WorkdayAuthorizationUrl>https://example.myworkday.com/sandboxtenant/authorize</WorkdayAuthorizationUrl> <WorkdayRestApiUrl>https://example.myworkday.com/ccx/api/v1/sandboxtenant</WorkdayRestApiUrl> <WorkdayClientId>Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2</WorkdayClientId> </connection>
Exemple 3 : locataire Workday Financial Management :
<connection name="Financials (prod)"> <Type>financials</Type> <WorkdayAuthorizationUrl>https://example.myworkday.com/prodtenant/authorize</WorkdayAuthorizationUrl> <WorkdayRestApiUrl>https://example.myworkday.com/ccx/api/v1/prodtenant</WorkdayRestApiUrl> <WorkdayClientId>Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2</WorkdayClientId> </connection>
Exemple 4 : un fichier XML avec plusieurs locataires :
<connections> <connection name="Planning prod"> <WorkdayAuthorizationUrl>https://example.myworkday.com/prodtenant/authorize</WorkdayAuthorizationUrl> <WorkdayRestApiUrl>https://example.myworkday.com/ccx/api/v1/prodtenant</WorkdayRestApiUrl> <WorkdayClientId>Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2</WorkdayClientId> </connection> <connection name="Planning sandbox"> <WorkdayAuthorizationUrl>https://example.myworkday.com/sandboxtenant/authorize</WorkdayAuthorizationUrl> <WorkdayRestApiUrl>https://example.myworkday.com/ccx/api/v1/sandboxtenant</WorkdayRestApiUrl> <WorkdayClientId>abc0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2</WorkdayClientId> </connection> <connection name="Financials prod"> <Type>financials</Type> <WorkdayAuthorizationUrl>https://example.myworkday.com/prodtenant/authorize</WorkdayAuthorizationUrl> <WorkdayRestApiUrl>https://example.myworkday.com/ccx/api/v1/prodtenant</WorkdayRestApiUrl> <WorkdayClientId>Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiY123</WorkdayClientId> </connection> <connection name="Financials sandbox"> <Type>financials</Type> <WorkdayAuthorizationUrl>https://example.myworkday.com/sandboxtenant/authorize</WorkdayAuthorizationUrl> <WorkdayRestApiUrl>https://example.myworkday.com/ccx/api/v1/sandboxtenant</WorkdayRestApiUrl> <WorkdayClientId>abc0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiY456</WorkdayClientId> </connection> </connections>