DBA Data[Home] [Help]

APPS.OKL_ACCOUNTING_UTIL dependencies on FA_BOOKS

Line 2832: FROM fa_books bk

2828: -- Cursor to get the asset amount after the transaction
2829:
2830: CURSOR after_csr IS
2831: SELECT bk.cost
2832: FROM fa_books bk
2833: WHERE bk.book_type_code = p_book_type_code
2834: AND bk.asset_id = p_asset_id
2835: AND bk.transaction_header_id_in = p_transaction_header_id;
2836:

Line 2841: FROM fa_books bk

2837: -- Cursor to get the asset amount before the transaction
2838:
2839: CURSOR before_csr IS
2840: SELECT bk.cost
2841: FROM fa_books bk
2842: WHERE bk.book_type_code = p_book_type_code
2843: AND bk.asset_id = p_asset_id
2844: AND bk.transaction_header_id_out = p_transaction_header_id;
2845: