Monday, December 30, 2024

Query to get Oracle Workflow attribute values

SELECT name attribute_name
      ,NVL(text_value, NVL(TO_CHAR(number_value), TO_CHAR(date_value))) VALUE
  FROM wf_item_attribute_values
 WHERE item_type = 'XXITEMTP'
   AND item_key = 'XXITEMTP001'

No comments:

Post a Comment

Query to get the Concurrent Program along with Value Set details

SELECT fcpl1.user_concurrent_program_name       ,fdfcuv.end_user_column_name       ,ffvs.flex_value_set_name value_set_name       ,ffvt.appl...