workflow::case::add_log_data (public)
workflow::case::add_log_data -entry_id entry_id -key key -value value
Defined in packages/workflow/tcl/case-procs.tcl
Adds extra data information to a log entry, which can later be retrieved using workflow::case::get_log_data_by_key. Data are stored as simple key/value pairs.
- Switches:
- -entry_id (required)
- The ID of the log entry to which you want to attach data.
- -key (required)
- The data key.
- -value (required)
- The data value
- Author:
- Lars Pind <lars@collaboraid.biz>
- See Also:
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: db_dml insert_log_data {}Generic XQL file: <fullquery name="workflow::case::add_log_data.insert_log_data"> <querytext> insert into workflow_case_log_data (entry_id, key, value) values (:entry_id, :key, :value) </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