How To Find Out The Current Minipack Patch Level For Fixed Assets?
On Release 11i there is an option in the Tools Bar that allows you to verify the patchset level.
Navigate to Fixed Assets Manager > Assets > Asset Workbench form.
In the Asset Workbench, choose in the Menu > Tools > FA_ABOUT_FA.
This will give you the current installed FA patchset level on your environment.
If you can not find the information via the application, than please use the following select statement to get this information :
SELECT application_id, patch_level
FROM fnd_product_installations
WHERE application_id in (140);
Navigate to Fixed Assets Manager > Assets > Asset Workbench form.
In the Asset Workbench, choose in the Menu > Tools > FA_ABOUT_FA.
This will give you the current installed FA patchset level on your environment.
If you can not find the information via the application, than please use the following select statement to get this information :
SELECT application_id, patch_level
FROM fnd_product_installations
WHERE application_id in (140);
0