Installare OfficeConnect con tenant (amministratore IT)
- L'ultima versione di OfficeConnect. Consultare Download prodotti.
- Dettagli di autenticazione per i tenant di Adaptive Planning configurati con Workday SSO o Workday Financial Management. È possibile trovare i seguenti dettagli nel client API OfficeConnect in Workday:
- URL dell'endpoint di autorizzazione
- URL dell'endpoint API Rest
- ID client
- Dettagli autenticazione per tenant Adaptive Planning senza Workday SSO:
- URL dell'endpoint API
- URL dell'endpoint di autorizzazione
Se l'istanza utilizza un'autenticazione regionale non statunitense, gli URL di autorizzazione e gli endpoint API variano in base all'area geografica. Consultare Riferimenti: URL di autenticazione internazionali.
È possibile includere i tenant durante l'installazione di OfficeConnect:
- Per le installazioni per utente, utilizzareOfficeConnectSetup.exe.
- Per le installazioni per computer, utilizzareOfficeConnectMachineSetup.exe.
- Creare un file XML con i dettagli del tenant. È possibile includere:
- Più tenant Esempio: Produzione e Sandbox
- Più tipi di tenant Esempio: Adaptive Planning e Workday Financial Management
- Installare OfficeConnect con il file XML e specificareCONNECTIONCONFIGproprietàEsempio:C:\Files\OfficeConnectSetup.exe /quiet CONNECTIONCONFIG="C:\Files\tenants.xml"
Esempio 1: tenant Adaptive Planning senza Workday SSO:
<connection name="Production Planning"> <PlanningApiUrl>https://uslogin1.adaptiveplanning.com</PlanningApiUrl> <PlanningAuthorizationUrl>https://uslogin1.adaptiveplanning.com</PlanningAuthorizationUrl> </connection>
Esempio 2: tenant Adaptive Planning con SSO 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>
Esempio 3: tenant 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>
Esempio 4: un file XML con più tenant:
<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>