DBA Data[Home] [Help]

APPS.FA_ASSET_VAL_PVT dependencies on FA_LEASES

Line 3067: from fa_leases

3063:
3064: -- check if lease is valid
3065: select count(1)
3066: into l_count
3067: from fa_leases
3068: where lease_id = p_lease_id;
3069: if l_count = 0 then
3070: fa_srvr_msg.add_message(
3071: calling_fn => 'validate_lease',

Line 3090: from fa_leases

3086:
3087: -- check if lease_currency same
3088: select currency_code
3089: into l_lease_currency
3090: from fa_leases
3091: where lease_id = p_lease_id;
3092: FOR c1_rec in c1 loop
3093: if (l_lease_currency <> c1_rec.currency_code) then
3094: raise lease_error;