DBA Data[Home] [Help]

APPS.OKL_AM_AMORTIZE_PVT dependencies on OKL_K_LINES_FULL_V

Line 3737: FROM okl_k_lines_full_v

3733:
3734: -- SECHAWLA 06-MAY-04 3578894 : Added this cursor to validate the kle id
3735: CURSOR l_okllines_csr(cp_kle_id IN NUMBER) IS
3736: SELECT name
3737: FROM okl_k_lines_full_v
3738: WHERE id = cp_kle_id;
3739:
3740: -- This cursor is used to get the cost, residual value of an asset from the Financial Asset (TOP LINE)
3741: CURSOR l_linesfullv_csr(p_id NUMBER) IS

Line 3743: FROM okl_k_lines_full_v

3739:
3740: -- This cursor is used to get the cost, residual value of an asset from the Financial Asset (TOP LINE)
3741: CURSOR l_linesfullv_csr(p_id NUMBER) IS
3742: SELECT oec, residual_value
3743: FROM okl_k_lines_full_v
3744: WHERE id = p_id;
3745:
3746: -- This cursor returns the original cost from the original asset creation line
3747: CURSOR l_txlassetsv_csr(p_asset_number okl_txl_assets_v.asset_number%type) IS