What does %User.DevLimitLongTables% mean
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This syntax refers to user-defined variables defined in the workflow config. They're called variables, but they act as constants, since there is no way modify them from within the workflow.
You can use them almost anywhere in tool configs or formulas using the "%User.VariableName%" syntax. Any time the runtime engine see a reference like this, it's replaced with the value defined in the config.
In your case, it's used to add a configurable upper limit to the number of rows that are read by the input. In the attached example, the variable is used to limit the rows read by the input tool. The csv contains 3 rows, and by changing the variable, you change the number of rows that are read.
As to why it's there, the original author of the workflow might have wanted a quick way to limit rows so the workflow would run faster during development. In production, changing the value to very large number will read the entire file.
Dan
