Deploy OfficeConnect-Mandanten auf Benutzermaschinen (IT-Administrator)
- Die neueste Version von OfficeConnect. Siehe: Produkt-Downloads.
- Authentifizierungsdetails für Adaptive Planning-Mandanten, die mit Workday SSO oder Workday Financial Management konfiguriert sind. Sie finden folgende Details im OfficeConnect-API-Client in Workday:
- URL des Autorisierungsendpunkts
- URL des REST-API-Endpunkts
- Client-ID
- Authentifizierungsdetails für Adaptive Planning-Mandanten ohne Workday SSO:
- URL des API-Endpunkts
- URL des Autorisierungsendpunkts
Wenn Ihre Instanz eine nicht auf den USA basierende regionale Authentifizierung verwendet, variieren Ihre Autorisierungs-URLs und API-Endpunkte je nach Region. Siehe: Referenz: Regionale Authentifizierungs-URLs.
Bei neuen oder vorhandenen OfficeConnect-Installationen können Sie die Mandanten direkt für die Benutzer bereitstellen und aktualisieren. Sie können die Mandantendetails mit jeder von Ihrer Organisation bevorzugten Methode in der Windows-Registrierung bereitstellen, z. B. mit Gruppenrichtlinien, Skripten oder Deployment-Software.
Sie können die Mandantenkonfiguration an einem der folgenden Registrierungsstandorte bereitstellen. Die bevorzugte Konfiguration ist, Mandanten für alle Benutzer auf einem Computer bereitzustellen.
- HKEY_CURRENT_USER\Software\Adaptive Insights, um Mandanten für einzelne Benutzer zu verwalten.
- HKEY_LOCAL_MACHINE\Software\Adaptive Insights, um Mandanten für alle Benutzer auf einem Computer zu verwalten.
- Fügen Sie in der gewünschten Registrierungsstruktur hinzuSOFTWARE\Adaptive Insights\Connections-Schlüssel.
- Unter denConnectionsSchlüssel, schließen Sie a einLastUpdated-Eingabe und setzen Sie den Wert auf das aktuelle Datum und die aktuelle Uhrzeit der Weltzeitkoordinate (UTC). Wenn Sie Benutzermandanten aktualisieren möchten, müssen Sie diesen Wert aktualisieren. Die OfficeConnect-Konfiguration wird bei jeder Ausführung aktualisiertLastUpdatedWertänderungen.
- Fügen Sie einen Schlüssel für jeden Mandanten hinzu. Sie können Folgendes einschließen:
- Mehrere Mandanten Beispiel: Produktion und Sandbox.
- Mehrere Mandantenarten: Beispiel: Adaptive Planning und Workday Financial Management
Beispiel 1: Registrierungsdatei (.reg) für einen Adaptive Planning-Mandanten ohne 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"
Beispiel 2: Registrierungsdatei (.reg) für einen Adaptive Planning-Mandanten mit 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\Sandbox] "WorkdayAuthorizationUrl"="https://example.myworkday.com/sandboxtenant/authorize" "WorkdayRestApiUrl"="https://example.myworkday.com/ccx/api/v1/sandboxtenant" "WorkdayClientId"="Njk0MjQwMGYtMTYxYy00YzEwLWFjZGQtNTBlN2I4YzNiYjU2"
Beispiel 3: Registrierungsdatei (.reg) für einen Workday Financial Management-Mandanten. Die
Type=financials
-Wert ist für Finanzmanagement-Mandanten erforderlich. Ohne diesen Wert wird der Mandant für Adaptive Planning konfiguriert.
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"
Beispiel 4: Registrierungsdatei (.reg) mit mehreren Mandanten:
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"
Beispiel 5: Windows-Anweisungsskript zum Erstellen der Registrierungsdaten:
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