workflow::case::get_enabled_actions_not_cached (private, deprecated)

 workflow::case::get_enabled_actions_not_cached case_id

Defined in packages/workflow/tcl/case-procs.tcl

Deprecated. Invoking this procedure generates a warning.

Used internally by the workflow API only. Goes to the database to get the enabled actions for the case.

Parameters:
case_id

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::case::flush_cache0 workflow::case::flush_cache0 (private) workflow::case::get_enabled_actions_not_cached workflow::case::get_enabled_actions_not_cached workflow::case::flush_cache0->workflow::case::get_enabled_actions_not_cached workflow::case::get_enabled_actions workflow::case::get_enabled_actions (public, deprecated) workflow::case::get_enabled_actions->workflow::case::get_enabled_actions_not_cached ad_log_deprecated ad_log_deprecated (public) workflow::case::get_enabled_actions_not_cached->ad_log_deprecated db_list db_list (public) workflow::case::get_enabled_actions_not_cached->db_list

Testcases:
No testcase defined.
Source code:
ad_log_deprecated proc workflow::case::get_enabled_actions_not_cached
    return [db_list select_enabled_actions {}]
Generic XQL file:
<fullquery name="workflow::case::get_enabled_actions_not_cached.select_enabled_actions">
    <querytext>
      select a.action_id
      from   workflow_case_enabled_actions ena,
             workflow_actions a
      where  ena.case_id = :case_id
      and    a.action_id = ena.action_id
      and    ena.completed_p = 'f'
      and    a.trigger_type = 'user'
      order by a.sort_order
    </querytext>
</fullquery>
packages/workflow/tcl/case-procs.xql

PostgreSQL XQL file:
packages/workflow/tcl/case-procs-postgresql.xql

Oracle XQL file:
packages/workflow/tcl/case-procs-oracle.xql

[ hide source ] | [ make this the default ]
Show another procedure: