workflow::case::get_log_data (public)

 workflow::case::get_log_data -entry_id entry_id

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

Retrieve extra data for a workflow log entry, previously stored using workflow::case::add_log_data.

Switches:
-entry_id
(required)
The ID of the log entry to which the data you want are attached.
Returns:
A tcl list of key/value pairs in array-list format, i.e. { key1 value1 key2 value2 ... }.
Author:
Lars Pind <lars@collaboraid.biz>
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 db_string db_string (public) workflow::case::get_log_data workflow::case::get_log_data workflow::case::get_log_data->db_string

Testcases:
No testcase defined.
Source code:
    db_string select_log_data {} -default {}
Generic XQL file:
<fullquery name="workflow::case::get_log_data.select_log_data">
    <querytext>
      select key, value
      from   workflow_case_log_data
      where  entry_id = :entry_id
      order  by key
    </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: