Query to Find AP Reimbursable Expenses in Oracle Fusion
WITH GET_PERIOD_AVG_RATE AS ( SELECT gper.avg_rate, gsob.CURRENCY_CODE AS functional_currency, gper.period_name, gper.to_currency_code FROM GL_LOOKUPS lk, GL_TRANSLATION_RATES gper, gl_sets_of_books gsob WHERE lk.lookup_type = ‘TRANSLATION_BAL_TYPE’ AND gper.SET_OF_BOOKS_ID = gsob.SET_OF_BOOKS_ID AND lk.lookup_code = gper.actual_flag …
Read More