When you implement Oracle E-Business suite for different Regional Rollouts, you would want to adhere and implement Country Specific Statutory requirements.
Today, in this topic I would like to show how could we enable Regional Country Specific Localizations
Firstly, we check whether any of the Following Localizations are applied:
1. JA Asia/Pacific Localizations
2. JE European Localizations
3. JG Regional Localizations
4. JL Latin-American Localizations
SELECT application_id, patch_level, product_version, decode(upper(status), 'N', 'Not Installed', 'I','Installed', 'L', 'Custom') "Status"
FROM fnd_product_installations fpi
WHERE application_id in (7000, 7002, 7003, 7004);
Application Id Patch level Product Version Status
--------------- ------------ ---------------- ----------
7000 R12.JA.B.3 12.0.0 Not Installed
7002 R12.JE.B.3 12.0.0 Not Installed
7003 R12.JG.B.3 12.0.0 Not Installed
7004 R12.JL.B.3 12.0.0 Not Installed
If and when you want to use those country Specific Localization Functionality, you need to Licence the
Products, which is just registering of those products as below,
System Administartor -> Oracle Applications manager -> Licence Manager -> Site Map -> Country Specific Functionalities -> Selected Country specific functionality
Asia/Pacific countries for JA
European countries for JE - As an example here France is selected
Latin-American countries for JL
Click on Next
Click on Submit
And Finally the Specific Localizations should come as installed
SELECT application_id, patch_level, product_version, decode(upper(status), 'N', 'Not Installed', 'I','Installed', 'L', 'Custom') "Status"
FROM fnd_product_installations fpi
WHERE application_id in (7000, 7002, 7003, 7004);
Application Id Patch level Product Version Status
--------------- ------------ ---------------- ----------
7000 R12.JA.B.3 12.0.0 Not Installed
7002 R12.JE.B.3 12.0.0 Installed
7003 R12.JG.B.3 12.0.0 Not Installed
7004 R12.JL.B.3 12.0.0 Not Installed
Print This Post
Today, in this topic I would like to show how could we enable Regional Country Specific Localizations
Firstly, we check whether any of the Following Localizations are applied:
1. JA Asia/Pacific Localizations
2. JE European Localizations
3. JG Regional Localizations
4. JL Latin-American Localizations
SELECT application_id, patch_level, product_version, decode(upper(status), 'N', 'Not Installed', 'I','Installed', 'L', 'Custom') "Status"
FROM fnd_product_installations fpi
WHERE application_id in (7000, 7002, 7003, 7004);
Application Id Patch level Product Version Status
--------------- ------------ ---------------- ----------
7000 R12.JA.B.3 12.0.0 Not Installed
7002 R12.JE.B.3 12.0.0 Not Installed
7003 R12.JG.B.3 12.0.0 Not Installed
7004 R12.JL.B.3 12.0.0 Not Installed
If and when you want to use those country Specific Localization Functionality, you need to Licence the
Products, which is just registering of those products as below,
System Administartor -> Oracle Applications manager -> Licence Manager -> Site Map -> Country Specific Functionalities -> Selected Country specific functionality
Asia/Pacific countries for JA
European countries for JE - As an example here France is selected
Latin-American countries for JL
Click on Next
Click on Submit
And Finally the Specific Localizations should come as installed
SELECT application_id, patch_level, product_version, decode(upper(status), 'N', 'Not Installed', 'I','Installed', 'L', 'Custom') "Status"
FROM fnd_product_installations fpi
WHERE application_id in (7000, 7002, 7003, 7004);
Application Id Patch level Product Version Status
--------------- ------------ ---------------- ----------
7000 R12.JA.B.3 12.0.0 Not Installed
7002 R12.JE.B.3 12.0.0 Installed
7003 R12.JG.B.3 12.0.0 Not Installed
7004 R12.JL.B.3 12.0.0 Not Installed
Print This Post