DBA Data[Home] [Help]

APPS.FA_ASSET_VAL_PVT dependencies on FA_LEASES

Line 2863: from fa_leases

2859:
2860: -- check if lease is valid
2861: select count(1)
2862: into l_count
2863: from fa_leases
2864: where lease_id = p_lease_id;
2865: if l_count = 0 then
2866: fa_srvr_msg.add_message(
2867: calling_fn => 'validate_lease',

Line 2886: from fa_leases

2882:
2883: -- check if lease_currency same
2884: select currency_code
2885: into l_lease_currency
2886: from fa_leases
2887: where lease_id = p_lease_id;
2888: FOR c1_rec in c1 loop
2889: if (l_lease_currency <> c1_rec.currency_code) then
2890: raise lease_error;