fgl_report_configureCompatibilityOutput

Configure the output for BDL ASCII reports (compatibility reports) being run in graphical mode using Genero Report Writer.

Syntax

fgl_report_configureCompatibilityOutput(
   pageWidthInCharacters INTEGER,
   fontName STRING,
   fidelity  BOOLEAN,
   reportName NULL, 
   reportCategory STRING,
   systemId STRING)
  1. pageWidthInCharacters - For reports that do not contain a RIGHT MARGIN specification this value should be set. If the report does not contain a RIGHT MARGIN specification and this value is not set, a value of 132 is assumed.
  2. fontName - Specifies the font to use. The default is a fixed pitch font.
  3. fidelity - Ensures that the text preview and text printout are100% the same. The font is not embedded in the report document, it is drawn similar to an image. As a result, you may not be able to select the text in the resulting report, depending on the output format chosen (pdf, for example).
  4. reportName - the value for this parameter is now provided internally. However, because of backwards compatibility, you must set the value to NULL when you call this function.
  5. reportCategory - Specifies the "category" of the report. The value specified is passed in the overloadable callback function compat_placePageBackground in CompatCustom.4gl.
  6. systemId - Specifies an absolute URL against which relative resources such as images in overlays are resolved.

Usage

Function to optionally configure the output for BDL ASCII reports (compatibility reports) being run in graphical mode using Genero Report Writer.

This function is applicable when no 4rp template has been specified in the call to either fgl_report_loadCurrentSettings or fgl_report_loadAndCommit. All arguments to this function are optional (indicated by passing a null value).

See Usage.