DBA Data[Home] [Help]

APPS.JAI_CMN_UTILS_PKG dependencies on GL_LEDGERS

Line 132: Replaced gl_sets_of_books with gl_ledgers

128: /* Bug 5243532. Added by Lakshmi Gopalsami
129: Removed the cursor c_set_of_books and c_operating_unit
130: which is referring to hr_operating_units
131: and org_organization_definitions. Replaced the same with caching logic.
132: Replaced gl_sets_of_books with gl_ledgers
133: */
134: CURSOR c_sob_currency (cp_set_of_books_id GL_SETS_OF_BOOKS.SET_OF_BOOKS_ID%TYPE) IS
135: SELECT currency_code
136: FROM gl_ledgers

Line 136: FROM gl_ledgers

132: Replaced gl_sets_of_books with gl_ledgers
133: */
134: CURSOR c_sob_currency (cp_set_of_books_id GL_SETS_OF_BOOKS.SET_OF_BOOKS_ID%TYPE) IS
135: SELECT currency_code
136: FROM gl_ledgers
137: WHERE ledger_id = cp_set_of_books_id;
138:
139: lv_sob_currency_code GL_SETS_OF_BOOKS.CURRENCY_CODE%TYPE;
140: lv_calling_object VARCHAR2(50);