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 (required)
- Partial Call Graph (max 5 caller/called nodes):
- 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