DBA Data[Home] [Help]

APPS.FA_ASSET_DESC_PUB dependencies on FA_ADD_WARRANTY_PKG

Line 1298: FA_ADD_WARRANTY_PKG.Update_table(

1294: if (p_asset_desc_rec_new.warranty_id is NOT NULL) then
1295: if ((p_asset_desc_rec_new.warranty_id = FND_API.G_MISS_NUM) and
1296: (p_old_warranty_id is NOT NULL)) then
1297: -- Remove an existing warranty from an asset
1298: FA_ADD_WARRANTY_PKG.Update_table(
1299: WR_warranty_id => NULL,
1300: WR_old_warranty_id => p_old_warranty_id,
1301: WR_asset_id => p_asset_hdr_rec.asset_id,
1302: WR_date_effective => NULL,

Line 1315: FA_ADD_WARRANTY_PKG.Update_table(

1311: WR_calling_fn => 'fa_asset_desc_pub.update_row'
1312: , p_log_level_rec => p_log_level_rec);
1313: elsif (p_old_warranty_id is NULL) then
1314: -- Add a warranty to an asset that doesn't have one
1315: FA_ADD_WARRANTY_PKG.Update_table(
1316: WR_warranty_id => p_asset_desc_rec_new.warranty_id,
1317: WR_old_warranty_id => NULL,
1318: WR_asset_id => p_asset_hdr_rec.asset_id,
1319: WR_date_effective => p_trans_rec.who_info.last_update_date,

Line 1332: FA_ADD_WARRANTY_PKG.Update_table(

1328: WR_calling_fn => 'fa_asset_desc_pub.update_row'
1329: , p_log_level_rec => p_log_level_rec);
1330: elsif (p_asset_desc_rec_new.warranty_id <> p_old_warranty_id) then
1331: -- Change an asset's existing warranty
1332: FA_ADD_WARRANTY_PKG.Update_table(
1333: WR_warranty_id => p_asset_desc_rec_new.warranty_id,
1334: WR_old_warranty_id => p_old_warranty_id,
1335: WR_asset_id => p_asset_hdr_rec.asset_id,
1336: WR_date_effective => p_trans_rec.who_info.last_update_date,