kintana_scripts_deliver_status_tab_visible_workflow_steps
spool c:\deliver_status_tab_visible_workflow_steps_yyyymmdd.txt
set linesize 1000
select nu.first_name || ' ' || nu.last_name,
-- Determines whether all workflow steps are shown within workflow status panels
-- Set to Y
nup.show_all_workflow_steps_flag,
-- Determines whether steps that have been traversed and are no longer active
-- are shown within workflow status panels
-- Set to Y
nup.show_traversed_steps_flag,
-- Determines whether or not workflow steps based upon immediate executions and
-- conditions are shown within workflow status panels
-- Set to N
nup.hide_immediate_steps_flag
from KNTA_USER_PROFILES nup,
KNTA_USERS nu
where nup.user_id = nu.user_id
-- and nu.first_name = 'David'
-- and nu.last_name = 'Goodall'
spool off
|