Skip to main content
Adaptive Planning
Laatst bijgewerkt: 2023-06-23
OfficeConnect installeren met tenants (IT-beheerder)

OfficeConnect installeren met tenants (IT-beheerder)

  • De nieuwste versie van OfficeConnect. Zie Product Downloads.
  • 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
If your instance uses non-US based, regional authentication, then your authorization URLs and API endpoints vary based on your region. See Reference: Regional Authentication URLs.
U kunt de tenants opnemen tijdens de installatie van OfficeConnect:
  • Gebruik voor installaties per gebruiker
    OfficeConnectSetup.exe
    .
  • Gebruik voor installaties per computer:
    OfficeConnectMachineSetup.exe
    .
  1. Maak een XML-bestand met de tenantdetails. U kunt het volgende opnemen:
    • Meerdere tenants. Voorbeeld: productie en sandbox
    • Meerdere tenanttypen. Voorbeeld: Adaptive Planning en Workday Financial Management
  2. Installeer OfficeConnect met het XML-bestand en geef de
    CONNECTIONCONFIG
    eigenschap.
    Voorbeeld:
    C:\Files\OfficeConnectSetup.exe /quiet CONNECTIONCONFIG="C:\Files\tenants.xml"
Voorbeeld 1: Adaptive Planning-tenant zonder Workday SSO:
<connection name="Production Planning"> <PlanningApiUrl>https://uslogin1.adaptiveplanning.com</PlanningApiUrl> <PlanningAuthorizationUrl>https://uslogin1.adaptiveplanning.com</PlanningAuthorizationUrl> </connection>
Voorbeeld 2: Adaptive Planning-tenant met Workday SSO:
<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>
Voorbeeld 3: Workday Financial Management-tenant:
<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>
Voorbeeld 4: een XML-bestand met meerdere tenants:
<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>