DBA Data[Home] [Help]

APPS.FA_ASSET_DESC_PUB dependencies on FA_ASSET_VAL_PVT

Line 188: if (NOT FA_ASSET_VAL_PVT.validate_asset_number(

184: to_char(px_asset_hdr_rec.asset_id);
185: end if;
186:
187: -- Validate asset_number
188: if (NOT FA_ASSET_VAL_PVT.validate_asset_number(
189: p_transaction_type_code => 'ADDITION',
190: --px_trans_rec.transaction_type_code,
191: p_asset_number => px_asset_desc_rec_new.asset_number,
192: p_calling_fn => l_calling_fn,

Line 243: if (NOT FA_ASSET_VAL_PVT.validate_tag_number (

239: --l_asset_desc_rec.tag_number := NULL;
240: null;
241: else
242:
243: if (NOT FA_ASSET_VAL_PVT.validate_tag_number (
244: p_tag_number => px_asset_desc_rec_new.tag_number,
245: p_mass_addition_id => null,
246: p_calling_fn => l_calling_fn,
247: p_log_level_rec => g_log_level_rec)) then

Line 278: if not FA_ASSET_VAL_PVT.validate_category_df (

274: end if;
275:
276: /*
277:
278: if not FA_ASSET_VAL_PVT.validate_category_df (
279: p_transaction_type_code => px_trans_rec.transaction_type_code,
280: p_cat_desc_flex => l_asset_cat_rec.desc_flex,
281: p_calling_fn => p_calling_fn
282: ,p_log_level_rec => g_log_level_rec) then

Line 327: if (NOT FA_ASSET_VAL_PVT.validate_serial_number (

323: raise pub_error;
324: end if;
325: end if;
326:
327: if (NOT FA_ASSET_VAL_PVT.validate_serial_number (
328: p_transaction_type_code => px_trans_rec.transaction_type_code,
329: p_serial_number => px_asset_desc_rec_new.serial_number,
330: p_calling_fn => l_calling_fn,
331: p_log_level_rec => g_log_level_rec)) then

Line 354: if (NOT FA_ASSET_VAL_PVT.validate_asset_key (

350:
351: if (px_asset_desc_rec_new.asset_key_ccid = FND_API.G_MISS_NUM) then
352: --px_asset_desc_rec_new.asset_key_ccid := NULL;
353:
354: if (NOT FA_ASSET_VAL_PVT.validate_asset_key (
355: p_transaction_type_code => px_trans_rec.transaction_type_code,
356: p_asset_key_ccid => NULL,
357: p_calling_fn => l_calling_fn
358: ,p_log_level_rec => g_log_level_rec)) then

Line 387: if (NOT FA_ASSET_VAL_PVT.validate_asset_key (

383: end if;
384: end if;
385: end if;
386:
387: if (NOT FA_ASSET_VAL_PVT.validate_asset_key (
388: p_transaction_type_code => px_trans_rec.transaction_type_code,
389: p_asset_key_ccid => px_asset_desc_rec_new.asset_key_ccid,
390: p_calling_fn => l_calling_fn,
391: p_log_level_rec => g_log_level_rec)) then

Line 415: if (NOT FA_ASSET_VAL_PVT.validate_parent_asset(

411: if (px_asset_desc_rec_new.parent_asset_id = FND_API.G_MISS_NUM) then
412: --px_asset_desc_rec_new.parent_asset_id := NULL;
413: null;
414: else
415: if (NOT FA_ASSET_VAL_PVT.validate_parent_asset(
416: p_parent_asset_id => px_asset_desc_rec_new.parent_asset_id,
417: p_asset_id => px_asset_hdr_rec.asset_id,
418: p_log_level_rec => g_log_level_rec)) then
419: raise pub_error;

Line 452: if (NOT FA_ASSET_VAL_PVT.validate_supplier_name (

448: /*
449: if (nvl(l_asset_desc_rec.manufacturer_name, '-999') <>
450: px_asset_desc_rec_new.manufacturer_name) then
451:
452: if (NOT FA_ASSET_VAL_PVT.validate_supplier_name (
453: p_transaction_type_code => p_trans_rec.transaction_type_code,
454: p_calling_fn => l_calling_fn ,
455: p_log_level_rec => g_log_level_rec)) then
456: raise pub_error;

Line 460: if (NOT FA_ASSET_VAL_PVT.validate_supplier_number (

456: raise pub_error;
457: end if;
458: end if;
459:
460: if (NOT FA_ASSET_VAL_PVT.validate_supplier_number (
461: p_transaction_type_code => p_trans_rec.transaction_type_code,
462: p_calling_fn => p_calling_fn,
463: p_log_level_rec => g_log_level_rec)) then return FALSE;
464: end if;

Line 513: if (NOT FA_ASSET_VAL_PVT.validate_warranty(

509: p_log_level_rec => g_log_level_rec) then
510: raise pub_error;
511: end if;
512:
513: if (NOT FA_ASSET_VAL_PVT.validate_warranty(
514: p_warranty_id => px_asset_desc_rec_new.warranty_id,
515: p_date_placed_in_service =>
516: l_asset_fin_rec.date_placed_in_service,
517: p_book_type_code => px_asset_hdr_rec.book_type_code,

Line 589: if (NOT FA_ASSET_VAL_PVT.validate_lease(

585: raise pub_error;
586: end if;
587: end if;
588:
589: if (NOT FA_ASSET_VAL_PVT.validate_lease(
590: p_asset_id => px_asset_hdr_rec.asset_id,
591: p_lease_id => px_asset_desc_rec_new.lease_id ,
592: p_log_level_rec => g_log_level_rec)) then
593: raise pub_error;

Line 947: if (NOT FA_ASSET_VAL_PVT.validate_property_type(

943:
944: if (px_asset_desc_rec_new.property_type_code = FND_API.G_MISS_CHAR)
945: then --px_asset_desc_rec_new.property_type_code := NULL;
946:
947: if (NOT FA_ASSET_VAL_PVT.validate_property_type(
948: p_property_type_code => NULL,
949: p_log_level_rec => g_log_level_rec)) then
950: raise pub_error;
951: end if;

Line 953: if (NOT FA_ASSET_VAL_PVT.validate_property_type(

949: p_log_level_rec => g_log_level_rec)) then
950: raise pub_error;
951: end if;
952: else
953: if (NOT FA_ASSET_VAL_PVT.validate_property_type(
954: p_property_type_code => px_asset_desc_rec_new.property_type_code,
955: p_log_level_rec => g_log_level_rec)) then
956: raise pub_error;
957: end if;

Line 980: if (NOT FA_ASSET_VAL_PVT.validate_1245_1250_code(

976: if (px_asset_desc_rec_new.property_1245_1250_code =
977: FND_API.G_MISS_CHAR) then
978: --px_asset_desc_rec_new.property_1245_1250_code := NULL;
979:
980: if (NOT FA_ASSET_VAL_PVT.validate_1245_1250_code(
981: p_1245_1250_code => NULL,
982: p_log_level_rec => g_log_level_rec)) then
983: raise pub_error;
984: end if;

Line 986: if (NOT FA_ASSET_VAL_PVT.validate_1245_1250_code(

982: p_log_level_rec => g_log_level_rec)) then
983: raise pub_error;
984: end if;
985: else
986: if (NOT FA_ASSET_VAL_PVT.validate_1245_1250_code(
987: p_1245_1250_code => px_asset_desc_rec_new.property_1245_1250_code,
988: p_log_level_rec => g_log_level_rec)) then
989: raise pub_error;
990: end if;