from the knowledgebase:
110-534771 - Error 42 SY_Collection.pvc line 108 when attempting to import data via Visual Integrator into a table that contains one or more customizer scripts in effect in Sage MAS 90.
Entry Type: Informational
Product:
Sage MAS 90 ERP
Sage MAS 200 ERP
Application: Visual Integrator
Version Reported: 4.40
Subject:
Error 42 SY_Collection.pvc line 108 when attempting to import data via Visual Integrator into a table that contains one or more customizer scripts in effect in Sage MAS 90.
Possible Resolution:
Use the oScript.UIIbj function to conditionally check if the table is being opened in a UI and ignore the script if it is not. For example
IF (oScript.UIObj = 1) THEN
'Execute my script
ELSE
'Do nothing
END IF