Installare OfficeConnect con tenant (amministratore IT)
- L'ultima versione di OfficeConnect ConsultareDownload prodotti .
- Dettagli di autenticazione per i tenant Adaptive Planning configurati con Workday SSO o Workday Financial Management. È possibile trovare i seguenti dettagli nel client API OfficeConnect del Workday:
- URL endpoint di autorizzazione
- URL endpoint API Rest
- ID client
- Dettagli autenticazione per tenant Adaptive Planning senza Workday SSO:
- URL endpoint API
- URL endpoint di autorizzazione
In base alla posizione istanza di Adaptive Planning , gli URL di autorizzazione e gli endpoint API possono variare. Per ulteriori informazioni, consultareURL e indirizzi IP di autenticazione Adaptive Planning .
È possibile includere i tenant durante l'installazione OfficeConnect :
- Per le installazioni per utente, utilizzareOfficeConnectSetup.exe.
- Per le installazioni per computer, utilizzareOfficeConnectMachineSetup.exe.
- Creare un file XML con i dettagli tenant . È possibile includere:
- Più tenant Esempio: Produzione e Sandbox
- Più tipi 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>