DBA Data[Home] [Help]

APPS.ZX_TDS_UTILITIES_PKG dependencies on GL_SETS_OF_BOOKS

Line 776: p_ledger_id IN gl_sets_of_books.set_of_books_id%TYPE,

772: -- g_currency_rec_tbl based on ledger_id. If this ledger_id already
773: -- exists in the cache structure, the population process will be skipped.
774: -----------------------------------------------------------------------
775: PROCEDURE populate_currency_cache (
776: p_ledger_id IN gl_sets_of_books.set_of_books_id%TYPE,
777: p_return_status OUT NOCOPY VARCHAR2,
778: p_error_buffer OUT NOCOPY VARCHAR2) IS
779:
780: CURSOR get_currency_info_csr IS

Line 785: FROM fnd_currencies cur, gl_sets_of_books sob

781: SELECT sob.set_of_books_id,
782: cur.currency_code,
783: NVL(cur.minimum_accountable_unit, power(10, (-1 * precision))),
784: precision
785: FROM fnd_currencies cur, gl_sets_of_books sob
786: WHERE sob.set_of_books_id = p_ledger_id
787: AND cur.currency_code = sob.currency_code;
788:
789: