DBA Data[Home] [Help]

APPS.IGS_EN_ELGBL_OVERRIDE dependencies on IGS_EN_SEVIS

Line 963: --If step is 'FMIN_CRDT' or 'FATD_TYPE', then call the igs_en_sevis.enrf_chk_sevis_auth_req function, which validates the sevis pre-requisites.

959: x_step_override_limit => l_step_override_limit,
960: x_mode => 'R');
961:
962:
963: --If step is 'FMIN_CRDT' or 'FATD_TYPE', then call the igs_en_sevis.enrf_chk_sevis_auth_req function, which validates the sevis pre-requisites.
964: --And check whether authorization code is required for this step override or not.
965: IF p_elgb_step IN ('FMIN_CRDT','FATD_TYPE') THEN
966:
967: IF igs_en_sevis.enrf_chk_sevis_auth_req(p_person_id => l_person_id ,

Line 967: IF igs_en_sevis.enrf_chk_sevis_auth_req(p_person_id => l_person_id ,

963: --If step is 'FMIN_CRDT' or 'FATD_TYPE', then call the igs_en_sevis.enrf_chk_sevis_auth_req function, which validates the sevis pre-requisites.
964: --And check whether authorization code is required for this step override or not.
965: IF p_elgb_step IN ('FMIN_CRDT','FATD_TYPE') THEN
966:
967: IF igs_en_sevis.enrf_chk_sevis_auth_req(p_person_id => l_person_id ,
968: p_cal_type => l_cal_type,
969: p_ci_sequence_number => l_ci_sequence_number,
970: p_elgb_step => p_elgb_step
971: ) THEN

Line 978: igs_en_sevis.enrp_sevis_auth_dflt_dt(

974: l_sevis_auth_id := NULL;
975: l_auth_start_dt := NULL;
976: l_auth_end_dt := NULL;
977:
978: igs_en_sevis.enrp_sevis_auth_dflt_dt(
979: p_person_id => l_person_id,
980: p_cal_type => l_cal_type,
981: p_ci_sequence_number => l_ci_sequence_number,
982: p_dflt_auth_start_dt => l_auth_start_dt,

Line 997: igs_en_sevis.create_auth_cal_row (

993:
994: SAVEPOINT creating_auth_rec;
995: --Creating the authorization code for the given person.
996: --p_comments,p_elgb_override_id,p_sevis_auth_cd these are parameter of container procedure.
997: igs_en_sevis.create_auth_cal_row (
998: p_sevis_authorization_code => p_sevis_auth_cd,
999: p_start_dt => l_auth_start_dt,
1000: p_end_dt => l_auth_end_dt,
1001: p_comments => p_comments,

Line 1010: IF igs_en_sevis.is_auth_records_overlap(l_person_id) THEN

1006: p_ci_sequence_number => l_ci_sequence_number,
1007: p_cancel_flag => 'N');
1008:
1009:
1010: IF igs_en_sevis.is_auth_records_overlap(l_person_id) THEN
1011: ROLLBACK to creating_auth_rec;
1012: FND_MESSAGE.SET_NAME('IGS','IGS_GE_DATES_OVERLAP');
1013: Fnd_File.PUT_LINE(Fnd_File.LOG,' ' || Fnd_Message.GET );
1014: RETURN;

Line 1022: Fnd_Message.SET_NAME ('IGS','IGS_EN_SEVIS_AUTH_REQUIRED');

1018: ELSE
1019:
1020: --Log a warn message.
1021: ROLLBACK to creating_auth_rec;
1022: Fnd_Message.SET_NAME ('IGS','IGS_EN_SEVIS_AUTH_REQUIRED');
1023: Fnd_File.PUT_LINE(Fnd_File.LOG,' ' ||Fnd_Message.GET );
1024: RETURN;
1025: END IF;
1026: ELSE