-
closed_process: Uses the process_instance table in this query:
SELECT wf_instance_id, wf_creation_date, wf_creator_dn, wf_title,
wf_priority, wf_entry_cn, wf_exit_cn wf_node_cn, wf_last_modified,
wf_pi_state, wf_app_cn, wf_observer_url, wf_performer_url,
wf_archived_flag
FROM process_instance WHERE wf_pi_state >= 4
-
worklist: Uses the process_instance and work_item tables in this query:
SELECT wi.wf_instance_id, wi.wf_performer_url,
wf_observer_url, wf_fork_id,
wf_node_cn, wf_wi_state,
wf_expired_flag, wf_wi_cdate,
wf_exp_date, wf_user_dn, wf_title,
wf_priority, wf_creation_date,
wf_creator_dn, wf_entry_cn,
wf_last_modified, wf_pi_state,
wf_target_cn, wf_app_cn
FROM process_instance pi, work_item wi
WHERE wi.wf_instance_id = pi.wf_instance_id
-
application-specific view: Uses the process_instance and the application-specific tables in a query such as this:
SELECT pi.wf_instance_id, fieldrole, datefield, textfield, radio,
wf_creation_date, wf_creator_dn,
wf_last_modified, wf_app_cn,
wf_ pi_state, wf_entry_cn, wf_title,
wf_priority, wf_exit_cn, wf_archived_flag,
wf_performer_url,wf_observer_url
FROM user1.process_instance pi, child app
WHERE pi.wf_instance_id = app.wf_instance_id
-
searchlist view: Uses the process_instance table in a query such as this:
SELECT pi.wf_instance_id wf_instance_id,
wf_creation_date, wf_creator_dn, wf_title, wf_priority,
wf_entry_cn, wf_exit_cn, wf_last_modified, wf_pi_state,
wf_app_cn, wf_observer_url, wf_archived_flag, wf_fork_id,
wf_node_cn, wf_wi_state, wf_expired_flag, wf_wi_cdate,
wf_exp_date, wf_user_dn, wf_target_cn, wi.wf_performer_url,
wf_deferred_flag from process_instance pi, work_item wi
where pi.wf_instance_id = wi.wf_instance_id (+))