have you tried double or right clicking on the component end node to configure it? I believe you added a variable to pass one level upwards which it expects but does not find.
The issue might be caused by the String Configuration node missing a default value.
Hi @zovanti , from what you describe, this is the bug (AP-21669) that I reported here:
Can the workaround I described in the above post assist?
I’ve experienced this bug quite a few times over the past couple of years , and if you are able to upload a small demo flow containing your component I may (might) be able to give suggestions on making it work.
The reason why this works is that any flow variables created within the component will get created regardless of whether the component is active or not, provided that the creation of the flow variable itself is not blocked within the component. In the first screenshot, creation of lv_rowcountname is blocked because the linking flow to String Configuration is blocked (inactive branch).
By removing that link, the variable is created even though the component itself is disabled. Weird but true. It is therefore then possible for the Component Ouput Node to “know” of lv_rowcountname, even though the component is inactive.
It’s a quirk of components (and I believe still a bug). Components which fail in this way (and are more difficult to fix), are those that contain logic within the component itself that causes a flow variable to be created only under specific conditions (rather than always). In your case, there is no need to join the Component Input to the String Configuration nodes - the config nodes will work fine unless they actively require information from outside (such as when using column filter/selection configuration nodes).
I’ve uploaded a flow containing (unlinked) components demonstrating the above.
Thanks @takbb your timely and thorough explanation makes sense and will work in this case (ie. the string configuration is not dependent on external variables).
I can see that a ticket was created off the back of your post on the matter so trust that a solution will be provided in due course (fingers crossed).