DBA Data[Home] [Help]

APPS.IGS_EN_GEN_008 dependencies on IGS_EN_DCNT_REASONCD

Line 2720: v_discontinuation_reason_cd IGS_EN_DCNT_REASONCD.discontinuation_reason_cd%TYPE;

2716: ******************************************************************/
2717: -- enrp_get_dflt_sdt
2718: -- Get the default discontinuation_reason_cd for a nominated
2719: -- s_discontinuation_reason_type, based on the sys_dflt_ind field.
2720: v_discontinuation_reason_cd IGS_EN_DCNT_REASONCD.discontinuation_reason_cd%TYPE;
2721: CURSOR c_dr IS
2722: SELECT discontinuation_reason_cd
2723: FROM IGS_EN_DCNT_REASONCD dr
2724: WHERE dr.s_discontinuation_reason_type = p_s_discont_reason_type AND

Line 2723: FROM IGS_EN_DCNT_REASONCD dr

2719: -- s_discontinuation_reason_type, based on the sys_dflt_ind field.
2720: v_discontinuation_reason_cd IGS_EN_DCNT_REASONCD.discontinuation_reason_cd%TYPE;
2721: CURSOR c_dr IS
2722: SELECT discontinuation_reason_cd
2723: FROM IGS_EN_DCNT_REASONCD dr
2724: WHERE dr.s_discontinuation_reason_type = p_s_discont_reason_type AND
2725: dr.sys_dflt_ind = 'Y' AND
2726: dr.closed_ind = 'N';
2727: