DBA Data[Home] [Help]

APPS.IGS_FI_PRC_APPL dependencies on APP_EXCEPTION

Line 768: app_exception.raise_exception;

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
772: -- provided the GL Date parameter error out NOCOPY of the process

Line 777: app_exception.raise_exception;

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
781: -- if both are passed then error is logged in the log file and returned

Line 785: app_exception.raise_exception;

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
789: -- This procedure returns the derived Closing status of the period in which the passed GL Date belongs to

Line 800: app_exception.raise_exception;

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
804: fnd_message.set_name('IGS',l_message_name);

Line 806: app_exception.raise_exception;

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
810: IF p_credit_date_low IS NOT NULL THEN

Line 829: app_exception.raise_exception;

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:
833: /* Open person cursors to loop across the persons in context */