License EBS HRMS/Payroll product
We are having demand from client to have HRMS & Payroll modules in our EBS (current Version 12.1.3). When I checked we are having the License of this product and is in shared status with our application.
So I am explaining here how to install(register) this product in the application.
Step 1. Check if product is shared in your system with below query:
select fat.application_id, FAT.APPLICATION_NAME, fdi.status, fdi.patch_level
FROM FND_APPLICATION_TL FAT, fnd_product_installations FDI
WHERE FDI.APPLICATION_ID = FAT.APPLICATION_ID
and fdi.status in ('I', 'S')
and FDI.APPLICATION_ID in (800,801);
FROM FND_APPLICATION_TL FAT, fnd_product_installations FDI
WHERE FDI.APPLICATION_ID = FAT.APPLICATION_ID
and fdi.status in ('I', 'S')
and FDI.APPLICATION_ID in (800,801);
-- where status : I=installed, S=shared
* SO as it is shared for me, i am installing it with below steps. In case it is already installed(Staus=I) you can directly go with installing HRMS Patches.
Step 2. Login to application with sysadmin ( or with user having System Administrator Responsibility).
* Navigate to System Administrator > License Manager
Step 3:
* Click
on Products
Step 4:
* In next window, click on “ Show =more options” & In
next window click on License Applications Product. Click continue button.
Step 5:
Search for product to be Licensed and click checkbox against
it like below for Payroll & click next.
It will show the product to be licensed and ask
to submit as below. Submit after verifying that you have selected the correct product.
* Confirmation page will come after submission .
Step 6:
Requery
to check status of product
select fat.application_id, FAT.APPLICATION_NAME, fdi.status, fdi.patch_level
FROM FND_APPLICATION_TL FAT, fnd_product_installations FDI
WHERE FDI.APPLICATION_ID = FAT.APPLICATION_ID
and fdi.status in ('I', 'S')
and FDI.APPLICATION_ID in (800,801);
FROM FND_APPLICATION_TL FAT, fnd_product_installations FDI
WHERE FDI.APPLICATION_ID = FAT.APPLICATION_ID
and fdi.status in ('I', 'S')
and FDI.APPLICATION_ID in (800,801);
This status shows that we have installed i.e. licensed the product(s) successfully.
Check my other relative posts on:
Thanks,
Achal