Report Manger is not installed ? Or what?
Our environment: 12.1.3
If I run the following select:
SELECT SUBSTR(fat.application_name,1,48) "NAME",
SUBSTR(fpi.patch_level,1,12) "PATCHSET",
status
FROM fnd_product_installations fpi,
fnd_application_tl fat
WHERE fpi.application_id = fat.application_id
AND fpi.patch_level LIKE '%FRM%'
I received the following output:
NAME PATCHSET STATUS
Report Manager R12.FRM.B.3 N
I see that the STATUS is N instead of I.
1. This means that the patch set R12.FRM.B.3 is not installed?
2. Or Report Manger is not installed? But is not possible because we are using Report Manager.
Can somebody make some light here?
If I run the following select:
SELECT SUBSTR(fat.application_name,1,48) "NAME",
SUBSTR(fpi.patch_level,1,12) "PATCHSET",
status
FROM fnd_product_installations fpi,
fnd_application_tl fat
WHERE fpi.application_id = fat.application_id
AND fpi.patch_level LIKE '%FRM%'
I received the following output:
NAME PATCHSET STATUS
Report Manager R12.FRM.B.3 N
I see that the STATUS is N instead of I.
1. This means that the patch set R12.FRM.B.3 is not installed?
2. Or Report Manger is not installed? But is not possible because we are using Report Manager.
Can somebody make some light here?
0