:EXT_REPORT_ON

The :EXT_REPORT_ON script statement allows you to handle the contents of extended script reports. You can use :EXT_REPORT_ON to include a complete script of a task in the report.

Notes:

  • Extended script reports are not created by default. The administrator must activate them in the UC_CLIENT_SETTINGS variable with the EXT_REPORTS key. If you want to activate this report only for individual objects, you can do so in the Extended Reports section of the relevant object's General page.
  • The content of Include objects that are called with the :INCLUDE script statement is logged until you use the EXT_REPORT=OFF parameter. For more information, see :INCLUDE.
  • Use the :EXT_REPORT_OFF to exclude particular scripting lines or a complete script from being logged. Logging is then suppressed until the script has ended or until you use the :EXT_REPORT_ON script statement

Syntax

:EXT_REPORT_ON

Use the script statement :EXT_REPORT_OFF to exclude particular script lines or the whole script from being reported. Logging is then suppressed until the end of the script or the script statement :EXT_REPORT_ON.

Example

The following example suppresses the logging of a part of the script:

:EXT_REPORT_OFF
:
INC JOCO2UC.SET.GLOBALS
:
PUT_ATT FT_SRC_FILE = "$&JOCO_USERID.&COB85_ERRLST_PREF_BS2.&PRGMNAME"
:
PUT_ATT FT_DST_FILE = "&PC_PATH\&PRGMNAME_ERRLST.TXT"   

:
EXT_REPORT_ON 

See also:

seealso

Extended Reports for Scripts