$INST_TOP $LOG_HOME $ORA_CONFIG_HOME
cd $APPL_TOP/admin/TEST/log
source the 10.1.2 environment file:
ORACLE_CONFIG_HOME/txk123.env,
or $INST_TOP/ora/10.1.2/txk123.env.
Second, modify the environment variable FORMS_PATH, so the referenced forms can be found. Referenced forms are only required by the builder and compiler. The compiler merges in everything it needs from the referenced form when it generates the .fmx, so the referenced forms are not used at runtime; this is the reason they are not in the default FORMS_PATH.
FORMS_PATH=$FORMS_PATH:$AU_TOP/forms/US
export FORMS_PATH
Launch the forms builder
$ORACLE_HOME/bin/frmbld.sh &
You must use the frmbld.sh script, under $ORACLE_HOME/bin. Do not run the executable standalone. After sourcing the 10.1.2 environment file, $ORACLE_HOME should be set to ~/apps/tech_st/10.1.2, and $ORACLE_HOME/bin should be included in $PATH.
Be aware that Forms searches the current working directory ($PWD) for referenced forms and libraries before FORMS_PATH. If you run the builder from your home directory, and have old copies of fmb's and pll's saved there, these will be picked up instead.
Forms Builder:
unset EVENT_10932
unset DE_DISABLE_PLS_512
Open $ORACLE_HOME/bin/reports.sh in a text editor and comment out the following lines.
TNS_ADMIN=$ORACLE_HOME/network/admin; export TNS_ADMIN
NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1; export NLS_LANG
Launch the builder:
rwbuilder.sh &
Reports
Copy the reports and libraries over from your Release 12 file system to your development environment. There are far fewer reports than forms, and only a small number of Reports PL/SQL libraries.
Section 6: Compiling Reports
rwconverter.sh userid=APPS/APPS source=$FND_TOP/reports/US/FNDATREP.rdf stype=rdffile dtype=rdffile overwrite=yes batch=yes compile_all=yes
rwconverter.sh userid=APPS/APPS source=$FND_TOP/reports/US/FNDATREP.rdf dest=/tmp/FNDATREP.rdf stype=rdffile dtype=rdffile overwrite=yes batch=yes compile_all=yes
rwconverter.sh userid=apps/apps source=$AU_TOP/plsql/BISRPRT.pll stype=pllfile dtype=pllfile overwrite=yes batch=yes compile_all=yes
rwconverter.sh userid=apps/apps source=$AU_TOP/plsql/BISRPRT.pll dest=/tmp/BISRPRT.pll stype=pllfile dtype=pllfile overwrite=yes batch=yes compile_all=yes