Skip to content

psReportId - cDRReport

Methods - Properties - Events

Type

String

Default

None

Arguments

None

Description

This read-only property holds the identifier of the currently opened report. The property is automatically assigned the correct value inside the method OpenReport. If the value is empty, no report is loaded.

The value of the property should not be set by the developer.

DataFlex Framework usage

  • Web
  • Windows
  • FlexTron

Sample

Object oReport is a cDRReport
    Set psReportName to 'MyReport.dr'
End_Object

Object oRunReportButton is a Button
    Set Label to 'Run Report'

    Procedure OnClick
        String sReportId

        Send RunReport of oReport

        Get psReportId of oReport to sReportId
    End_Procedure
End_Object