DBA Data[Home] [Help]

APPS.FA_REVALUATION_PVT dependencies on FA_ADJUST_TYPE_PKG

Line 599: l_adj_in fa_adjust_type_pkg.fa_adj_row_struct;

595: l_bonus_deprn_exp number;
596: l_deprn_exp number;
597: l_salvage_value number;
598:
599: l_adj_in fa_adjust_type_pkg.fa_adj_row_struct;
600:
601: l_cost_acct varchar2(25);
602: l_cip_cost_acct varchar2(25);
603: l_reval_rsv_acct varchar2(25);

Line 1582: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE;

1578: l_adj_in.account:= l_cost_acct;
1579: l_adj_in.account_type := 'ASSET_COST_ACCT';
1580: end if;
1581: l_adj_in.current_units := p_asset_desc_rec.current_units;
1582: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE;
1583: l_adj_in.selection_thid := 0;
1584: l_adj_in.selection_retid := 0;
1585: l_adj_in.flush_adj_flag := FALSE;
1586: l_adj_in.gen_ccid_flag := TRUE;

Line 1633: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE;

1629: l_adj_in.account := l_deprn_exp_acct;
1630: l_adj_in.account_type := 'DEPRN_EXPENSE_ACCT';
1631: l_adj_in.current_units := p_asset_desc_rec.current_units;
1632:
1633: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE;
1634: l_adj_in.selection_thid := 0;
1635: l_adj_in.selection_retid := 0;
1636: l_adj_in.flush_adj_flag := FALSE;
1637: l_adj_in.gen_ccid_flag := TRUE;

Line 1675: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE;

1671: l_adj_in.last_update_date := px_trans_rec.who_info.last_update_date;
1672: l_adj_in.account := l_bonus_deprn_exp_acct;
1673: l_adj_in.account_type := 'BONUS_DEPRN_RESERVE_ACCT';
1674: l_adj_in.current_units := p_asset_desc_rec.current_units;
1675: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE;
1676: l_adj_in.selection_thid := 0;
1677: l_adj_in.selection_retid := 0;
1678: l_adj_in.flush_adj_flag := FALSE;
1679: -- The CCID of BONUS EXPENSE row will be generated

Line 1713: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE_REVAL;

1709: -- the reval reserve
1710: -- value going from depreciation engine to fa_deprn_detail
1711: -- table for bug 628863. aling
1712:
1713: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE_REVAL;
1714:
1715: l_adj_in.account_type := 'REVAL_RESERVE_ACCT';
1716:
1717: if (x_reval_out.reval_rsv_adj <> 0) then

Line 1731: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE;

1727: end if;
1728:
1729: -- Reset the selection mode back to the original
1730:
1731: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE;
1732: l_adj_in.adjustment_type := 'RESERVE';
1733: if (x_reval_out.deprn_rsv_adj > 0) then
1734: l_adj_in.debit_credit_flag := 'CR';
1735: else

Line 1756: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE;

1752: end if;
1753:
1754: -- Bonus Deprn YYOON
1755: if (x_reval_out.bonus_deprn_rsv_adj <> 0) then
1756: l_adj_in.selection_mode := fa_adjust_type_pkg.FA_AJ_ACTIVE;
1757: l_adj_in.adjustment_type := 'BONUS RESERVE';
1758: if (x_reval_out.bonus_deprn_rsv_adj > 0) then
1759: l_adj_in.debit_credit_flag := 'CR';
1760: else