DBA Data[Home] [Help]

APPS.OKL_AM_LEASE_TRMNT_PVT dependencies on OKL_TRNS_ACC_DSTRS

Line 5237: FROM OKL_TRNS_ACC_DSTRS DST

5233: -- make sure we get the debit distribution and also it is 100percent
5234: CURSOR code_combination_id_csr(p_source_id IN NUMBER,
5235: p_source_table IN VARCHAR2) IS
5236: SELECT DST.code_combination_id
5237: FROM OKL_TRNS_ACC_DSTRS DST
5238: WHERE DST.source_id = p_source_id
5239: AND DST.source_table = p_source_table
5240: AND DST.cr_dr_flag = 'D'
5241: AND DST.percentage = 100;

Line 5742: -- from OKL_TRNS_ACC_DSTRS_V

5738:
5739: -- ******** GET CCID FROM ACCOUNTING DISTRIBUTIONS ************* --
5740:
5741: -- Get the first code_combination_id for the transaction
5742: -- from OKL_TRNS_ACC_DSTRS_V
5743: OPEN code_combination_id_csr(lx_ajlv_rec.id, 'OKL_TXL_ADJSTS_LNS_B'); -- RMUNJULU 3596626
5744: FETCH code_combination_id_csr INTO l_code_combination_id;
5745: CLOSE code_combination_id_csr;
5746:

Line 5799: -- from OKL_TRNS_ACC_DSTRS_V

5795: END IF;
5796:
5797: /*
5798: -- Get the first code_combination_id for the transaction
5799: -- from OKL_TRNS_ACC_DSTRS_V
5800: OPEN code_combination_id_csr(lx_adjv_rec.id, 'OKL_TRX_AR_ADJSTS_B');
5801: FETCH code_combination_id_csr INTO l_code_combination_id;
5802: CLOSE code_combination_id_csr;
5803: