DBA Data[Home] [Help]

APPS.FND_FLEX_DIAGNOSE dependencies on FND_COMPILED_ID_FLEXS

Line 4192: FROM fnd_compiled_id_flexs cif

4188: -- Compiled definitions without KFF.
4189: --
4190: BEGIN
4191: DELETE
4192: FROM fnd_compiled_id_flexs cif
4193: WHERE application_id = p_application_id
4194: AND id_flex_code = p_id_flex_code
4195: AND NOT EXISTS
4196: (SELECT null

Line 4205: 'Unable to delete from FND_COMPILED_ID_FLEXS. ' || Sqlerrm;

4201: GOTO return_success;
4202: EXCEPTION
4203: WHEN OTHERS THEN
4204: x_message :=
4205: 'Unable to delete from FND_COMPILED_ID_FLEXS. ' || Sqlerrm;
4206: GOTO return_error;
4207: END;
4208: END IF;
4209:

Line 4469: FROM fnd_compiled_id_flexs cif

4465: AND id_flex_code = p_id_flex_code
4466: AND id_flex_num = p_id_flex_num
4467: AND NOT EXISTS
4468: (SELECT null
4469: FROM fnd_compiled_id_flexs cif
4470: WHERE cif.application_id = cifs.application_id
4471: AND cif.id_flex_code = cifs.id_flex_code);
4472: x_message := SQL%rowcount || ' row(s) deleted.';
4473: GOTO return_success;