DBA Data[Home] [Help]

APPS.FA_DISTRIBUTION_PVT dependencies on FND_API

Line 12: FND_API.G_VALID_LEVEL_FULL

8: px_asset_hdr_rec IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,
9: px_asset_cat_rec_new IN OUT NOCOPY FA_API_TYPES.asset_cat_rec_type,
10: px_asset_dist_tbl IN OUT NOCOPY FA_API_TYPES.asset_dist_tbl_type,
11: p_validation_level IN NUMBER :=
12: FND_API.G_VALID_LEVEL_FULL
13: , p_log_level_rec IN FA_API_TYPES.log_level_rec_type) RETURN BOOLEAN IS
14:
15: l_trans_rec FA_API_TYPES.trans_rec_type;
16: l_asset_hdr_rec FA_API_TYPES.asset_hdr_rec_type;

Line 580: -- if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then

576: raise DIST_DATA_ERROR;
577: end if;
578: -- BUG# 6936546
579:
580: -- if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then
581:
582: -- make sure transaction_units are populated
583: if (d_transaction_units is null or d_transaction_units = 0) then
584: l_msg_name := 'FA_INVALID_TXN_UNITS';

Line 610: if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then

606: l_msg_name := 'FA_INVALID_TXN_UNITS';
607: raise DIST_DATA_ERROR;
608: elsif (p_trans_rec.transaction_type_code = 'TRANSFER') then
609: -- BUG# 6936546
610: if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then
611: open DH_C1;
612: fetch DH_C1 into px_asset_dist_tbl(i).distribution_id,
613: px_asset_dist_tbl(i).units_assigned;
614: close DH_C1;

Line 706: -- if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then

702:
703: END LOOP;
704:
705: -- BUG# 6936546
706: -- if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then
707:
708: -- check if txn_units are valid for transfer and reclass
709: -- sum of txn units in dist_tbl should be zeroed out
710: -- for transfer and reclass case

Line 873: if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then

869: if (p_trans_rec.transaction_type_code = 'TRANSFER') then
870:
871: -- bugfix 2846357
872: -- BUG# 6936546
873: if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then
874: if not FA_ASSET_VAL_PVT.validate_duplicate_dist (
875: p_transaction_type_code => p_trans_rec.transaction_type_code,
876: p_asset_dist_tbl => p_asset_dist_tbl,
877: p_curr_index => p_curr_index ,