メインコンテンツにスキップ
Adaptive Planning
テナントで OfficeConnect をインストール (IT 管理者)

テナントで OfficeConnect をインストール (IT 管理者)

  • 最新バージョンの OfficeConnect。 参照 製品ダウンロード
  • Workday SSO または Workday ファイナンシャル マネジメント (財務管理) で設定された Adaptive Planning テナントの認証詳細。Workday の OfficeConnect API クライアントで以下の詳細を確認できます。
    • 認証エンドポイント URL
    • REST API エンドポイント URL
    • クライアント ID
  • Workday SSO を使用しない Adaptive Planning テナントの認証詳細:
    • API エンドポイント URL
    • 認証エンドポイント URL
インスタンスが米国以外の地域の認証を使用している場合、認証 URL と API エンドポイントは地域によって異なります。参照 参考: 地域認証 URL
OfficeConnect のインストール中に以下のテナントを含めることができます。
  • ユーザーごとのインストールの場合、以下を使用します。
    OfficeConnectSetup.exe
  • マシンごとのインストールでは、以下を使用します。
    OfficeConnectMachineSetup.exe
  1. テナントの詳細が記載された XML ファイルを作成します。以下を含めることができます。
    • 複数テナント例: 本稼働環境とサンドボックス
    • 複数のテナント タイプ例: Adaptive Planning と Workday Financial Management
  2. XML ファイルで OfficeConnect をインストールし、以下を指定します。
    CONNECTIONCONFIG
    資産。
    例:
    C:\Files\OfficeConnectSetup.exe /quiet CONNECTIONCONFIG="C:\Files\tenants.xml"
例 1: Workday SSO がない Adaptive Planning テナント
<connection name="Production Planning"> <PlanningApiUrl>https://uslogin1.adaptiveplanning.com</PlanningApiUrl> <PlanningAuthorizationUrl>https://uslogin1.adaptiveplanning.com</PlanningAuthorizationUrl> </connection>
例 2: Workday SSO を使用する Adaptive Planning テナント
<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>
例 3: Workday ファイナンシャル マネジメント (財務管理) テナントでは、以下のようになります。
<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>
例 4: 複数のテナントが含まれる XML ファイルでは、以下のようになります。
<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>