DBA Data[Home] [Help]

APPS.OKL_POOL_PVT dependencies on OKL_POOL_TRANSACTIONS

Line 50: SELECT transaction_status,id FROM OKL_POOL_TRANSACTIONS pools

46:
47: -- Cursor for getting the status of the open transaction
48: CURSOR l_trans_status_csr(p_pol_id IN NUMBER)
49: IS
50: SELECT transaction_status,id FROM OKL_POOL_TRANSACTIONS pools
51: where pools.transaction_status <> G_POOL_TRX_STATUS_COMPLETE
52: and pools.transaction_type='ADD' and pools.transaction_reason='ADJUSTMENTS'
53: and pools.pol_id=p_pol_id;
54:

Line 3288: SELECT id pox_id,transaction_number FROM OKL_POOL_TRANSACTIONS pools

3284: Start Changes
3285: */
3286: CURSOR l_trans_exists_csr(p_pol_id IN NUMBER)
3287: IS
3288: SELECT id pox_id,transaction_number FROM OKL_POOL_TRANSACTIONS pools
3289: where pools.transaction_status in (G_POOL_TRX_STATUS_INCOMPLETE,G_POOL_TRX_STATUS_NEW,G_POOL_TRX_STATUS_APPREJ)
3290: and pools.transaction_type='ADD' and pools.transaction_reason='ADJUSTMENTS'
3291: and pools.pol_id=p_pol_id;
3292: