Skip to main content
Adaptive Planning
Laatst bijgewerkt: 2023-06-23
OfficeConnect tenants implementeren op gebruikerscomputers (IT-beheerder)

OfficeConnect tenants implementeren op gebruikerscomputers (IT-beheerder)

  • De nieuwste versie van OfficeConnect. ZieProductdownloads .
  • Verificatiedetails voor Adaptive Planning tenants die zijn geconfigureerd met Workday SSO of Workday Financial Management. U vindt deze details in de OfficeConnect API-client in Workday:
    • URL autorisatie- eindpunt
    • URL rest-API eindpunt
    • Client-ID
  • Verificatiedetails voor Adaptive Planning tenants zonder Workday SSO:
    • URL API eindpunt
    • URL autorisatie- eindpunt
Op basis van de locatie van uw Adaptive Planning instance kunnen uw autorisatie-URL's en API-eindpunten variëren. Zie voor meer informatie:Adaptive Planning verificatie-URL's en IP-adressen .
Voor nieuwe of bestaande OfficeConnect installaties kunt u de tenants rechtstreeks voor gebruikers implementeren en bijwerken. U kunt de tenant in het Windows-register implementeren met behulp van elke methode die uw organisatie verkiest, inclusief groepsbeleid, scripts of implementatiesoftware.
U kunt de tenant implementeren op een van deze registerlocaties. Het implementeren van tenants voor alle gebruikers op een computer is de voorkeursconfiguratie.
  • HKEY_CURRENT_USER\Software\Adaptive Insights
    om tenants voor afzonderlijke gebruikers te beheren.
  • HKEY_LOCAL_MACHINE\Software\Adaptive Insights
    om tenants voor alle gebruikers op een computer te beheren.
  1. Voeg in de gewenste registercomponent de toe
    SOFTWARE\Adaptive Insights\Connections
    sleutel.
  2. Onder de
    Connections
    sleutel, inclusief a
    LastUpdated
    invoer en stel de waarde in op de huidige UTC-datum en tijd. Telkens wanneer u gebruikerstenants wilt bijwerken, moet u deze waarde bijwerken. De OfficeConnect configuratie wordt bijgewerkt wanneer:
    LastUpdated
    waarde verandert.
  3. Voeg voor elke tenant een sleutel toe. U kunt het volgende opnemen:
    • Meerdere tenants. Voorbeeld: Productie en Sandbox.
    • Meerdere tenant : Voorbeeld: Adaptive Planning en Workday Financial Management
Voorbeeld 1: registerbestand (.reg) voor een Adaptive Planning tenant zonder 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"
Voorbeeld 2: registerbestand (.reg) voor een Adaptive Planning tenant met 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"
Voorbeeld 3: registerbestand (.reg) voor een Workday Financial Management- tenant. De
Type=financials
waarde is vereist voor Financial Management-tenants. Zonder deze waarde is de tenant geconfigureerd voor 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"
Voorbeeld 4: registerbestand (.reg) met meerdere tenants:
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"
Voorbeeld 5: Windows-opdrachtscript om de registergegevens te maken:
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