DBA Data[Home] [Help]

APPS.FA_ASSET_DESC_PUB dependencies on FA_ADD_WARRANTY_PKG

Line 1335: FA_ADD_WARRANTY_PKG.Update_table(

1331: if (p_asset_desc_rec_new.warranty_id is NOT NULL) then
1332: if ((p_asset_desc_rec_new.warranty_id = FND_API.G_MISS_NUM) and
1333: (p_old_warranty_id is NOT NULL)) then
1334: -- Remove an existing warranty from an asset
1335: FA_ADD_WARRANTY_PKG.Update_table(
1336: WR_warranty_id => NULL,
1337: WR_old_warranty_id => p_old_warranty_id,
1338: WR_asset_id => p_asset_hdr_rec.asset_id,
1339: WR_date_effective => NULL,

Line 1352: FA_ADD_WARRANTY_PKG.Update_table(

1348: WR_calling_fn => 'fa_asset_desc_pub.update_row' ,
1349: p_log_level_rec => p_log_level_rec);
1350: elsif (p_old_warranty_id is NULL) then
1351: -- Add a warranty to an asset that doesn't have one
1352: FA_ADD_WARRANTY_PKG.Update_table(
1353: WR_warranty_id => p_asset_desc_rec_new.warranty_id,
1354: WR_old_warranty_id => NULL,
1355: WR_asset_id => p_asset_hdr_rec.asset_id,
1356: WR_date_effective => p_trans_rec.who_info.last_update_date,

Line 1369: FA_ADD_WARRANTY_PKG.Update_table(

1365: WR_calling_fn => 'fa_asset_desc_pub.update_row' ,
1366: p_log_level_rec => p_log_level_rec);
1367: elsif (p_asset_desc_rec_new.warranty_id <> p_old_warranty_id) then
1368: -- Change an asset's existing warranty
1369: FA_ADD_WARRANTY_PKG.Update_table(
1370: WR_warranty_id => p_asset_desc_rec_new.warranty_id,
1371: WR_old_warranty_id => p_old_warranty_id,
1372: WR_asset_id => p_asset_hdr_rec.asset_id,
1373: WR_date_effective => p_trans_rec.who_info.last_update_date,