DBA Data[Home] [Help]

APPS.AZW_UTIL dependencies on FND_PRODUCT_INSTALLATIONS

Line 238: from fnd_product_installations

234: v_count_installed NUMBER(15);
235:
236: CURSOR c_prod_c IS
237: select application_id
238: from fnd_product_installations
239: where to_char(application_id) = LTRIM(RTRIM(c_word))
240: and (status = 'I' or status ='S');
241:
242: BEGIN

Line 282: FROM fnd_product_installations

278: IF( is_number = TRUE) THEN
279: --BEGIN
280: SELECT COUNT(*)
281: INTO v_count_installed
282: FROM fnd_product_installations
283: WHERE application_id = prod_id
284: AND status = 'I' OR status = 'S';
285: IF (v_count_installed > 0 ) THEN
286: result := yes_result;