add

About Me

My photo
Oracle Apps - Techno Functional consultant

Saturday, March 17

TO FIND CURRENCY DETAILS

SELECT currency_code,
symbol,
enabled_flag,
currency_flag,
description,
precision,
extended_precision,
minimum_accountable_unit,
start_date_active,
end_date_active
FROM fnd_currencies
WHERE currency_code LIKE '%¤cy_code%';

Note: Here currency_code could be 'USD', 'GBP' etc.

No comments: