Hello,
Yes, it is possible. To achieve the desired behavior, remove the below code parts from the script used to generate the report:
$noRecords = $True
$noRecords = $False
# If there are no records, add <No records> item
if ($noRecords -eq $True)
{
if ($NULL -eq $styleNoRecords)
{
$styleNoRecords = $Context.Items.CreateItemStyle("#3d3d3d", $NULL,
"ADM_LISTITEMFONTSTYLE_REGULAR")
}
$Context.Items.Add(-1, "<No records>", "Information", $columnValues, $styleNoRecords)
}