DBA Data[Home] [Help]

APPS.IGS_EN_GEN_011 dependencies on IGS_GE_MSG_STACK

Line 865: IGS_GE_MSG_STACK.ADD;

861: v_total_lock_count := v_total_lock_count + 1;
862: -- Log that a locked record exists and
863: -- rollback has occurred.
864: Fnd_Message.Set_name('IGS','IGS_EN_ALLALT_APPL_STUD_PRG');
865: IGS_GE_MSG_STACK.ADD;
866: RETURN;
867: WHEN OTHERS THEN
868: IF c_coo%ISOPEN THEN
869: CLOSE c_coo;

Line 1586: igs_ge_msg_stack.add;

1582: FETCH cur_cal_rel INTO l_dummy;
1583: IF cur_cal_rel%NOTFOUND THEN
1584: CLOSE cur_cal_rel;
1585: fnd_message.set_name('IGS','IGS_EN_BULK_E_D_NO_CAL_REL');
1586: igs_ge_msg_stack.add;
1587: app_exception.raise_exception;
1588: END IF;
1589: CLOSE cur_cal_rel;
1590: -- Clear pl/sql table for writing IGS_GE_S_LOG_ENTRY records

Line 1603: igs_ge_msg_stack.add;

1599: p_acad_ci_end_dt =>l_acad_ci_end_dt,
1600: p_message_name =>l_message_name);
1601: IF (l_message_name IS NOT NULL) THEN
1602: fnd_message.set_name('IGS',l_message_name);
1603: igs_ge_msg_stack.add;
1604: app_exception.raise_exception;
1605: END IF;
1606: -- Initialise counters
1607: l_total_exist_sua_count := 0;

Line 2200: IF IGS_GE_MSG_STACK.COUNT_MSG <> 0 THEN

2196: p_calling_obj =>'JOB'
2197: );
2198: EXCEPTION WHEN OTHERS THEN
2199: --If an exception is thrown, get the error message text and save it in the message name variable
2200: IF IGS_GE_MSG_STACK.COUNT_MSG <> 0 THEN
2201: l_message_name := FND_MESSAGE.GET;
2202: ELSE
2203: l_message_name := SQLERRM;
2204: END IF;

Line 2307: IF IGS_GE_MSG_STACK.COUNT_MSG <> 0 THEN

2303: p_enr_method =>p_enr_method,
2304: p_enrolled_dt =>NVL(p_enrolled_dt,SYSDATE));
2305: EXCEPTION WHEN OTHERS THEN
2306: --IF any exception is raised, return the exception string as the error message
2307: IF IGS_GE_MSG_STACK.COUNT_MSG <> 0 THEN
2308: l_message_name := FND_MESSAGE.GET;
2309: ELSE
2310: l_message_name := SQLERRM;
2311: END IF;

Line 5074: IGS_GE_MSG_STACK.ADD;

5070: v_message_name);
5071:
5072: IF v_message_name is not null THEN
5073: Fnd_Message.Set_name('IGS',v_message_name);
5074: IGS_GE_MSG_STACK.ADD;
5075: App_Exception.Raise_Exception;
5076: END IF;
5077: -- Determine the start and end dates of the teaching
5078: -- period by calling calp_get_ci_dates.

Line 6078: IGS_GE_MSG_STACK.ADD;

6074: CLOSE c_acai_upd;
6075: END IF;
6076: Fnd_Message.Set_name('IGS','IGS_GE_UNHANDLED_EXP');
6077: FND_MESSAGE.SET_TOKEN('NAME','IGS_EN_GEN_011.enrp_upd_acai_accept1');
6078: IGS_GE_MSG_STACK.ADD;
6079: App_Exception.Raise_Exception;
6080: END;
6081: RETURN TRUE;
6082: EXCEPTION