DBA Data[Home] [Help]

APPS.FARX_RR dependencies on FA_MASS_REC_UTILS_PKG

Line 6: mr_rec FA_MASS_REC_UTILS_PKG.mass_reclass_rec;

2: /* $Header: FARXRRB.pls 120.5 2006/03/21 20:26:17 dfred ship $ */
3:
4:
5: -- Mass reclass record from fa_mass_reclass table.
6: mr_rec FA_MASS_REC_UTILS_PKG.mass_reclass_rec;
7:
8: -- Table of asset records.
9: -- (Stores book_type_code as well, and thus one asset will appear multiple
10: -- times if the asset belongs to multiple books.)

Line 11: a_tbl FA_MASS_REC_UTILS_PKG.asset_table;

7:
8: -- Table of asset records.
9: -- (Stores book_type_code as well, and thus one asset will appear multiple
10: -- times if the asset belongs to multiple books.)
11: a_tbl FA_MASS_REC_UTILS_PKG.asset_table;
12: -- Index into the asset table, a_tbl.
13: a_index NUMBER := 0;
14:
15: -- Number of assets(disregaring book_type_code) stored in a_tbl.

Line 450: FA_MASS_REC_UTILS_PKG.Convert_Formats(

446: a_tbl(a_index).category := h_concat_cat;
447: END IF;
448:
449: -- Get numbers in rounded figures.
450: FA_MASS_REC_UTILS_PKG.Convert_Formats(
451: X_Life_In_Months => a_tbl(a_index).life_in_months,
452: X_Basic_Rate => a_tbl(a_index).basic_rate,
453: X_Adjusted_Rate => a_tbl(a_index).adjusted_rate,
454: X_Allowed_Deprn_Limit => a_tbl(a_index).allowed_deprn_limit,

Line 498: FA_MASS_REC_UTILS_PKG.Insert_Itf(

494: -- for the first book of this asset will be inserted into the table.
495: -- The rest will be taken care of in the next insertion.
496: IF (g_asset_count = h_commit_level) THEN
497: FOR i IN 1 .. a_index LOOP
498: FA_MASS_REC_UTILS_PKG.Insert_Itf(
499: X_Report_Type => 'REVIEW',
500: X_Request_Id => h_request_id,
501: X_Mass_Reclass_Id => X_Mass_Reclass_Id,
502: X_Asset_Rec => a_tbl(i),

Line 609: FA_MASS_REC_UTILS_PKG.Convert_Formats(

605: a_tbl(a_index).category := h_concat_cat;
606: END IF;
607:
608: -- Get numbers in rounded figures.
609: FA_MASS_REC_UTILS_PKG.Convert_Formats(
610: X_Life_In_Months => a_tbl(a_index).life_in_months,
611: X_Basic_Rate => a_tbl(a_index).basic_rate,
612: X_Adjusted_Rate => a_tbl(a_index).adjusted_rate,
613: X_Allowed_Deprn_Limit => a_tbl(a_index).allowed_deprn_limit,

Line 657: FA_MASS_REC_UTILS_PKG.Insert_Itf(

653: -- for the first book of this asset will be inserted into the table.
654: -- The rest will be taken care of in the next insertion.
655: IF (g_asset_count = h_commit_level) THEN
656: FOR i IN 1 .. a_index LOOP
657: FA_MASS_REC_UTILS_PKG.Insert_Itf(
658: X_Report_Type => 'REVIEW',
659: X_Request_Id => h_request_id,
660: X_Mass_Reclass_Id => X_Mass_Reclass_Id,
661: X_Asset_Rec => a_tbl(i),

Line 692: FA_MASS_REC_UTILS_PKG.Insert_Itf(

688: /* Insert the remaining asset records into the interface table. */
689: -- Up to a_index - 1, to account for the extra increment taken for a_index
690: -- when no more rows were found in the cursor loop.
691: FOR i IN 1 .. (a_index - 1) LOOP
692: FA_MASS_REC_UTILS_PKG.Insert_Itf(
693: X_Report_Type => 'REVIEW',
694: X_Request_Id => h_request_id,
695: X_Mass_Reclass_Id => X_Mass_Reclass_Id,
696: X_Asset_Rec => a_tbl(i),