DBA Data[Home] [Help]

APPS.OKL_ACCOUNTING_UTIL dependencies on FA_BOOKS

Line 2830: FROM fa_books bk

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

Line 2839: FROM fa_books bk

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