You are on page 1of 5

How To License A New Product in Oracle Applications How To License A New Product in Oracle Applications 1.

After purchasing a license for an Application Product/Module, the first thing is to use license manager to record that the product/module is now licensed. Li cense manager can be run 2 ways: a. log in through Oracle Application Manager (OAM) and select Site Map -> Admini stration tab -> License Manager b. run adlicmgr.sh from AD_TOP/bin Using both methods you can license by Module or by individual Product. Select th e check box for the Module/Product to be licensed and Save/Next 2. The Products are now licensed but not ready to be used as none of the Forms/P ackages etc would have been compiled and loaded into the Database for these new Products. Use adadmin to generate the files for the new Product/s a. run adadmin b. Select Generate Application Files menu c. Select all of the following Menu options: - Generate message files - Generate forms files - Generate report files - Generate graphic files - Generate product JAR files d. Back to Main Menu e. Select Compile/Reload Applications Database Entities menu f. Select - Compile - Compile - Compile all of the following Menu options: APPS schema menu information flexfields

3. Once complete, check that the Forms/JSPs for the new Products licensed now wo rk. The Products are now ready to be configured. 4. Run autoconfig. Ads by Google Oracle Apps ERP Training Oracle Fin, Hrms,Crm,Scm, Apps dba Oracle Approved Center in Gurgaon www.saviance.com

April 5, 2010 - Posted by Shreyas Desai OP, AutoConfig, License, OAM

AD Utilities

adadmin, adlicmgr, AD_T

--------------------------------------------

How to check if certain Oracle Applications product/module is implemented? [ID 4 43699.1] Modified 30-AUG-2010 Type HOWTO Status PUBLISHED

In this Document Goal Solution I. Identify product short name. II. Check if product is implemented/installed. References Applies to: Oracle Application Install - Version: 11.5.3 to 11.5.10.2 - Release: 11.5 to 11. 5 Information in this document applies to any platform. Application Install - Version: 11.5.3 to 11.5.10.2 Goal How to check if certain Oracle Applications product/module is implemented? Solution I. Identify product short name. Each Oracle Applications product/module has short name which you should use to c heck if product is implemented. To identify product short name you can use Metalink. Go to My Oracle Support (MOS) 1. Click on Patches & Updates. 2. Click on Advanced Search. 3. Under Applications search options enter Product or Product Family a) Click to search and select b) Search: E-Business Suite Enter part of product/module name and put '%' from both sides ex: %receivables% c) Click 'Go' Product Name received is: Receivables (ar) where 'ar' is the product short name that you need. II. Check if product is implemented/installed. You can use several methods to check if certain Oracle Applications product/modu le is implemented. Method1 From the output of script adutconf.sql. a) Source the applications environment file for Admin node

b) cd $AD_TOP/sql/ c) Execute: sqlplus apps/<password> @adutconf.sql File adutconf.ls will be created in directory $AD_TOP/sql. Check product status by product short name. Example: --> Product Installation Status, Version Info and Patch Level Product Appl Status Version Patchset Level ABM Inactive 11.5.0 11i.ABM.F AD Shared 11.5.0 11i.AD.I.5 AP Installed 11.5.0 11i.AP.K

Implemented emented and Please note ching these Method 2

product has status 'Installed'. 'Inactive' product is not fully impl not used. that products with status 'Shared' are not fully implemented and pat products isn't required.

Use Oracle Applications Manager (OAM). Connect to http://<hostname>.<domain>:<PORT>/servlets/weboam/oam/oamLogin a. b. c. d. Click Under Go to Click 'Site Map'. 'System Configuration' choose 'License Manager'. 'Products' link. ' Licensed Products' under 'Reports' section.

You can use filter for certain product. Filter: Product Abbreviation is AR The value in status column shows product installation status. Method 3

Use sql query. select fa.APPLICATION_SHORT_NAME, fpi.PATCH_LEVEL, DECODE(fpi.STATUS, 'I','Insta lled', 'S','Shared', 'N', 'Inactive', fpi.STATUS) Status , fpi.DB_STATUS from fnd_product_installations fpi,FND_APPLICATION fa where fpi.APPLICATION_ID in ( select APPLICATION_ID from FND_APPLICATION where APPLICATION_SHORT_NAME like '<P RODUCT_SHORT_NAME>') and fa.APPLICATION_ID=fpi.APPLICATION_ID; where <PRODUCT_SHORT_NAME> is your product short name Example 1 How to check if Knowledge Management (CSK), iSupport (IBU), Business Intelligenc e(BIS) are implemented? sqlplus apps/password sql> select fa.APPLICATION_SHORT_NAME, fpi.PATCH_LEVEL, DECODE(fpi.STATUS, 'I',' Installed', 'S','Shared', 'N', 'Inactive', fpi.STATUS) Status , fpi.DB_STATUS from fnd_product_installations fpi,FND_APPLICATION fa where fpi.APPLICATION_ID in ( select APPLICATION_ID from FND_APPLICATION where APPLICATION_SHORT_NAME in ('CSK ','IBU','BIS')) and fa.APPLICATION_ID=fpi.APPLICATION_ID; if any of the products is implemented status should be Installed. Method 4 Use script patchsets.sh which is documented in NOTE:139684.1 Oracle Applications Current Patchset Comparison Utility - patchsets.sh. If you have any errors when running script patchsets.sh please refer to the foll owing note to resolve the issue: NOTE:314442.1 Cannot run Patchsets.Sh Script References NOTE:139684.1 - Oracle Applications Current Patchset Comparison Utility - patchs ets.sh NOTE:314442.1 - Cannot run Patchsets.Sh Script

---------------------------------------------Hi, Although you didn;t provided your apps/db version thus giving you general naviga tion as per 11i. Login into OAM --> SITE MAP --> System Configuration (License Manager) --> Repor ts(Licensed Products)

Also Check below MOS doc. How To Review Licensed Products For The E-Business Suite [ID 437824.1] pls always provide your apps/db/OS version for faster response. How to check if certain Oracle Applications product/module is implemented [ID 44 3699.1]

You might also like