jadeReportWriterSystemName

jadeReportWriterSystemName(): String;

The jadeReportWriterSystemName method of the Global class is called by the JADE Report Writer Designer application to return the name of the system.

Although the default return value is null (that is, ""), you can reimplement this method in your user schemas to return any value that you require. For example, you can use this method to return an overall system identifier (variable) for use in report or page headers, as shown in the following example.

jadeReportWriterSytemName(): String;
vars
begin
    return "My Test Company":
end;