DBA Data[Home] [Help]

APPS.IGS_FI_PRC_FIN_LT_CHG dependencies on APP_EXCEPTION

Line 460: app_exception.raise_exception;

456: p_bal_type IS NULL OR
457: p_open_bal IS NULL ) THEN
458: fnd_message.set_name('IGS', 'IGS_GE_INVALID_VALUE');
459: igs_ge_msg_stack.add;
460: app_exception.raise_exception;
461: END IF;
462:
463: -- The Person_id passed as parameter to the procedure is validated
464: IF igs_fi_gen_007.validate_person(p_person_id) = 'N' THEN

Line 467: app_exception.raise_exception;

463: -- The Person_id passed as parameter to the procedure is validated
464: IF igs_fi_gen_007.validate_person(p_person_id) = 'N' THEN
465: fnd_message.set_name('IGS', 'IGS_GE_INVALID_VALUE');
466: igs_ge_msg_stack.add;
467: app_exception.raise_exception;
468: END IF;
469:
470: -- The parameter Balance Start Date should less than Balance End Date
471: IF p_bal_start_dt > p_bal_end_dt THEN

Line 474: app_exception.raise_exception;

470: -- The parameter Balance Start Date should less than Balance End Date
471: IF p_bal_start_dt > p_bal_end_dt THEN
472: fnd_message.set_name('IGS', 'IGS_GE_INVALID_VALUE');
473: igs_ge_msg_stack.add;
474: app_exception.raise_exception;
475: END IF;
476:
477: -- Select all Credits from the credits table for the person where the Effective
478: -- Date of the Credits falls in the input Period, which means between Balance

Line 1477: (app_exception.raise_exception)

1473: shtatiko 22-APR-2003 Enh# 2831569, Added check for Manage Accounts System Option.
1474: vvutukur 12-Feb-2003 Bug#2731357.As p_chg_crtn_dt parameter is made mandatory,displayed error message
1475: if it is null.
1476: shtatiko 10-JAN-2003 Bug# 2731350, used user defined exception instead of using generic exception
1477: (app_exception.raise_exception)
1478: vvutukur 24-Nov-2002 Enh#2584986.Added p_d_gl_date parameter to calc_fin_lt_charge procedure and
1479: corresponding validations.Modified the calls to procedure calculate_charge to include
1480: p_d_gl_date parameter also.
1481: shtatiko 08-OCT-2002 Bug#2562745, check for Holds Balance Process running is added.

Line 1616: -- In following validations removed call to generic, app_exception.raise_exception

1612: log_messages(lookup_desc('IGS_FI_LOCKBOX','GL_DATE'),l_d_gl_date);
1613:
1614: fnd_file.put_line(fnd_file.log,g_v_hor_line);
1615:
1616: -- In following validations removed call to generic, app_exception.raise_exception
1617: -- and added user defined exception, l_validation_exp. As we are not putting message onto
1618: -- stack, used fnd_file.put_line to log messages. This has been done by shtatiko as part
1619: -- of Bug# 2731350
1620: --Validating if all the mandatory parameter are passed