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.8 2011/04/13 10:20:19 rmandali 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 465: FA_MASS_REC_UTILS_PKG.Convert_Formats(

461: a_tbl(a_index).category := h_concat_cat;
462: END IF;
463:
464: -- Get numbers in rounded figures.
465: FA_MASS_REC_UTILS_PKG.Convert_Formats(
466: X_Life_In_Months => a_tbl(a_index).life_in_months,
467: X_Basic_Rate => a_tbl(a_index).basic_rate,
468: X_Adjusted_Rate => a_tbl(a_index).adjusted_rate,
469: X_Allowed_Deprn_Limit => a_tbl(a_index).allowed_deprn_limit,

Line 514: FA_MASS_REC_UTILS_PKG.Insert_Itf(

510: -- for the first book of this asset will be inserted into the table.
511: -- The rest will be taken care of in the next insertion.
512: IF (g_asset_count = h_commit_level) THEN
513: FOR i IN 1 .. a_index LOOP
514: FA_MASS_REC_UTILS_PKG.Insert_Itf(
515: X_Report_Type => 'REVIEW',
516: X_Request_Id => h_request_id,
517: X_Mass_Reclass_Id => X_Mass_Reclass_Id,
518: X_Asset_Rec => a_tbl(i),

Line 626: FA_MASS_REC_UTILS_PKG.Convert_Formats(

622: a_tbl(a_index).category := h_concat_cat;
623: END IF;
624:
625: -- Get numbers in rounded figures.
626: FA_MASS_REC_UTILS_PKG.Convert_Formats(
627: X_Life_In_Months => a_tbl(a_index).life_in_months,
628: X_Basic_Rate => a_tbl(a_index).basic_rate,
629: X_Adjusted_Rate => a_tbl(a_index).adjusted_rate,
630: X_Allowed_Deprn_Limit => a_tbl(a_index).allowed_deprn_limit,

Line 675: FA_MASS_REC_UTILS_PKG.Insert_Itf(

671: -- for the first book of this asset will be inserted into the table.
672: -- The rest will be taken care of in the next insertion.
673: IF (g_asset_count = h_commit_level) THEN
674: FOR i IN 1 .. a_index LOOP
675: FA_MASS_REC_UTILS_PKG.Insert_Itf(
676: X_Report_Type => 'REVIEW',
677: X_Request_Id => h_request_id,
678: X_Mass_Reclass_Id => X_Mass_Reclass_Id,
679: X_Asset_Rec => a_tbl(i),

Line 711: FA_MASS_REC_UTILS_PKG.Insert_Itf(

707: /* Insert the remaining asset records into the interface table. */
708: -- Up to a_index - 1, to account for the extra increment taken for a_index
709: -- when no more rows were found in the cursor loop.
710: FOR i IN 1 .. (a_index - 1) LOOP
711: FA_MASS_REC_UTILS_PKG.Insert_Itf(
712: X_Report_Type => 'REVIEW',
713: X_Request_Id => h_request_id,
714: X_Mass_Reclass_Id => X_Mass_Reclass_Id,
715: X_Asset_Rec => a_tbl(i),