DBA Data[Home] [Help]

APPS.XDP_UTILITIES dependencies on WF_ITEM_ATTRIBUTE_VALUES

Line 1346: from WF_ITEM_ATTRIBUTE_values WIA

1342: select 'Y' into lv_attr_defined
1343: from dual
1344: where exists(
1345: select 1
1346: from WF_ITEM_ATTRIBUTE_values WIA
1347: where WIA.ITEM_TYPE = p_item_type
1348: and WIA.ITEM_KEY = p_item_key
1349: and WIA.NAME = 'XDP_NUMBER_OF_CHILDREN');
1350: exception

Line 1378: from WF_ITEM_ATTRIBUTE_values WIA

1374: select 'N' into lv_error_wf
1375: from dual
1376: where not exists(
1377: select 1
1378: from WF_ITEM_ATTRIBUTE_values WIA
1379: where WIA.ITEM_TYPE = lv_child_rec.item_type
1380: and WIA.ITEM_KEY = lv_child_rec.item_key
1381: and WIA.NAME = 'ERROR_ITEM_KEY'
1382: and WIA.TEXT_VALUE = p_item_key);

Line 1394: from WF_ITEM_ATTRIBUTE_values WIA

1390: select 'Y' into lv_attr_defined
1391: from dual
1392: where exists(
1393: select 1
1394: from WF_ITEM_ATTRIBUTE_values WIA
1395: where WIA.ITEM_TYPE = lv_child_rec.item_type
1396: and WIA.ITEM_KEY = lv_child_rec.item_key
1397: and WIA.NAME = 'XDP_WF_COORDINATION_ID');
1398: exception