batch compilation of rdf reports in linux without opening rwbuilder [message #562934] |
Tue, 07 August 2012 01:04 |
|
ejaz
Messages: 1 Registered: August 2012 Location: India
|
Junior Member |
|
|
Hi,
I have more than 50 reports migrated from 6i to 11g in linux and pll are attached in couple of reports. now whenever i make any changes in any of the PLL and compile it then it is also needed to compile all the reports one by one manually by opening each report in rwbuilder in linux, compile all and then run the rwconverter to get the .rep file. I am looking for a script/solution where i need not to open each rdf in builder and i can make my all .rdf files converted into .rep in signle shot thru any batch script. i have the below script which is converting into .rep in a single shot but reports are not running.
# Batch Compile Reports
for i in ls *.rdf
do
echo Compiling Reports $i...
../bin/rwconverter.sh userid=user1/abc123@stardb batch=yes
source=$i stype=rdffile dtype=repfile overwrite=yes compile_all=yes
done
Will appreciate your assistance as i am much in need. thank you in advance..
|
|
|