DBA Data[Home] [Help]

APPS.PAY_INTERPRETER_PKG dependencies on PAY_CORE_UTILS

Line 3249: pay_core_utils.assert_condition(

3245: t_detailed_output => t_detailed_output
3246: );
3247: --
3248: else
3249: pay_core_utils.assert_condition(
3250: 'pay_interpreter_pkg.save_disco_details:1',
3251: 1 = 2);
3252: end if;
3253: */

Line 3409: pay_core_utils.assert_condition(

3405: t_detailed_output => t_detailed_output
3406: );
3407: --
3408: else
3409: pay_core_utils.assert_condition(
3410: 'pay_interpreter_pkg.save_disco_details:1',
3411: 1 = 2);
3412: end if;
3413: */

Line 6197: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:1',

6193: is
6194: begin
6195: --
6196: -- Ensure we have either an assignment or and action.
6197: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:1',
6198: ( p_assignment_action_id is not null
6199: or p_assignment_id is not null));
6200: --
6201: -- Ensure the mode is correct

Line 6202: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:2',

6198: ( p_assignment_action_id is not null
6199: or p_assignment_id is not null));
6200: --
6201: -- Ensure the mode is correct
6202: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:2',
6203: (p_mode in ('COST_CENTRE',
6204: 'DATE_EARNED',
6205: 'DATE_PROCESSED',
6206: 'PAYMENT',

Line 6211: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:3',

6207: 'REPORTS')
6208: or p_mode is null));
6209: --
6210: -- Ensure the status is correct
6211: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:3',
6212: (p_process in ('U',
6213: 'P',
6214: 'C')
6215: or p_process is null));

Line 6218: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:4',

6214: 'C')
6215: or p_process is null));
6216: --
6217: -- Ensure the processing mode is correct
6218: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:4',
6219: (p_process_mode in ('ENTRY_EFFECTIVE_DATE',
6220: 'ENTRY_RETROSTATUS',
6221: 'ENTRY_CREATION_DATE',
6222: 'PRORATION')