DBA Data[Home] [Help]

APPS.OKL_AM_ASSET_DISPOSE_PVT dependencies on FA_TRANSACTION_HEADERS

Line 1824: FROM fa_transaction_headers th

1820:
1821: -- This cursor is used to find out the period_of_addtion for the asset that is to be retired
1822: CURSOR l_periodofaddition_csr(p_asset_id NUMBER, p_book_type_code VARCHAR2, p_period_open_date DATE) IS
1823: SELECT count(*)
1824: FROM fa_transaction_headers th
1825: WHERE th.asset_id = p_asset_id
1826: AND th.book_type_code = p_book_type_code
1827: AND th.transaction_type_code = 'ADDITION'
1828: AND th.date_effective > p_period_open_date;

Line 3645: FROM fa_transaction_headers th

3641: --SECHAWLA 05-FEB-03 Bug # 2781557 : new cursor
3642: -- This cursor is used to find out the period_of_addtion for the asset that is to be retired
3643: CURSOR l_periodofaddition_csr(p_asset_id NUMBER, p_book_type_code VARCHAR2, p_period_open_date DATE) IS
3644: SELECT count(*)
3645: FROM fa_transaction_headers th
3646: WHERE th.asset_id = p_asset_id
3647: AND th.book_type_code = p_book_type_code
3648: AND th.transaction_type_code = 'ADDITION'
3649: AND th.date_effective > p_period_open_date;