jadeReportWriterAppName

jadeReportWriterAppName(): String;

The jadeReportWriterAppName method of the Application class is called by the JADE Report Writer Designer application to return the name of the application.

Although this method returns the value of the name property of the receiver application by default, you can reimplement this method in the Application class of your user schemas if you want to return a specific value; that is, a system identifier (variable) that may depend on the current JADE application or user, as shown in the following example.

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