Wednesday, May 23, 2007

How to determine XMLP BIP Version

Here's a quick SQL to get the version of XML Publisher / BI Publisher that you are running in the Oracle eBusiness Suite:

SELECT DECODE (bug_number
            , '3554613', '4.5.0'
            , '3263588', 'XDO.H'
            , '3822219', '5.0.0'
            , '4236958', '5.0.1'
            , '4206181', '5.5.0'
            , '4561451', '5.6.0'
            , '4905678', '5.6.1'
            , '5097966', '5.6.2'
            , '5472959', '5.6.3') PATCH, bug_number
  FROM ad_bugs
 WHERE bug_number IN
      ('3554613'
     , '3263588'
     , '3822219'
     , '4236958'
     , '4206181'
     , '4561451'
     , '4905678'
     , '5097966'
     , '5472959');


This is based on Metalink Note:362496.1 with 5472959 5.6.3 added.

3 comments:

Braj Kishore said...

Hi!

I think most easy way to find xml publisher version is this way.

strings -a $OA_JAVA/oracle/apps/xdo/common/MetaInfo.class|grep Publisher

Gareth Roberts said...

Thanks Braj, thats a quick way too.

gopichand said...

Hi Kishore,

Thanks a Ton man :-)

You saved me lot of time ;-)

gt1982