DBA Data[Home] [Help]

APPS.ZPB_WFMNT dependencies on WF_ITEM_ATTRIBUTE_VALUES

Line 80: from WF_ITEM_ATTRIBUTE_VALUES

76: result varchar2(100);
77:
78: CURSOR c_ItemKeys is
79: select item_type, item_key
80: from WF_ITEM_ATTRIBUTE_VALUES
81: where (item_type = 'ZPBSCHED' OR item_type = 'EPBCYCLE')
82: and name = AttrName
83: and number_value = p_inACID;
84:

Line 91: WF_ITEM_ATTRIBUTE_VALUES w

87:
88: CURSOR c_dc_objects is
89: select w.item_key
90: from ZPB_DC_OBJECTS d,
91: WF_ITEM_ATTRIBUTE_VALUES w
92: where analysis_cycle_id = p_inACID
93: and (w.item_type = 'EPBDC')
94: and w.name = 'DC_OBJECT_ID'
95: and w.number_value = d.object_id;