DBA Data[Home] [Help]

APPS.IGS_EN_STDNT_PS_ATT_PKG dependencies on FND_PROFILE

Line 228: IF FND_PROFILE.VALUE('CAREER_MODEL_ENABLED') = 'Y' THEN

224:
225: --added by amuthu for career impact dld
226: -- smaddali modified the logic for populating primary_program_type and source for bug#4240694
227: -- In program mode these two fields should be populated with NULL
228: IF FND_PROFILE.VALUE('CAREER_MODEL_ENABLED') = 'Y' THEN
229: new_references.primary_program_type := X_PRIMARY_PROGRAM_TYPE;
230: new_references.primary_prog_type_source := X_PRIMARY_PROG_TYPE_SOURCE;
231: ELSE
232: new_references.primary_program_type := NULL;

Line 635: IF NVL(FND_PROFILE.VALUE('CAREER_MODEL_ENABLED'),'N') = 'N'

631: v_course_attempt_status := new_references.course_attempt_status;
632: END IF;
633:
634: IF (NOT IGS_EN_STDNT_PS_ATT_PKG.skip_before_after_dml) THEN
635: IF NVL(FND_PROFILE.VALUE('CAREER_MODEL_ENABLED'),'N') = 'N'
636: OR new_references.primary_program_type = 'PRIMARY' THEN
637: new_references.course_attempt_status :=
638: IGS_EN_GEN_006.ENRP_GET_SCA_STATUS(
639: new_references.person_id,

Line 3311: IF (NVL(FND_PROFILE.VALUE('CAREER_MODEL_ENABLED'),'N')='Y') THEN

3307: END IF;
3308:
3309: --bmerugu added for build 319
3310: IF (p_action='INSERT' OR p_action='UPDATE') THEN
3311: IF (NVL(FND_PROFILE.VALUE('CAREER_MODEL_ENABLED'),'N')='Y') THEN
3312: IF (NVL(new_references.primary_program_type,'SECONDARY')='PRIMARY' AND
3313: new_references.student_confirmed_ind='Y') THEN
3314: BEGIN
3315: -- Get the Program Type/Career for the program version.

Line 4799: IF NVL(FND_PROFILE.VALUE('CAREER_MODEL_ENABLED'),'N') = 'N' OR new_references.primary_program_type = 'PRIMARY' THEN

4795:
4796: BEGIN
4797:
4798: -- If the system is in program model or the program attempt is primary.
4799: IF NVL(FND_PROFILE.VALUE('CAREER_MODEL_ENABLED'),'N') = 'N' OR new_references.primary_program_type = 'PRIMARY' THEN
4800:
4801: l_term_cal_type := NULL;
4802: l_term_ci_seq_num := NULL;
4803: l_create_update_term := FALSE;