DBA Data[Home] [Help]

APPS.PAY_BAL_CLASSIFICATIONS_PKG dependencies on HR_BALANCE_FEEDS

Line 169: hr_balance_feeds.lock_balance_type(X_Balance_Type_Id);

165: BEGIN
166: --
167: -- Lock balance type to stop other users changing the balance.
168: --
169: hr_balance_feeds.lock_balance_type(X_Balance_Type_Id);
170: --
171: -- Make sure that balance is not fed by manual balance feeds which would
172: -- disable the use of classifications and therefore make this operation
173: -- invalid.

Line 175: if hr_balance_feeds.manual_bal_feeds_exist(X_Balance_Type_Id) then

171: -- Make sure that balance is not fed by manual balance feeds which would
172: -- disable the use of classifications and therefore make this operation
173: -- invalid.
174: --
175: if hr_balance_feeds.manual_bal_feeds_exist(X_Balance_Type_Id) then
176: hr_utility.set_message(801, 'HR_7445_BAL_CLASS_NO_CREATE');
177: hr_utility.raise_error;
178: end if;
179: --

Line 230: hr_balance_feeds.ins_bf_bal_class

226: -- Sub Classification which have a Pay Value that has the same
227: -- Units as the balance and also the same currency if the
228: -- Units are money.
229: --
230: hr_balance_feeds.ins_bf_bal_class
231: (X_Balance_Type_Id,
232: X_Balance_Classification_Id);
233: --
234: END Insert_Row;

Line 354: hr_balance_feeds.upd_del_bf_bal_class

350: --
351: -- Update all balance feeds that are linked to the balance classification
352: -- NB. the only attribute that can be updated is Add or Subtract.
353: --
354: hr_balance_feeds.upd_del_bf_bal_class
355: ('UPDATE',
356: X_Balance_Classification_Id,
357: X_Scale);
358: --

Line 379: hr_balance_feeds.upd_del_bf_bal_class

375: BEGIN
376: --
377: -- Remove all balance feeds that are linked to the balance classification.
378: --
379: hr_balance_feeds.upd_del_bf_bal_class
380: ('DELETE',
381: X_Balance_Classification_Id,
382: null);
383: --