DBA Data[Home] [Help]

APPS.LNS_UTILITY_PUB dependencies on GL_SETS_OF_BOOKS

Line 521: FROM gl_sets_of_books sb,

517:
518: /* --Performance bug#4963583
519: cursor c_precision(p_to_currency varchar2) is
520: select fndc.precision
521: FROM gl_sets_of_books sb,
522: fnd_currencies fndc
523: WHERE sb.currency_code = fndc.currency_code
524: and fndc.currency_code = p_to_currency;
525: */

Line 543: gl_sets_of_books sb

539:
540: if p_to_currency is null then
541: SELECT sb.currency_code into l_to_currency
542: FROM lns_system_options so,
543: gl_sets_of_books sb
544: WHERE sb.set_of_books_id = so.set_of_books_id;
545: else
546: l_to_currency := p_to_currency ;
547: end if;