51: IF( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) THEN
52: fnd_log.string(fnd_log.LEVEL_STATEMENT,G_PKG_NAME||l_procedure_name,'Retrieving the Functional Currency');
53: END IF;
54: select gl.currency_code into l_currency_code
55: from ar_system_parameters_all asp,
56: gl_ledgers gl
57: where org_id = p_org_id
58: and gl.ledger_id = asp.set_of_books_id;
59: