Update Custom Programs
In QAD 2010.1 Enterprise Edition and earlier, all of the product source files were located under <qad_install_directory> in the xrc directory (or src if you purchased the full source code). Beginning with QAD 2011 Enterprise Edition, source files are located in xrc/us in a series of two-letter subdirectories with names that mirror the R-code subdirectories.
You must update custom programs that reference QAD include files and/or subprocedures to prefix these references with the two-letter subdirectory structure. Nearly all references in custom programs to QAD source files require a us/<2_letter_subdirectory>/ prefix.
For example, custom program xxabcdrp.p is a menu-level report that uses QAD’s mfdtitle.i. Before QAD 2011 Enterprise Edition, this line of code would have appeared as:
{mfdtitle.i}
After implementing QAD 2011 Enterprise Edition, this same line of code must read as:
{us/mf/mfdtitle.i}
Some include files are located in xrc/us/bbi rather than in their two-letter subdirectory. Check the xrc/us/bbi directory for the list of those include files. Following implementation of QAD 2011 Enterprise Edition, references in custom programs to include files in that subdirectory require a prefix of us/bbi/. For example:
{us/bbi/pxmsg.i &MSGNUM=4874 &ERRORLEVEL=1}