Installer OfficeConnect avec des environnements clients (administrateur informatique)
- La dernière version d' OfficeConnect. VoirTé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
Selon l'emplacement de votre instance Adaptive Planning , les URL d'autorisation et les points de terminaison de l'API peuvent varier. Pour plus d'informations, voirURL et adresses IP d'authentification d' Adaptive Planning .
Vous pouvez inclure les environnements clients lors de l'installation OfficeConnect :
- Pour les installations par utilisateur, utilisezOfficeConnectSetup.exe.
- Pour les installations par machine, utilisezOfficeConnectMachineSetup.exe.
- Créez un fichier XML avec les informations de environnement client . Vous pouvez inclure :
- Plusieurs environnements clients. Exemple : Production et Sandbox
- Plusieurs types 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>