Hello everyone,
while using module I found an opportunity for a good feature: when you call a module, you set the parameters and then, in the module, you’ve to configure the parameters again with some value. It would be great if it’ll be possibile to set these parameters from the main module, on the iteration action.
This feature already works when the module raise an error (it appears a window where you can push current value in the module and open it to debug).
Why we need this?
Because, sometimes, you need to debug the module with parameters that doesn’t raise errors, and to do so you’ve to enter the module and manually set the parameters (and they can be 20-25 of them).
At the moment I found a workaround:
- I modify the module, as first action I add the “Halt on condition” with the condition 1=1;
- I go in the main module, filter the dataset to have the row with the information I need to debug;
- Run the iteration
- The iteration breaks and open the window that let me overwrite the current parameter in the module
I’m the only one with this kind of problem?