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 Parent and Child Accounts in Oracle APPS R12

SELECT ffv1.flex_value parent_account       ,ffvt1.description parent_account_desc   ,ffv2.flex_value child_account   ,ffvt2.description...