DBA Data[Home] [Help]

APPS.OZF_CLAIM_TAX_PVT dependencies on FND_CURRENCIES

Line 111: , fnd_currencies fc

107: , oc.exchange_rate_date
108: , oc.exchange_rate
109: , oc.org_id
110: FROM ozf_claims oc
111: , fnd_currencies fc
112: WHERE oc.currency_code = fc.currency_code
113: AND oc.claim_id = cv_claim_id;
114: l_claim_header OZF_CLAIM_PVT.claim_rec_type;
115:

Line 140: FROM fnd_currencies

136:
137: CURSOR csr_curr_details(p_curr_code IN VARCHAR2) IS
138: SELECT minimum_accountable_unit,
139: precision
140: FROM fnd_currencies
141: WHERE currency_code = p_curr_code
142: AND NVL(enabled_flag,'N') = 'Y';
143:
144: CURSOR csr_cm_dm_trx_id(p_claim_type_id IN NUMBER) IS