Skip to content

Commit b8db359

Browse files
Added December updates to Power Query M reference
1 parent 0020d35 commit b8db359

5 files changed

Lines changed: 21 additions & 3 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
description: "Learn more about: Diagnostics.CorrelationId"
3+
title: "Diagnostics.CorrelationId"
4+
---
5+
# Diagnostics.CorrelationId
6+
7+
## Syntax
8+
9+
<pre>
10+
Diagnostics.CorrelationId() as nullable text
11+
</pre>
12+
13+
## About
14+
15+
Returns an opaque identifier to correlate incoming requests with outgoing ones.

query-languages/m/docfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"author": "dougklopfenstein",
4646
"ms.author": "dougklo",
4747
"searchScope": ["Power Query","M formula language"],
48-
"ms.date": "10/19/2023"
48+
"ms.date": "11/15/2023"
4949
},
5050
"fileMetadata": { },
5151
"template": [],

query-languages/m/error-handling.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: Error handling functions"
33
title: "Error handling functions"
4-
ms.date: 5/16/2022
4+
ms.date: 11/15/2023
55
ms.custom: "nonautomated-date"
66
---
77
# Error handling functions
@@ -11,5 +11,6 @@ These functions can be used to trace or construct errors.
1111
|Name|Description|
1212
|------------|---------------|
1313
|[Diagnostics.ActivityId](diagnostics-activityid.md)|Returns an opaque identifier for the currently-running evaluation.|
14+
|[Diagnostics.CorrelationId](diagnostics-correlationid.md)|Returns an opaque identifier to correlate incoming requests with outgoing ones.|
1415
|[Diagnostics.Trace](diagnostics-trace.md)|Writes a trace message, if tracing is enabled, and returns value.|
1516
|[Error.Record](error-record.md)|Returns a record containing fields **Reason**, **Message**, and **Detail** set to the provided values. The record can be used to raise or throw an error.|

query-languages/m/sharepoint-tables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ Returns a table containing a row for each List item found at the specified Share
1717
* `ApiVersion`: A number (14 or 15) or the text "Auto" that specifies the SharePoint API version to use for this site. When not specified, API version 14 is used. When Auto is specified, the server version will be automatically discovered if possible, otherwise version defaults to 14. Non-English SharePoint sites require at least version 15.
1818
* `Implementation`: Optional. Specifies which version of the SharePoint connector to use. Accepted values are "2.0" or null. If the value is "2.0", the 2.0 implementation of the SharePoint connector is used. If the value is null, the original implementation of the SharePoint connector is used.
1919
* `ViewMode`: Optional. This option is only valid for implementation 2.0. Accepted values are "All" and "Default". If no value is specified, the value is set to "All". When "All"; is specified, the view includes all user-created and system-defined columns. When "Default" is specified, the view will match what the user sees when looking at the list online in whichever view that user set as Default in their settings. If the user edits their default view to add or remove either user-created or system-defined columns, or by creating a new view and setting it as default, these changes will propagate through the connector.
20-
* `DisableAppendNoteColumns`
20+
* `DisableAppendNoteColumns`: Prevents the connector from using a separate endpoint for note columns.

query-languages/m/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,8 @@ items:
580580
href: error-handling.md
581581
- name: Diagnostics.ActivityId
582582
href: diagnostics-activityid.md
583+
- name: Diagnostics.CorrelationId
584+
href: diagnostics-correlationid.md
583585
- name: Diagnostics.Trace
584586
href: diagnostics-trace.md
585587
- name: Error.Record

0 commit comments

Comments
 (0)