oracle8.1.6 select c.case_id, c.workflow_id, c.object_id, s.state_id, s.short_name as state_short_name, s.pretty_name as pretty_state, s.hide_fields as state_hide_fields from workflow_cases c, workflow_case_fsm cfsm, workflow_fsm_states s where c.case_id = :case_id and cfsm.case_id = c.case_id and s.state_id (+) = cfsm.current_state select m.party_id, p.email, acs_object.name(m.party_id) as name from workflow_case_role_party_map m, parties p where m.case_id = :case_id and m.role_id = :role_id and p.party_id = m.party_id select l.entry_id, l.case_id, l.action_id, a.short_name as action_short_name, a.pretty_past_tense as action_pretty_past_tense, io.creation_user, iou.first_names as user_first_names, iou.last_name as user_last_name, iou.email as user_email, io.creation_date, to_char(io.creation_date, 'fmMM/DDfm/YYYY') as creation_date_pretty, blob_to_string(r.content) as comment_string, -- needs il8-ing... r.mime_type as comment_mime_type, d.key, d.value from workflow_case_log l, workflow_actions a, cr_items i, acs_objects io, cc_users iou, cr_revisions r, workflow_case_log_data d where l.case_id = :case_id and l.action_id = a.action_id and i.item_id = l.entry_id and io.object_id = i.item_id and iou.user_id = io.creation_user and r.revision_id = i.live_revision and d.entry_id (+) = l.entry_id order by creation_date select distinct acs_object.name(p.party_id) || ' (' || p.email || ')' as label, p.party_id from [ad_decode $subquery "" "cc_users" $subquery] p where upper(nvl(acs_object.name(p.party_id) || ' ', '') || p.email) like upper('%'||:value||'%') order by label select acs_object.name(p.party_id) || ' (' || p.email || ')' as label, p.party_id from parties p where p.party_id in ([join $party_id_list ", "]) order by label select acs_object.name(:object_id) as name from dual begin :1 := workflow_case_pkg.del(:case_id); end;