Raghava asked me about the languages and currencies being used in a new instance which has gone live. For languages we have this query:
select language_code
from fnd_languages
where installed_flag='I'
For currencies, I told him that in EBS all currencies are enabled. I executed the following query:
select CURRENCY_CODE,symbol
from apps.fnd_currencies
where enabled_flag='Y'
It returned 71 rows.
Total rows in fnd_currencies was 249.
However, I thought of a more logical way of getting this data. That would be to query transaction tables. Which transaction table to query here ? I queried dba_segments for the largest objects:
select object_name,bytes
from dba_segments
order by bytes desc;
After the usual fnd_lobs etc., gl_interface table came up. So I created this query:
SQL> select currency_code,count(*)
from apps.gl_interface
group by currency_code; 2 3
CURRENCY_CODE COUNT(*)
--------------- ----------
VND xxx
EUR xxx
USD xxx
SGD xxx
JPY xxx
VND = Vietnamese Dollar
SGD = Singapore Dollar
JPY = Japanese Yen
EUR = Euro
USD = US Dollar
I feel that this query does give a good estimate about the currencies in use.
Blog dedicated to Oracle Applications (E-Business Suite) Technology; covers Apps Architecture, Administration and third party bolt-ons to Apps
Subscribe to:
Post Comments (Atom)
3 comments:
I would suggest not to use gl_interface as it is an interface table with intransit data. Please use gl_je_headers to get the transactional currencies in use.
for FND_CURRENCIES
flag to indicate whether the currency is enabled for use at your
site (ENABLED_FLAG)
from etrm
Need Help Related PDF printing in ERP using Solaris
I am unable to print pdf using ERP with Solaris, I am using pasta to convert it as preprocess command but still it gives error
Printing output file.
Request ID : 2371657
Number of copies : 1
Printer : hplasterjet5500pcl6
ESP Ghostscript 815.01: Unrecoverable error, exit code 1
Pasta: Error: Preprocess failed. Command=/usr/sfw/bin/pdf2ps -toPostscript /prdclone/CLN/inst/apps/prdcln_zainirqerpp/logs/appl/conc/out/o2371657.out.pdf /prdclone/CLN/inst/apps/prdcln_zainirqerpp/appltmp/pasta4616_0.tmp
Pasta: Error: Preprocess or Print command failed!!!
APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1
Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. Program exited with status 1.
Action: Review your concurrent request log file for more detailed information.
+--------------------------------------+
Need help
Post a Comment