What is “Script” that is used in user view, operation etc.?
tmWorks R-View’s script is a sql-little-modification language, the only difference between them is that, the TR script can use “Form variables”. e.g. If a user view has a form containing a field named “productCode”, then you can write TR script like this: SELECT * FROM PRODUCTS WHERE PRODUCTCODE = ${productCode} the ${productCode} will be replaced by the form field productCode in runtime. All other SQL syntax(Insert, Update, Delete etc.) are supported too.