DBA Data[Home] [Help]

APPS.PO_CREATE_ISO dependencies on GL_SETS_OF_BOOKS

Line 467: gl_sets_of_books gl

463: select currency_code
464: into l_prec_currency_code
465: from
466: financials_system_parameters fsp,
467: gl_sets_of_books gl
468: where gl.set_of_books_id = fsp.set_of_books_id;
469:
470: /*Find the extended precision
471: of the currency so that the unit price may be rounded off

Line 666: /* get currency_code form GL sets of books,This should

662: l_ac_id out NOCOPY number,
663: l_ir_id out NOCOPY number) IS
664:
665: BEGIN
666: /* get currency_code form GL sets of books,This should
667: return one row, if not return error and exit subroutine */
668:
669: BEGIN
670:

Line 675: FROM GL_SETS_OF_BOOKS GLSOB,

671: Fnd_File.Put_Line(FND_FILE.LOG, 'Selecting Currency Code');
672:
673: SELECT glsob.CURRENCY_CODE
674: INTO l_currency_code
675: FROM GL_SETS_OF_BOOKS GLSOB,
676: FINANCIALS_SYSTEM_PARAMS_ALL FSP
677: WHERE GLSOB.SET_OF_BOOKS_ID=FSP.SET_OF_BOOKS_ID
678: AND nvl(FSP.org_id,-1) = l_op_unit_id;
679: