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 3294: SELECT id pox_id,transaction_number FROM OKL_POOL_TRANSACTIONS pools

3290: Start Changes
3291: */
3292: CURSOR l_trans_exists_csr(p_pol_id IN NUMBER)
3293: IS
3294: SELECT id pox_id,transaction_number FROM OKL_POOL_TRANSACTIONS pools
3295: where pools.transaction_status in (G_POOL_TRX_STATUS_INCOMPLETE,G_POOL_TRX_STATUS_NEW,G_POOL_TRX_STATUS_APPREJ)
3296: and pools.transaction_type='ADD' and pools.transaction_reason='ADJUSTMENTS'
3297: and pools.pol_id=p_pol_id;
3298: