DBA Data[Home] [Help]

APPS.PAY_BALANCE_UPLOAD dependencies on PAY_BAL_ADJUST

Line 129: - added pay_bal_adjust.init_batch call

125: - g_payroll_action_rec_type
126: - g_payroll_action_tab_type
127: - g_payroll_actions
128: Modified apply_adjustments()
129: - added pay_bal_adjust.init_batch call
130: and logic to handle payroll actions
131: cache.
132: - create_adjustment call was replaced
133: with pay_bal_adjust.adjust_balance.

Line 133: with pay_bal_adjust.adjust_balance.

129: - added pay_bal_adjust.init_batch call
130: and logic to handle payroll actions
131: cache.
132: - create_adjustment call was replaced
133: with pay_bal_adjust.adjust_balance.
134: Added the logic to handle payroll
135: actions cache to transfer_assignment()
136: and process().
137: Modified transfer_batch() to update

Line 2318: -- pay_bal_adjust.init_batch

2314: -- p_batch_line_list - the list of batch lines currently being processed
2315: -- p_num_lines - the number of batch lines in the list.
2316: -- p_message - the error message.
2317: -- USES
2318: -- pay_bal_adjust.init_batch
2319: -- pay_bal_adjust.adjust_balance
2320: -- NOTES
2321: -----------------------------------------------------------------------------
2322: --

Line 2319: -- pay_bal_adjust.adjust_balance

2315: -- p_num_lines - the number of batch lines in the list.
2316: -- p_message - the error message.
2317: -- USES
2318: -- pay_bal_adjust.init_batch
2319: -- pay_bal_adjust.adjust_balance
2320: -- NOTES
2321: -----------------------------------------------------------------------------
2322: --
2323: procedure apply_adjustments

Line 2579: pay_bal_adjust.init_batch

2575: end if;
2576: --
2577:
2578: l_payroll_action_id :=
2579: pay_bal_adjust.init_batch
2580: (p_batch_name => NULL
2581: ,p_effective_date => l_adj_date
2582: ,p_consolidation_set_id => p_glbl_data_rec.consolidation_set_id
2583: ,p_payroll_id => l_payroll_id

Line 2606: -- Changed from create_adjustment to pay_bal_adjust.adjust_balance

2602: end if;
2603:
2604: --
2605: -- Create the balance adjustment.
2606: -- Changed from create_adjustment to pay_bal_adjust.adjust_balance
2607: -- to perform batch adjustment for the batch.
2608: --
2609: pay_bal_adjust.adjust_balance
2610: (p_batch_id => l_payroll_action_id

Line 2609: pay_bal_adjust.adjust_balance

2605: -- Create the balance adjustment.
2606: -- Changed from create_adjustment to pay_bal_adjust.adjust_balance
2607: -- to perform batch adjustment for the batch.
2608: --
2609: pay_bal_adjust.adjust_balance
2610: (p_batch_id => l_payroll_action_id
2611: ,p_assignment_id => p_glbl_data_rec.assignment_id
2612: ,p_element_link_id => l_ele_link_id
2613: ,p_num_entry_values => l_num_entry_values

Line 6015: -- pay_bal_adjust.process_batch

6011: --
6012: -- ARGUMENTS
6013: -- p_glbl_data_rec - global data structure.
6014: -- USES
6015: -- pay_bal_adjust.process_batch
6016: -- NOTES
6017: --
6018: -----------------------------------------------------------------------------
6019: --

Line 6054: pay_bal_adjust.process_batch(l_batch.payroll_action_id);

6050: hr_utility.trace(' payroll_action_id=:'||l_batch.payroll_action_id);
6051: --
6052: -- Completes the payroll action.
6053: --
6054: pay_bal_adjust.process_batch(l_batch.payroll_action_id);
6055: --
6056: end loop;
6057:
6058: end if;