To save a file for use outside of the worker,use the keyword Set Output File. This will upload the file to Camunda’s document store and make the file reference available as an output variable.
Syntax:
Set Output File {variable_name} {file_path}
Parameters:
{variable_name}: The name of the file variable you want to create.
{file_path}: The local path to the file you want to attach to the process.
Example:
Set Output File invoiceDocument /path/to/invoice.pdf
This command uploads the file located at /path/to/invoice.pdf and makes it available as a file reference in the invoiceDocument output variable.
What should we do?
Add the option to return files to the Process:
Why should we do it?
To better integrate RPA results with the camunda.
Example docs
Creating Files (integrates document handling)
To save a file for use outside of the worker,use the keyword
Set Output File
. This will upload the file to Camunda’s document store and make the file reference available as an output variable.Syntax:
Parameters:
{variable_name}
: The name of the file variable you want to create.{file_path}
: The local path to the file you want to attach to the process.Example:
This command uploads the file located at
/path/to/invoice.pdf
and makes it available as a file reference in theinvoiceDocument
output variable.