DBA Data[Home] [Help]

APPS.LNS_BORROWERS_SUMMARY_PUB dependencies on LNS_SYSTEM_OPTIONS_ALL

Line 339: from lns_system_options_all sys,

335: head.org_id = P_ORG_ID;
336:
337: CURSOR func_curr_cur(P_ORG_ID number) IS
338: select books.currency_code
339: from lns_system_options_all sys,
340: gl_sets_of_books books
341: where sys.org_id = P_ORG_ID and
342: sys.set_of_books_id = books.set_of_books_id;
343:

Line 575: from lns_system_options_all sys,

571: select org.ORGANIZATION_ID,
572: org.name,
573: null,
574: null
575: from lns_system_options_all sys,
576: hr_operating_units org
577: where sys.ORG_ID = org.ORGANIZATION_ID;
578:
579: BEGIN