DBA Data[Home] [Help]

APPS.FA_MASSADD_SPECIAL_PKG dependencies on FA_ASSET_VAL_PVT

Line 59: if not fa_asset_val_pvt.validate_asset_book

55: -- determine type of transaction and do appropriate validation
56: if (p_mass_add_rec.add_to_asset_id is not null) then
57:
58: -- verify the add_to_asset exists in the book and is not fully retired
59: if not fa_asset_val_pvt.validate_asset_book
60: (p_transaction_type_code => 'ADJUSTMENT',
61: p_book_type_code => p_mass_add_rec.book_type_code,
62: p_asset_id => p_mass_add_rec.add_to_asset_id,
63: p_calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec) then raise error_found;

Line 77: if not fa_asset_val_pvt.validate_category

73: if (p_mass_add_rec.Description is NULL or
74: p_mass_add_rec.Asset_Category_ID is NULL) then
75: raise error_found;
76: else
77: if not fa_asset_val_pvt.validate_category
78: (p_transaction_type_code => 'ADDITION', -- needed
79: p_category_id => p_mass_add_rec.asset_category_id,
80: p_book_type_code => p_mass_add_rec.book_type_code,
81: p_calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec) then raise error_found;

Line 93: if not fa_asset_val_pvt.validate_exp_after_amort

89: if (fa_cache_pkg.fazcbc_record.amortize_flag <> 'YES') then
90: raise error_found;
91: end if;
92: else
93: if not fa_asset_val_pvt.validate_exp_after_amort
94: (p_asset_id => p_mass_add_rec.add_to_asset_id,
95: p_book => p_mass_add_rec.book_type_code, p_log_level_rec => g_log_level_rec) then raise error_found;
96: end if;
97: end if;

Line 173: if not fa_asset_val_pvt.validate

169: l_asset_dist_tbl(l_dist) := l_asset_dist_rec;
170: end loop;
171: close c_distributions;
172:
173: if not fa_asset_val_pvt.validate
174: (p_trans_rec => l_trans_rec,
175: p_asset_hdr_rec => l_asset_hdr_rec,
176: p_asset_desc_rec => l_asset_desc_rec,
177: p_asset_type_rec => l_asset_type_rec,