DBA Data[Home] [Help]

APPS.OKL_AM_LEASE_TRMNT_PVT dependencies on OKL_TRNS_ACC_DSTRS

Line 5403: FROM OKL_TRNS_ACC_DSTRS DST

5399: -- make sure we get the debit distribution and also it is 100percent
5400: CURSOR code_combination_id_csr(p_source_id IN NUMBER,
5401: p_source_table IN VARCHAR2) IS
5402: SELECT DST.code_combination_id
5403: FROM OKL_TRNS_ACC_DSTRS DST
5404: WHERE DST.source_id = p_source_id
5405: AND DST.source_table = p_source_table
5406: AND DST.cr_dr_flag = 'D'
5407: AND DST.percentage = 100;

Line 5908: -- from OKL_TRNS_ACC_DSTRS_V

5904:
5905: -- ******** GET CCID FROM ACCOUNTING DISTRIBUTIONS ************* --
5906:
5907: -- Get the first code_combination_id for the transaction
5908: -- from OKL_TRNS_ACC_DSTRS_V
5909: OPEN code_combination_id_csr(lx_ajlv_rec.id, 'OKL_TXL_ADJSTS_LNS_B'); -- RMUNJULU 3596626
5910: FETCH code_combination_id_csr INTO l_code_combination_id;
5911: CLOSE code_combination_id_csr;
5912:

Line 5965: -- from OKL_TRNS_ACC_DSTRS_V

5961: END IF;
5962:
5963: /*
5964: -- Get the first code_combination_id for the transaction
5965: -- from OKL_TRNS_ACC_DSTRS_V
5966: OPEN code_combination_id_csr(lx_adjv_rec.id, 'OKL_TRX_AR_ADJSTS_B');
5967: FETCH code_combination_id_csr INTO l_code_combination_id;
5968: CLOSE code_combination_id_csr;
5969: