ReportId property: PostReport class

Description

This property is a system-generated identification number. The system assigns a ReportId after the Put method processed the request.

This property is read/write.

Example

&MYRQST.Put();
if &MYRQST.ReportId > 0 then
     MessageBox(o, "", 63, 119, "Sucessfully processed request with Rpt. ID %1",⇒
 &MYRQST.ReportId);
Else
    /* do error processing */
End-If;