Subflow outputs not assigning

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2025 11:31 AM - edited 03-03-2025 11:32 AM
Hi everyone, I'm having an issue with a subflow where the outputs are not assigning to the outputs. I've attached some screenshots of the subflow below. Any idea what's going on here?
Where I'm expiring the issue is on action 15. If the user was found and the if statement evaluates to true, the subflow outputs are not appearing in the output variables.
The subflow runs step 11 correctly, which is where the inputs come from.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2025 08:05 AM - edited 03-20-2025 08:09 AM
Hi @DylanBlumenberg,
The indentation level of the step 11 - "Lookup User by Employee Number" is deeper than in step 15. It looks like the value of the lookup is not available in step 15.
Similarily you could not reach 'b' variable like this, it'll be undefined:
var a = '<3'
if (a) {
var b = 'I love snow';
}
var c = b;
Maybe you could try to set these variables that you want to use as a flow variables in step 12?
I hope this helps.
Have a great day! 🙂