ActivitiesSettings
組織の活動設定と、カレンダー用のユーザインターフェース設定を表します。ActivitiesSettings コンポーネントの種類を使用して、次の活動設定を制御します。
- グループ ToDo と定期的な ToDo、定期的な行動と複数日の行動、およびメール追跡を設定する
- 複数の取引先責任者を ToDo および行動に関連付ける (Shared Activities)
- ミーティング要請にカスタムロゴ��表示する
また、ActivitiesSettings コンポーネントの種類を使用して、フロート表示リンクやドラッグアンドドロップ編集などを含め、カレンダーのユーザインターフェース設定も制御できます。
パッケージマニフェストでは、「Settings」の名前を使用してすべての組織設定メタデータ型にアクセスします。詳細は「設定」を参照してください。
ファイルのサフィックスおよびディレクトリの場所
ActivitiesSettings の値は、settings ディレクトリの Activities.settings ファイルに保存されます。.settings ファイルは、各設定コンポーネントに設定ファイルが 1 つしかないため、他の名前つきのコンポーネントとは異なります。
バージョン
ActivitiesSettings は、API バージョン 28.0 以降で使用できます。
項目
次に示すすべてのタイプの設定は、[活動設定] ページまたは [ユーザインターフェース設定] ページで次のように制御されます。
パッケージマニフェストの例
組織の活動設定メタデータをリリースまたは取得するために使用される、パッケージマニフェストの例を次に示します。
1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3 <types>
4 <members>Activities</members>
5 <name>Settings</name>
6 </types>
7 <version>28.0</version>
8</Package>宣言的なメタデータの定義のサンプル
活動設定ファイルの例を次に示します。
1<?xml version="1.0" encoding="UTF-8"?>
2<ActivitiesSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3 <enableActivityReminders>true</enableActivityReminders>
4 <autoRelateEventAttendees>true</autoRelateEventAttendees>
5 <enableClickCreateEvents>true</enableClickCreateEvents>
6 <enableDragAndDropScheduling>true</enableDragAndDropScheduling>
7 <enableEmailTracking>true</enableEmailTracking>
8 <enableGroupTasks>true</enableGroupTasks>
9 <enableListViewScheduling>true</enableListViewScheduling>
10 <enableMultidayEvents>true</enableMultidayEvents>
11 <enableRecurringEvents>true</enableRecurringEvents>
12 <enableRecurringTasks>true</enableRecurringTasks>
13 <enableSidebarCalendarShortcut>true</enableSidebarCalendarShortcut>
14 <meetingRequestsLogo>Folder02/logo03.png</meetingRequestsLogo>
15 <showCustomLogoMeetingRequests>true</showCustomLogoMeetingRequests>
16 <showEventDetailsMultiUserCalendar>true</showEventDetailsMultiUserCalendar>
17 <showHomePageHoverLinksForEvents>true</showHomePageHoverLinksForEvents>
18 <showMyTasksHoverLinks>true</showMyTasksHoverLinks>
19</ActivitiesSettings>