Skip to main content

The Data Manager

The Data Manager is the central hub for all data-related assets in DS Studio. It provides a unified, structured view of your Variables, Arguments, and Namespaces, ensuring that your data architecture remains organized as your projects scale.

๐Ÿ—๏ธ Interface Overviewโ€‹

The Data Manager is typically located at the bottom of the Flow Designer. It is divided into three functional tabs:

1. Variablesโ€‹

This tab manages local memory. It allows you to define the Name, Type, Scope, and Default Value for data used within the current file.

  • Refactoring: Renaming a variable here updates all references throughout your flow automatically.

2. Argumentsโ€‹

This tab handles data exchange. Use this to define how data enters (In) or exits (Out) the flow when it is invoked by another process.

  • Global Access: Unlike variables, arguments are accessible across all sequences within the invoked file.

3. Namespaces (Imports)โ€‹

Advanced users can use this tab to import .NET namespaces (e.g., System.Text.RegularExpressions). This enables the use of specialized classes and methods within your expressions.

โšก Power User Featuresโ€‹

Search & Filterโ€‹

Use the search bar at the top of the pane to instantly locate a specific variable by name. This is essential for enterprise workflows that may contain dozens of data points.

Property Synchronizationโ€‹

The Data Manager is bi-directionally synced with the Properties Panel. Changes made in the panel are instantly reflected in the Data Manager and vice-versa.

๐Ÿงน Automatic Cleanupโ€‹

To maintain a high-performance robot, right-click inside the Data Manager and select Remove Unused Variables. This ensures that no unnecessary memory is allocated during the execution of your automation.


Next Steps: