diff --git a/Projects/SealDocumentation/Reports.cshtml b/Projects/SealDocumentation/Reports.cshtml index 8dcff6c1..10a24470 100644 --- a/Projects/SealDocumentation/Reports.cshtml +++ b/Projects/SealDocumentation/Reports.cshtml @@ -685,12 +685,12 @@ model.ResultTable = query2.CopyToDataTable2();
A Report Task is a SQL or a Razor Script executed at a given step of the report execution.
- A task references one Data Source and one Connection and is instanciated from a template to define defaut scripts and paramters.
+ A task references one Data Source and one Connection and is instanciated from a Task Template to define default scripts and parameters.
A report can have several tasks executed sequentially from the top to the bottom.
- A task can have tasks children that are executed sequentially by the task.
- A task can be executed at different step of the report generation (
- If a task is a Razor Script, it can stop the report execution by setting the CancelReport
flag to true.
Thus, simple workflows can be implemented with tasks (
-
report.Cancel
flag to true.
Using the Execute for each connection
property, a task can be executed for all connections defined in the Data Source.
@@ -702,6 +702,12 @@ model.ResultTable = query2.CopyToDataTable2();
Several Task Templates are dedicated to perform ETL operations: Loading an Excel Sheet to a database table, copying tables between databases, unzipping a file, download from FTP Server, etc.
The task templates Loop (to loop over a list of objects) or Parallel (to execute children simultaneously) allow to perform several taks in parallel (multi-threading).
Default PDF Configuration
and the Default Excel Configuration
that are used by default when a conversion is done.