Difference between revisions of "Activity:CreateCSVScope (Activity)"
(→See also) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | The CreateCSVScope activity creates [http://en.wikipedia.org/wiki/Comma-separated_values Comma-Separated-Values] data. It is the root activity for an export of CSV data into files. | ||
+ | |||
+ | =Description= | ||
{{ActivityInfoBox | {{ActivityInfoBox | ||
| title = Create CSV Scope | | title = Create CSV Scope | ||
Line 9: | Line 12: | ||
| version = 2.1.16+ | | version = 2.1.16+ | ||
}} | }} | ||
− | |||
− | ==Arguments== | + | ===Arguments=== |
{| class="wikitable sortable" | width = "50%" | {| class="wikitable sortable" | width = "50%" | ||
Line 28: | Line 30: | ||
{{Attention|Using the OuputEncoding "ANSI" means that the exported text is written according to the default [http://windows.microsoft.com/en-us/windows/change-system-locale Windows System Locale Setting] (e.g. English-US)!}} | {{Attention|Using the OuputEncoding "ANSI" means that the exported text is written according to the default [http://windows.microsoft.com/en-us/windows/change-system-locale Windows System Locale Setting] (e.g. English-US)!}} | ||
− | ==Usage== | + | ===Usage=== |
− | + | This activity is used to start the export of CSV data. It is a nestable activity, which means it can host any amount of sub-activities that will be processed sequentially. The hosted activities are typically [[Activity:CreateCSVRow (Activity)|CreateCSVRow ]]activities, either as direct children but also wrapped within looping activities like ForEach or While. | |
− | This activity is used to start the export of CSV data. It is a nestable activity, which means it can host any amount of sub-activities that will be processed sequentially. The hosted activities are typically [[CreateCSVRow (Activity)|CreateCSVRow ]]activities, either as direct children but also wrapped within looping activities like ForEach or While. | + | |
{{Attention|This activity provides the created CSV document to all CSV sub activities, so the CSV sequence will be built in the very order the sub activities are nested!}} | {{Attention|This activity provides the created CSV document to all CSV sub activities, so the CSV sequence will be built in the very order the sub activities are nested!}} | ||
− | + | =Example= | |
The CreateCSVScope activity, as used in the larger example "Export Multilanguage Properties of all Instances": | The CreateCSVScope activity, as used in the larger example "Export Multilanguage Properties of all Instances": | ||
[[File:UI_Activity_CreateCSVScope_Example.png|x700px]] | [[File:UI_Activity_CreateCSVScope_Example.png|x700px]] | ||
+ | |||
+ | <headertabs /> | ||
==See also== | ==See also== | ||
* [[Workflow Designer]] | * [[Workflow Designer]] | ||
− | * [[CreateCSVRow (Activity)]] | + | * [[Activity:CreateCSVRow (Activity)]] |
− | * [[CreateCSVValue (Activity)]] | + | * [[Activity:CreateCSVValue (Activity)]] |
[[Category:CSV]] | [[Category:CSV]] | ||
− |
Latest revision as of 12:38, 23 February 2015
The CreateCSVScope activity creates Comma-Separated-Values data. It is the root activity for an export of CSV data into files.