I have 2 files: status, status_update.
And one boolean variable called “status” which by default = False.
Then I have one argument passing from file 1 (where “status” variable get Assign = True) to file 2.
The problem:
in file 2, the passed argument is = False, instead of = True (as explained, being Assigned = True in file 1).
07/24/2022 18:06:43 => [Debug] Debug started for file: status
07/24/2022 18:06:46 => [Info] robot execution started
07/24/2022 18:06:48 => [Info] Initial status = False
07/24/2022 18:06:48 => [Info] First workflow = True
07/24/2022 18:06:48 => [Warning] Second workflow = False
07/24/2022 18:06:48 => [Info] robot execution ended in: 00:00:01
Peter, files are empty, contains only one Assign activity and Log activity.
At the end, file 1 reports: variable status=True.
At start, file 2 reporst: argument status=False.