|
variableName! = variableNamePrefix! + "_" + str(i) + "!" |
|
execute variableName! + " = methodParams!.get(" + str(i) + ")" |
The user prefix is computed using the logged in username. If this starts with "FN" these lines fail because variable names cannot start with FN in BBj (it's reserved for functions).
Possible solution: prefix with "x_" or similar to avoid this conflict.
RestBridge/RestBCAdapter.bbj
Lines 249 to 250 in 28baf72
The user prefix is computed using the logged in username. If this starts with "FN" these lines fail because variable names cannot start with FN in BBj (it's reserved for functions).
Possible solution: prefix with "x_" or similar to avoid this conflict.