eric.dizon
22nd May 2014, 23:45
Warning: 'cxadi200.sotp' remains FIXED in function 'tdslsf4100m900.put.order_type'

NPRao
23rd May 2014, 00:36
Check out the compiler options - Compiler (http://www.baanboard.com/programmers_manual_baanerp_help_3gl_features_compiler)


-wn Suppress warnings of level n.
The warnings associated with the various level numbers are as follows:
10
Passing fixed variable to non-fixed call by reference argument (or non-fixed to fixed)

When a global variable is declared as fixed, the variable within a function is still regarded as fixed, although the reference declaration is not fixed. For example:

string a(20) fixed
function process.variable( ref string b )
{
}

If the function is invoked using the argument "a", "b" is considered fixed.

eric.dizon
11th June 2014, 20:11
Thanks NPRao