Flow not triggering subflow based on Decision TableIssue Flow not triggering subflow based on Decision Table You may see these errors in the logs WARNING *** WARNING *** Get for non-existent record: sys_hub_flow:, initializing Executing flow: (sys_flow_context sys_id: <sys_id>) WARNING *** WARNING *** Error registering filter: : Query String cannot be empty CauseCondition input does not match anything in the Decision table Condition in the decision table is blank ResolutionCheck if it is a decision table issue If response is null, the decision table itself is not matching anything the Flow passed You can use this API to check var dt = new sn_dt.DecisionTableAPI();var inputs = new Object();inputs[‘flow_input_variable_name’] = 'flow_input_variable_value';var response = dt.getDecision('decision_table_sys_id', inputs);gs.print(response); Check the condition of your expected decision record to match and populate it exactly to match the Flow inputs. If it is blank, it will not match any Flow evaluation of "First decision that matches" nor "Run all decisions that match" Make a decision flow logic