DBA Data[Home] [Help]

APPS.IGF_AW_PACKAGING dependencies on IGF_AP_CSS_PROFILE_ALL

Line 7075: FROM igf_ap_css_profile_all

7071: CURSOR c_efc_i(
7072: cp_base_id igf_ap_fa_base_rec_all.base_id%TYPE
7073: ) IS
7074: SELECT coa_duration_efc_amt
7075: FROM igf_ap_css_profile_all
7076: WHERE active_profile = 'Y'
7077: AND base_id = cp_base_id;
7078:
7079: BEGIN

Line 7520: FROM igf_ap_css_profile_all

7516:
7517: -- Get active isir
7518: CURSOR c_active_profile IS
7519: SELECT cssp_id
7520: FROM igf_ap_css_profile_all
7521: WHERE base_id = p_base_id
7522: AND active_profile = 'Y';
7523: l_css_id igf_ap_css_profile_all.cssp_id%TYPE;
7524: BEGIN

Line 7523: l_css_id igf_ap_css_profile_all.cssp_id%TYPE;

7519: SELECT cssp_id
7520: FROM igf_ap_css_profile_all
7521: WHERE base_id = p_base_id
7522: AND active_profile = 'Y';
7523: l_css_id igf_ap_css_profile_all.cssp_id%TYPE;
7524: BEGIN
7525: l_css_id := NULL;
7526: OPEN c_active_profile;
7527: FETCH c_active_profile INTO l_css_id;