DBA Data[Home] [Help]

APPS.GME_ERES_UTILS dependencies on GME_MATERIAL_DETAILS

Line 22: FROM gme_material_details

18: PROCEDURE get_phantom_or_not (p_batch_id IN NUMBER, x_phantom OUT NOCOPY VARCHAR2)
19: IS
20: CURSOR cur_get_phant IS
21: SELECT count(1)
22: FROM gme_material_details
23: WHERE phantom_id = p_batch_id
24: AND ROWNUM = 1;
25:
26: l_exists NUMBER;