DBA Data[Home] [Help]

APPS.PV_ENTITY_ATTRIBUTE_PVT dependencies on PV_ATTRIBUTES_VL

Line 67: from pv_attributes_vl

63: WHERE ENTITY_ATTR_ID = l_id;
64:
65: CURSOR c_get_attr_details(cv_attribute_id NUMBER) IS
66: SELECT attribute_type, display_style
67: from pv_attributes_vl
68: where attribute_id=cv_attribute_id
69: ;
70:
71: BEGIN

Line 390: from pv_attributes_vl

386: WHERE ENTITY_ATTR_ID = cv_entity_attr_id;
387:
388: CURSOR c_get_attr_details(cv_attribute_id NUMBER) IS
389: SELECT attribute_type,display_style
390: from pv_attributes_vl
391: where attribute_id=cv_attribute_id
392: ;
393:
394:

Line 1174: from pv_attributes_vl attr, pv_entity_attrs enty

1170: l_entity VARCHAR2(60);
1171:
1172: cursor lc_entity_attribute_details (pc_entity_attr_id number) is
1173: select attr.name, enty.entity
1174: from pv_attributes_vl attr, pv_entity_attrs enty
1175: where enty.entity_attr_id=pc_entity_attr_id and
1176: enty.attribute_id=attr.attribute_id
1177: ;
1178: