Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ initial_prompt: |
- Reviewer sees: expense amount, requester name, category (all read-only)
- Reviewer fills in: approved (boolean), comments (text, optional)
- Outcomes: Approve (primary), Reject
3. Script node — reads the reviewer's decision from the HITL result and
3. Script node — reads the reviewer's decision from the HITL output and
logs: "Decision: <approved value>, Comments: <comments value>"
The script must reference the HITL output via the correct runtime variable path.
4. End node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ initial_prompt: |
- Sees (read-only): vendor name, credit score
- Fills in: approved (boolean, required), risk_notes (text, optional)
- Outcomes: Approve (primary), Reject
4. Decision node — branches on the `approved` boolean from the HITL result:
4. Decision node — branches on the `approved` boolean from the HITL output:
- true → Script node that logs "Vendor onboarded" → End
- false → Script node that logs "Vendor rejected" → End

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ initial_prompt: |
- Reviewer sees (read-only): employee name, number of days
- Reviewer fills in: approved (boolean)
- Outcomes: Approve (primary), Reject
3. Decision node — branches on the reviewer's approved field from the HITL result
3. Decision node — branches on the reviewer's approved field from the HITL output
4. true branch → Script node that logs "Leave approved" → End
5. false branch → Script node that logs "Leave rejected" → End

Use the inline quickform HITL node (uipath.human-in-the-loop).
Wire: Trigger → HITL →|completed| Decision → both branches → Script → End

The Decision node condition must reference the HITL result using the
The Decision node condition must reference the HITL output using the
correct runtime variable path ($vars.<nodeId>.output.<fieldName>).

Do NOT run flow debug. Validate after building.
Expand Down
Loading