DBA Data[Home] [Help]

APPS.EAM_WL_UTIL_PKG dependencies on WIP_ENTITIES

Line 78: FROM wip_entities

74: FUNCTION get_wip_entity_name( p_wip_entity_id NUMBER) RETURN VARCHAR2
75: IS
76: CURSOR get_value IS
77: SELECT wip_entity_name
78: FROM wip_entities
79: WHERE wip_entity_id = p_wip_entity_id;
80:
81: l_description wip_entities.wip_entity_name%TYPE;
82: BEGIN

Line 81: l_description wip_entities.wip_entity_name%TYPE;

77: SELECT wip_entity_name
78: FROM wip_entities
79: WHERE wip_entity_id = p_wip_entity_id;
80:
81: l_description wip_entities.wip_entity_name%TYPE;
82: BEGIN
83: OPEN get_value;
84: FETCH get_value INTO l_description;
85: CLOSE get_value;