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.29.12010000.4 2008/10/03 06:56:30 salogana 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.29.12010000.4 2008/10/03 06:56:30 salogana 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 5075: AND pay_interpreter_pkg.valid_group_event_for_asg

5071: ppe.surrogate_key ) )
5072: )
5073: )
5074: )
5075: AND pay_interpreter_pkg.valid_group_event_for_asg
5076: (pdt.table_name,
5077: p_assignment_id,
5078: ppe.surrogate_key) = 'Y'
5079: ORDER BY 11, 6, 5, 4;

Line 5208: AND pay_interpreter_pkg.valid_group_event_for_asg

5204: ppe.surrogate_key ) )
5205: )
5206: )
5207: )
5208: AND pay_interpreter_pkg.valid_group_event_for_asg
5209: (pdt.table_name,
5210: p_assignment_id,
5211: ppe.surrogate_key) = 'Y'
5212: ORDER BY 11, 6, 5, 4;

Line 5281: AND pay_interpreter_pkg.valid_group_event_for_asg

5277: ppe.surrogate_key ) )
5278: )
5279: )
5280: )
5281: AND pay_interpreter_pkg.valid_group_event_for_asg
5282: (pdt.table_name,
5283: p_assignment_id,
5284: ppe.surrogate_key) = 'Y'
5285: ORDER BY 11, 6, 5, 4;

Line 5368: AND pay_interpreter_pkg.valid_group_event_for_asg

5364: ppe.surrogate_key ) )
5365: )
5366: )
5367: )
5368: AND pay_interpreter_pkg.valid_group_event_for_asg
5369: (pdt.table_name,
5370: p_assignment_id,
5371: ppe.surrogate_key) = 'Y'
5372: --Modified order by to include actual date

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

5844: is
5845: begin
5846: --
5847: -- Ensure we have either an assignment or and action.
5848: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:1',
5849: ( p_assignment_action_id is not null
5850: or p_assignment_id is not null));
5851: --
5852: -- Ensure the mode is correct

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

5849: ( p_assignment_action_id is not null
5850: or p_assignment_id is not null));
5851: --
5852: -- Ensure the mode is correct
5853: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:2',
5854: (p_mode in ('COST_CENTRE',
5855: 'DATE_EARNED',
5856: 'DATE_PROCESSED',
5857: 'PAYMENT',

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

5858: 'REPORTS')
5859: or p_mode is null));
5860: --
5861: -- Ensure the status is correct
5862: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:3',
5863: (p_process in ('U',
5864: 'P',
5865: 'C')
5866: or p_process is null));

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

5865: 'C')
5866: or p_process is null));
5867: --
5868: -- Ensure the processing mode is correct
5869: pay_core_utils.assert_condition('pay_interpreter_pkg.validate_entry_parameters:4',
5870: (p_process_mode in ('ENTRY_EFFECTIVE_DATE',
5871: 'ENTRY_RETROSTATUS',
5872: 'ENTRY_CREATION_DATE',
5873: 'PRORATION')

Line 6317: END PAY_INTERPRETER_PKG;

6313:
6314: begin
6315: g_valact_rec.assignment_id := '-1';
6316: g_grd_assignment_id := -1;
6317: END PAY_INTERPRETER_PKG;