DBA Data[Home] [Help]

APPS.PAY_INTERPRETER_PKG dependencies on PAY_INTERPRETER_PKG

Line 1: PACKAGE BODY pay_interpreter_pkg AS

1: PACKAGE BODY pay_interpreter_pkg AS
2: /* $Header: pyinterp.pkb 120.45.12020000.5 2012/07/06 11:53:14 vmaripal ship $ */
3: --
4: -- Global Utils
5: g_pkg VARCHAR2(30) := 'pay_interpreter_pkg';

Line 5: g_pkg VARCHAR2(30) := 'pay_interpreter_pkg';

1: PACKAGE BODY pay_interpreter_pkg AS
2: /* $Header: pyinterp.pkb 120.45.12020000.5 2012/07/06 11:53:14 vmaripal ship $ */
3: --
4: -- Global Utils
5: g_pkg VARCHAR2(30) := 'pay_interpreter_pkg';
6: g_traces BOOLEAN := hr_utility.debug_enabled; --See if hr_utility.traces should be output
7: g_dbg BOOLEAN := FALSE; --Used for diagnosing issues by dev, more outputs
8:
9: -- Global caches

Line 1430: pay_interpreter_pkg.generic_data_validation

1426: if (l_output_result = 'TRUE') then
1427: --
1428: -- Now perform the generic data comparison.
1429: begin
1430: pay_interpreter_pkg.generic_data_validation
1431: (p_table_id ,
1432: p_datetracked_id,
1433: p_old_value,
1434: p_new_value,

Line 3250: 'pay_interpreter_pkg.save_disco_details:1',

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: */
3254:

Line 3410: 'pay_interpreter_pkg.save_disco_details:1',

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: */
3414:

Line 5220: AND pay_interpreter_pkg.valid_group_event_for_asg

5216: ppe.surrogate_key ) )
5217: )
5218: )
5219: )
5220: AND pay_interpreter_pkg.valid_group_event_for_asg
5221: (pdt.table_name,
5222: p_assignment_id,
5223: ppe.surrogate_key) = 'Y'
5224: ORDER BY 11, 6, 5, 4;

Line 5353: AND pay_interpreter_pkg.valid_group_event_for_asg

5349: ppe.surrogate_key ) )
5350: )
5351: )
5352: )
5353: AND pay_interpreter_pkg.valid_group_event_for_asg
5354: (pdt.table_name,
5355: p_assignment_id,
5356: ppe.surrogate_key) = 'Y'
5357: ORDER BY 11, 6, 5, 4, 2 ASC;

Line 5426: AND pay_interpreter_pkg.valid_group_event_for_asg

5422: ppe.surrogate_key ) )
5423: )
5424: )
5425: )
5426: AND pay_interpreter_pkg.valid_group_event_for_asg
5427: (pdt.table_name,
5428: p_assignment_id,
5429: ppe.surrogate_key) = 'Y'
5430: --ORDER BY 11, 6, 5, 4;

Line 5515: AND pay_interpreter_pkg.valid_group_event_for_asg

5511: ppe.surrogate_key ) )
5512: )
5513: )
5514: )
5515: AND pay_interpreter_pkg.valid_group_event_for_asg
5516: (pdt.table_name,
5517: p_assignment_id,
5518: ppe.surrogate_key) = 'Y'
5519: --Modified order by to include actual date

Line 5597: AND pay_interpreter_pkg.valid_group_event_for_asg

5593: ppe.surrogate_key ) )
5594: )
5595: )
5596: )
5597: AND pay_interpreter_pkg.valid_group_event_for_asg
5598: (pdt.table_name,
5599: p_assignment_id,
5600: ppe.surrogate_key) = 'Y'
5601: --Modified order by to include actual date

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')

Line 6674: END PAY_INTERPRETER_PKG;

6670:
6671: begin
6672: g_valact_rec.assignment_id := '-1';
6673: g_grd_assignment_id := -1;
6674: END PAY_INTERPRETER_PKG;