Friday 5 June 2015

Find the Version of .pls file in oracle apps


if u know the name then
                      select
                               text from dba_source
                      where
                               name like '%xx_xxx_xxxx%'
                               and text like '%Header:%';


if you know the file name then
                    select
                             text from dba_source
                    where
                             text like '%$Header: xxxxxxxx%';



another one is by using command
               
                 strings -a xxxxxxxx.pls |grep Header