OfficeConnect with Tenants installieren (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.
Sie können die Mandanten während der OfficeConnect-Installation einschließen:
- Verwenden Sie für benutzerbezogene InstallationenOfficeConnectSetup.exe.
- Verwenden Sie für computerbezogene InstallationenOfficeConnectMachineSetup.exe.
- Erstellen Sie eine XML-Datei mit den Mandantendetails. Sie können Folgendes einschließen:
- Mehrere Mandanten Beispiel: Produktion und Sandbox
- Mehrere Mandantenarten Beispiel: Adaptive Planning und Workday Financial Management
- Installieren Sie OfficeConnect mit der XML-Datei und geben Sie die anCONNECTIONCONFIG-Eigenschaft.Beispiel:C:\Files\OfficeConnectSetup.exe /quiet CONNECTIONCONFIG="C:\Files\tenants.xml"
Beispiel 1: Adaptive Planning-Mandant ohne Workday SSO:
<connection name="Production Planning"> <PlanningApiUrl>https://uslogin1.adaptiveplanning.com</PlanningApiUrl> <PlanningAuthorizationUrl>https://uslogin1.adaptiveplanning.com</PlanningAuthorizationUrl> </connection>
Beispiel 2: Adaptive Planning-Mandant mit 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>
Beispiel 3: Mandant von 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>
Beispiel 4: Eine XML-Datei mit mehreren Mandanten:
<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>