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.3.12010000.1 2008/07/28 13:13:57 appldev 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 484: FA_MASS_CHG_UTILS_PKG.Insert_Itf(

480: -- The rest will be taken care of in the next insertion.
481:
482: IF (g_asset_count = h_commit_level) THEN
483: FOR i IN 1 .. a_index LOOP
484: FA_MASS_CHG_UTILS_PKG.Insert_Itf(
485: X_Report_Type => 'REVIEW',
486: X_Request_Id => h_request_id,
487: X_Mass_Change_Id => X_Mass_Change_Id,
488: X_Asset_Rec => a_tbl(i),

Line 516: FA_MASS_CHG_UTILS_PKG.Insert_Itf(

512: /* Insert the remaining asset records into the interface table. */
513: -- Up to a_index - 1, to account for the extra increment taken for a_index
514: -- when no more rows were found in the cursor loop.
515: FOR i IN 1 .. (a_index - 1) LOOP
516: FA_MASS_CHG_UTILS_PKG.Insert_Itf(
517: X_Report_Type => 'REVIEW',
518: X_Request_Id => h_request_id,
519: X_Mass_Change_Id => X_Mass_Change_Id,
520: X_Asset_Rec => a_tbl(i),