eBS: Generate custom libraries

During an e-Business suite cross-platform migration, not all custom .plx get generated automatically using adadmin.

To take care of the the extra .plx, left behind once adadmin as completed, proceed as follow, for example to generate 2 days older .plx files:

for i in `find $AU_TOP/resource -name "*.plx" -mtime +2 -print`;
do
  filename=$(basename "$i")
  prefix="${filename%.*}"
  echo "Processing $prefix"
  $ORACLE_HOME/bin/f60gen module=$AU_TOP/resource/${prefix}.pll userid=APPS/<apps> output_file=$AU_TOP/resource/${prefix}.plx module_type=library compile_all=special
done

Then check that all libraries .plx in $AU_TOP/resources are all generated, looking at their timestamp.