function returns logical
Parameters
icComponentName | input | character | |
icReportName | input | character | |
olDatasetAvailable | output | logical | |
Internal usage
BLF
program code (program5/bgenericreportadapter.p)
/* Initialize the output variable */
olDatasetAvailable = FALSE.
/* Check is there already a dataset populated for this report */
FOR FIRST tDatasetInfo WHERE tDatasetInfo.tcComponentName = icComponentName
AND tDatasetInfo.tcReportName = icReportName:
IF VALID-HANDLE(tDatasetInfo.thDataset) THEN
olDatasetAvailable = TRUE.
END.