workflow::case::active_p (public)
workflow::case::active_p -case_id case_id
Defined in packages/workflow/tcl/case-procs.tcl
Returns true if the case is active, otherwise false.
- Switches:
- -case_id (required)
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: # Implementation note: The case is active if there are any enabled actions, otherwise not db_transaction { set enabled_actions [workflow::case::get_enabled_actions -case_id $case_id] } return [expr {[llength $enabled_actions] > 0}]Generic XQL file: 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