DBA Data[Home] [Help]

APPS.IGS_FI_PRC_APPL dependencies on IGS_GE_MSG_STACK

Line 426: IF IGS_GE_MSG_STACK.COUNT_MSG <> 0 THEN

422:
423:
424: EXCEPTION
425: WHEN OTHERS THEN
426: IF IGS_GE_MSG_STACK.COUNT_MSG <> 0 THEN
427: fnd_file.put_line(fnd_file.log,fnd_message.get);
428: RAISE l_err_exception;
429: ELSE
430: RAISE;

Line 442: IGS_GE_MSG_STACK.CONC_EXCEPTION_HNDL;

438: retcode := 2;
439: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXCEPTION');
440: errbuf := fnd_message.get;
441: fnd_file.put_line(fnd_file.log,sqlerrm);
442: IGS_GE_MSG_STACK.CONC_EXCEPTION_HNDL;
443: END mass_application;
444:
445: PROCEDURE mass_apply(p_person_id igs_fi_inv_int_all.person_id%TYPE,
446: p_person_id_grp igs_pe_prsid_grp_mem_all.group_id%TYPE,

Line 482: Moreover, call to igs_ge_msg_stack.add has been incorporated wherever explicit handling for

478: smadathi 9-Jan-2003 Bug 2722096. Removed the logging of person group id. Instead
479: used call to igs_fi_gen_005.finp_get_prsid_grp_code to
480: log person group code. Logging of the error message for invalid
481: parameters passed have been removed and same has been taken cared in mass_application procedure.
482: Moreover, call to igs_ge_msg_stack.add has been incorporated wherever explicit handling for
483: invalid parameter values have been done.
484: vvutukur 13-Dec-2002 Enh#2584741.Modified cursor cur_credits to exclude deposit transactions while selecting
485: rows from Credits Table.
486: smadathi 20-NOV-2002 Enh. Bug 2584986. Added new parameter GL Date to procedure mass_apply

Line 767: igs_ge_msg_stack.add;

763: p_v_message_name => l_v_message_name
764: );
765: IF (l_v_manage_acc = 'OTHER') OR (l_v_manage_acc IS NULL) THEN
766: fnd_message.set_name('IGS',l_v_message_name);
767: igs_ge_msg_stack.add;
768: app_exception.raise_exception;
769: END IF;
770:
771: -- validate whether GL Date is provided by the user. If the user has not

Line 776: igs_ge_msg_stack.add;

772: -- provided the GL Date parameter error out NOCOPY of the process
773:
774: IF p_d_gl_date IS NULL THEN
775: fnd_message.set_name('IGS','IGS_GE_INSUFFICIENT_PARAMETER');
776: igs_ge_msg_stack.add;
777: app_exception.raise_exception;
778: END IF;
779:
780: -- Check if both person id and person group id is passed as parameters

Line 784: igs_ge_msg_stack.add;

780: -- Check if both person id and person group id is passed as parameters
781: -- if both are passed then error is logged in the log file and returned
782: IF (p_person_id IS NOT NULL AND p_person_id_grp IS NOT NULL) THEN
783: fnd_message.Set_Name('IGS','IGS_FI_NO_PERS_PGRP');
784: igs_ge_msg_stack.add;
785: app_exception.raise_exception;
786: END IF;
787:
788: -- validate the GL Date parameter passed to the process

Line 799: igs_ge_msg_stack.add;

795: IF l_c_closing_status IN ('C','N','W')
796: THEN
797: fnd_message.set_name('IGS','IGS_FI_INVALID_GL_DATE');
798: fnd_message.set_token('GL_DATE',p_d_gl_date);
799: igs_ge_msg_stack.add;
800: app_exception.raise_exception;
801: END IF;
802: IF l_c_closing_status IS NULL AND l_message_name IS NOT NULL
803: THEN

Line 805: igs_ge_msg_stack.add;

801: END IF;
802: IF l_c_closing_status IS NULL AND l_message_name IS NOT NULL
803: THEN
804: fnd_message.set_name('IGS',l_message_name);
805: igs_ge_msg_stack.add;
806: app_exception.raise_exception;
807: END IF;
808:
809: -- Set the values of high and low dates when

Line 828: igs_ge_msg_stack.add;

824: IF TRUNC(l_credit_date_low) > TRUNC(l_credit_date_high) THEN
825: fnd_message.Set_Name('IGS','IGS_FI_TRAN_LOW_HIGH');
826: fnd_message.set_token('DATE_LOW',igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','CREDIT_DATE_LOW'));
827: fnd_message.set_token('DATE_HIGH',igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','CREDIT_DATE_HIGH'));
828: igs_ge_msg_stack.add;
829: app_exception.raise_exception;
830: END IF;
831: END IF;
832: