Skip to content

Commit abb08fc

Browse files
authored
Merge pull request #8172 from MicrosoftDocs/main
updating working
2 parents 95794c4 + a575e30 commit abb08fc

File tree

6 files changed

+389
-9
lines changed

6 files changed

+389
-9
lines changed

powerapps-docs/developer/component-framework/manifest-schema-reference/includes/type-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Following `of-type` property values are not supported currently:
3030
|Value|Description|
3131
|-----|-----|
3232
|Whole.Duration|This format option can be used to display a list of duration options. But the data stored in the database is always a number of minutes. The column looks like a drop-down list and provides suggested options like 1 minute, 15 minutes, 30 minutes all the way up to 3 days. People can choose these options. However, people can also just type in a number of minutes and it resolves to that period of time.|
33-
|Whole.TimeZone|This option displays a select list of time zones such as (GMT-12:00) International Date Line West and (GMT-08:00) Pacific Time (US & Canada). Each of these zones is stored as a number. For example, for the time zone (GMT-08:00) Pacific Time (US & Canada), the TimeZoneCode is 4. More information: [TimeZoneCode Class (Sdk Assembly)](/previous-versions/dynamics-crm4/developers-guide/bb959779(v=msdn.10))|
33+
|Whole.TimeZone|This option displays a select list of time zones such as (GMT-12:00) International Date Line West and (GMT-08:00) Pacific Time (US & Canada). Each of these zones is stored as a number. For example, for the time zone (GMT-08:00) Pacific Time (US & Canada), the TimeZoneCode is 4.|
3434
|Whole.Language|This option displays a list of the languages provisioned for your organization. The values are displayed as a drop-down list of language names, but the data is stored as a number using LCID codes. Language codes are four-digit or five-digit locale IDs. Valid locale ID values can be found at [Locale ID (LCID) Chart)](/previous-versions/windows/embedded/ms912047(v=winembedded.10)).|
3535
|Lookup.Customer|Allows for a single reference to either an account or a contact record. These lookups are available for the Opportunity, Case, Quote, Order, and Invoice tables. These tables also have separate Account and Contact lookups that you can use if your customers are always one type. Or you can include both instead of using the Customer lookup.|
3636
|Lookup.Owner|Allows for a single reference to either a team or a user record. All team or user-owned tables have one of these.|

powerapps-docs/developer/data-platform/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@
5555
href: org-service/samples/export-data-fetchxml-annotation-custom-api-sample.md
5656
- name: Use Custom Process Actions with code
5757
href: workflow-custom-actions.md
58+
- name: Use open types with Custom APIs
59+
href: use-open-types.md
5860
- name: Background operations (Preview)
5961
href: background-operations.md
6062
- name: Use optional parameters

powerapps-docs/developer/data-platform/configure-exchange-folder-level-tracking-rules.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Configure folder-level tracking rules to map a Microsoft Exchange inbox folder t
1818

1919
- The folder-level tracking feature is enabled for your Dataverse instance. You can enable folder-level tracking by using the web client or Dynamics 365 for Outlook. More information: [Configure folder-level tracking](/dynamics365/customer-engagement/admin/configure-outlook-exchange-folder-level-tracking)
2020

21-
- The folder that you are tracking is under the **Inbox** folder in Microsoft Exchange. Emails in the folders that are not under the **Inbox** folder wont be tracked.
21+
- The folder that you are tracking is under the **Inbox** folder in Microsoft Exchange. Emails in the folders that are not under the **Inbox** folder won't be tracked.
2222

2323
<a name="Create"></a>
2424

2525
## Create and manage folder-level tracking rules
2626

27-
Use the [MailboxTrackingFolder table](reference/entities/mailboxtrackingfolder.md) to programmatically configure and manage your folder-level tracking rules. To set up a tracking rule, use the following columns.
27+
Use the [Mailbox Auto Tracking Folder (MailboxTrackingFolder) table](reference/entities/mailboxtrackingfolder.md) to programmatically configure and manage your folder-level tracking rules. To set up a tracking rule, use the following columns.
2828

2929

3030
| Column | Description |
@@ -53,7 +53,7 @@ _folderTrackingId = _serviceProxy.Create(newTrackingFolder);
5353
Console.WriteLine("Created folder-level tracking rule for '{0}'.\n", _mailboxName);
5454
```
5555

56-
You can create a maximum of 25 folder-level tracking rules per mailbox. The folder ID of the Microsoft Exchange folder cant be validated at the time of creating the mapping using SDK. However, as soon as you create a mapping rule, and if the folder ID is invalid, it will show up in the UI in Dataverse to indicate that the mapping is invalid.
56+
You can create a maximum of 25 folder-level tracking rules per mailbox. The folder ID of the Microsoft Exchange folder can't be validated at the time of creating the mapping using SDK. However, as soon as you create a mapping rule, and if the folder ID is invalid, it will show up in the UI in Dataverse to indicate that the mapping is invalid.
5757

5858
Any manual changes done to the regarding object in the tracked activity records, created in Dataverse as a result of the folder-level tracking rule, will be overridden the next time server-side synchronization occurs. For example, if you have set up a mapping between the `Adventure Works` folder and the `Adventure Works` account, all the emails in the `Adventure Works`Microsoft Exchange folder will be tracked as activities in Dataverse with the regarding set to the `Adventure Works` account record. If you change the regarding of some activities to any other record, it will automatically be overridden the next time server-side synchronization occurs.
5959

@@ -86,8 +86,8 @@ foreach (var folderMapping in resp.MailboxTrackingFolderMappings)
8686
### See also
8787

8888
<xref:Microsoft.Dynamics.CRM.RetrieveMailboxTrackingFolders?text=RetrieveMailboxTrackingFolders Function><br />
89-
[MailboxTrackingFolder table](/reference/entities/mailboxtrackingfolder.md)<br />
90-
[Mailbox table](/reference/entities/mailbox.md)<br />
89+
[Mailbox Auto Tracking Folder (MailboxTrackingFolder) table](reference/entities/mailboxtrackingfolder.md)<br />
90+
[Mailbox table](reference/entities/mailbox.md)<br />
9191
[Configure folder-level tracking](/dynamics365/customer-engagement/admin/configure-outlook-exchange-folder-level-tracking)<br />
9292
[Server-side Synchronization tables](server-side-synchronization-entities.md)<br />
9393

0 commit comments

Comments
 (0)