Skip to content

Commit bf96499

Browse files
Merge pull request #295183 from jonburchel/patch-2
Update control-flow-system-variables.md
2 parents b38332e + ee27153 commit bf96499

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

articles/data-factory/control-flow-system-variables.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ These system variables can be referenced anywhere in the trigger JSON for trigge
6767
| @triggerBody().folderPath |Path to the folder that contains the file specified by `@triggerBody().fileName`. The first segment of the folder path is the name of the Azure Blob Storage container. |
6868
| @trigger().startTime |Time at which the trigger fired to invoke the pipeline run. |
6969

70-
> [!NOTE]
71-
> If you are creating your pipeline and trigger in [Azure Synapse Analytics](../synapse-analytics/overview-what-is.md), you must use `@trigger().outputs.body.fileName` and `@trigger().outputs.body.folderPath` as parameters. Those two properties capture blob information. Use those properties instead of using `@triggerBody().fileName` and `@triggerBody().folderPath`.
70+
> [!NOTE]
71+
> If you are creating your pipeline and trigger in [Azure Synapse Analytics](../synapse-analytics/overview-what-is.md), you must use `@trigger().outputs.body.fileName` and `@trigger().outputs.body.folderPath` as parameters. Those two properties capture blob information. Use those properties instead of using `@triggerBody().fileName` and `@triggerBody().folderPath`.
7272
7373
## Custom event trigger scope
7474

@@ -84,6 +84,9 @@ These system variables can be referenced anywhere in the trigger JSON for trigge
8484
| @triggerBody().event.data._keyName_ | Data field in custom event is a free from JSON blob, which customer can use to send messages and data. Please use data._keyName_ to reference each field. For example, @triggerBody().event.data.callback returns the value for the _callback_ field stored under _data_. |
8585
| @trigger().startTime | Time at which the trigger fired to invoke the pipeline run. |
8686

87+
> [!NOTE]
88+
> If you are creating your pipeline and trigger in [Azure Synapse Analytics](../synapse-analytics/overview-what-is.md), you must use `@trigger().outputs.body.event` as parameters. This property captures event information. Use this property instead of using `@triggerBody().event`.
89+
8790
## Related content
8891

8992
* For information about how these variables are used in expressions, see [Expression language & functions](control-flow-expression-language-functions.md).

0 commit comments

Comments
 (0)