Installer OfficeConnect avec des environnements clients (administrateur informatique)
- La dernière version d'OfficeConnect. Voir Téléchargement de produits.
- Authentification des informations d'authentification pour les environnements clients Adaptive Planning configurés avec l'authentification unique Workday ou Workday Financial Management. Ces informations sont disponibles dans le client API OfficeConnect de Workday :
- URL du point de terminaison de l'autorisation
- URL du point de terminaison de l'API REST-API
- Identifiant client
- Informations d'authentification pour les environnements clients Adaptive Planning sans authentification unique Workday :
- URL du point de terminaison de l'API
- URL du point de terminaison de l'autorisation
Si votre instance utilise une authentification régionale et non basée sur les États-Unis, les URL d'autorisation et les points de terminaison de l'API varient en fonction de votre région. Voir Référence : URL d'authentification régionale.
Vous pouvez inclure les environnements clients 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 informations de l'environnement client. Vous pouvez inclure :
- Plusieurs environnements clients. Exemple : Production et Sandbox
- Plusieurs types d'environnement client. Exemple : Adaptive Planning et Workday Financial Management
- Installez OfficeConnect avec le fichier XML et indiquez leCONNECTIONCONFIGpropriété.Exemple :C:\Files\OfficeConnectSetup.exe /quiet CONNECTIONCONFIG="C:\Files\tenants.xml"
Exemple 1 : environnement client Adaptive Planning sans authentification unique Workday :
<connection name="Production Planning"> <PlanningApiUrl>https://uslogin1.adaptiveplanning.com</PlanningApiUrl> <PlanningAuthorizationUrl>https://uslogin1.adaptiveplanning.com</PlanningAuthorizationUrl> </connection>
Exemple 2 : environnement client Adaptive Planning avec 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 : environnement client 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 environnements clients :
<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>