6305: open x_currency for
6306: select c.currency_code
6307: , c.name currency_name
6308: , c.precision
6309: from fnd_currencies_vl c
6310: where c.currency_flag='Y'
6311: and c.enabled_flag='Y'
6312: and trunc(nvl(c.start_date_active,sysdate))<=trunc(sysdate)
6313: and trunc(nvl(c.end_date_active,sysdate+1))>trunc(sysdate)