Distribuire i tenant di OfficeConnect ai computer degli utenti (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.
Per le installazioni di OfficeConnect nuove o esistenti, è possibile distribuire e aggiornare i tenant direttamente agli utenti. È possibile distribuire i dettagli del tenant nel registro di sistema di Windows utilizzando qualsiasi metodo preferito dall'organizzazione, inclusi criteri di gruppo, script o software di distribuzione.
È possibile distribuire la configurazione del tenant in una di queste posizioni del registro. La distribuzione dei tenant a tutti gli utenti su una macchina è la configurazione preferita.
- HKEY_CURRENT_USER\Software\Adaptive Insightsper gestire i tenant per i singoli utenti.
- HKEY_LOCAL_MACHINE\Software\Adaptive Insightsper gestire i tenant per tutti gli utenti su una macchina.
- Nell'hive del registro desiderato, aggiungere il fileSOFTWARE\Adaptive Insights\Connectionschiave
- Sotto ilConnectionschiave, includere aLastUpdatede impostare il valore sulla data e sull'ora UTC (Universal Time Coordinate) correnti. Ogni volta che si desidera aggiornare i tenant utente, è necessario aggiornare questo valore. La configurazione di OfficeConnect viene aggiornata ogni volta che il fileLastUpdatedmodifiche al valore
- Aggiungere una chiave per ogni tenant. È possibile includere:
- Più tenant Esempio: Produzione e Sandbox.
- Più tipi di tenant: Esempio: Adaptive Planning e Workday Financial Management
Esempio 1: File di registro (.reg) per un tenant Adaptive Planning senza Workday SSO:
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections] "LastUpdated"="2024-04-24T15:10:20" [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections\production] "PlanningApiUrl"="https://uslogin1.adaptiveplanning.com" "PlanningAuthorizationUrl"="https://uslogin1.adaptiveplanning.com"
Esempio 2: File di registro (.reg) per un tenant Adaptive Planning con SSO Workday:
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections] "LastUpdated"="2024-04-24T15:10:20" [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections\Sandbox] "WorkdayAuthorizationUrl"="https://example.myworkday.com/sandboxtenant/authorize" "WorkdayRestApiUrl"="https://example.myworkday.com/ccx/api/v1/sandboxtenant" "WorkdayClientId"="Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2"
Esempio 3: File di registro (.reg) per un tenant di Workday Financial Management. Il
Type=financials
Il valore è obbligatorio per i tenant di Financial Management. Senza questo valore, il tenant è configurato per Adaptive Planning.
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections] "LastUpdated"="2024-04-24T15:10:20" [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections\Financials (prod)] "Type"="financials" "WorkdayAuthorizationUrl"="https://example.myworkday.com/prodtenant/authorize" "WorkdayRestApiUrl"="https://example.myworkday.com/ccx/api/v1/prodtenant" "WorkdayClientId"="Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2"
Esempio 4: File di registro (.reg) con più tenant:
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections] "LastUpdated"="2024-04-24T15:10:20" [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections\Planning prod] "WorkdayAuthorizationUrl"="https://example.myworkday.com/prodtenant/authorize" "WorkdayRestApiUrl"="https://example.myworkday.com/ccx/api/v1/prodtenant" "WorkdayClientId"="Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2" [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections\Planning sandbox] "WorkdayAuthorizationUrl"="https://example.myworkday.com/sandboxtenant/authorize" "WorkdayRestApiUrl"="https://example.myworkday.com/ccx/api/v1/sandboxtenant" "WorkdayClientId"="Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2" [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections\Financials prod] "Type"="financials" "WorkdayAuthorizationUrl"="https://example.myworkday.com/prodtenant/authorize" "WorkdayRestApiUrl"="https://example.myworkday.com/ccx/api/v1/prodtenant" "WorkdayClientId"="Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2" [HKEY_CURRENT_USER\Software\Adaptive Insights\Connections\Financials sandbox] "Type"="financials" "WorkdayAuthorizationUrl"="https://example.myworkday.com/sandboxtenant/authorize" "WorkdayRestApiUrl"="https://example.myworkday.com/ccx/api/v1/sandboxtenant" "WorkdayClientId"="abc0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiY456"
Esempio 5: Script dei comandi di Windows per creare i dati del registro:
SETLOCAL SET BASEKEY=HKLM\Software\Adaptive Insights\Connections reg add "%BASEKEY%" /v LastUpdated /t REG_SZ /d "2024-04-24T15:20:10" /f reg add "%BASEKEY%\Planning prod" /v WorkdayAuthorizationUrl /t REG_SZ /d "https://example.myworkday.com/prodtenant/authorize" /f reg add "%BASEKEY%\Planning prod" /v WorkdayRestApiUrl /t REG_SZ /d "https://example.myworkday.com/ccx/api/v1/prodtenant" /f reg add "%BASEKEY%\Planning prod" /v WorkdayClientId /t REG_SZ /d "Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2" /f reg add "%BASEKEY%\Financials prod" /v Type /t REG_SZ /d "financials" /f reg add "%BASEKEY%\Financials prod" /v WorkdayAuthorizationUrl /t REG_SZ /d "https://example.myworkday.com/prodtenant/authorize" /f reg add "%BASEKEY%\Financials prod" /v WorkdayRestApiUrl /t REG_SZ /d "https://example.myworkday.com/ccx/api/v1/prodtenant" /f reg add "%BASEKEY%\Financials prod" /v WorkdayClientId /t REG_SZ /d "Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiY123" /f ENDLOCAL