DBA Data[Home] [Help]

APPS.FARX_MCR dependencies on FA_MASS_CHG_UTILS_PKG

Line 6: mc_rec FA_MASS_CHG_UTILS_PKG.mass_change_rec_type;

2: /* $Header: FARXMCRB.pls 120.5 2009/04/09 05:55:06 deemitta ship $ */
3:
4:
5: -- Mass change record from fa_mass_changes table.
6: mc_rec FA_MASS_CHG_UTILS_PKG.mass_change_rec_type;
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_CHG_UTILS_PKG.asset_tbl_type;

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_CHG_UTILS_PKG.asset_tbl_type;
12:
13: -- Index into the asset table, a_tbl.
14: a_index NUMBER := 0;
15:

Line 496: FA_MASS_CHG_UTILS_PKG.Insert_Itf(

492: -- The rest will be taken care of in the next insertion.
493:
494: IF (g_asset_count = h_commit_level) THEN
495: FOR i IN 1 .. a_index LOOP
496: FA_MASS_CHG_UTILS_PKG.Insert_Itf(
497: X_Report_Type => 'REVIEW',
498: X_Request_Id => h_request_id,
499: X_Mass_Change_Id => X_Mass_Change_Id,
500: X_Asset_Rec => a_tbl(i),

Line 529: FA_MASS_CHG_UTILS_PKG.Insert_Itf(

525: /* Insert the remaining asset records into the interface table. */
526: -- Up to a_index - 1, to account for the extra increment taken for a_index
527: -- when no more rows were found in the cursor loop.
528: FOR i IN 1 .. (a_index - 1) LOOP
529: FA_MASS_CHG_UTILS_PKG.Insert_Itf(
530: X_Report_Type => 'REVIEW',
531: X_Request_Id => h_request_id,
532: X_Mass_Change_Id => X_Mass_Change_Id,
533: X_Asset_Rec => a_tbl(i),