Forum Discussion
_anomDiebolt_
7 years agoQrew Elite
This is easy to do with script. On the ?a=ReportList page there is a JavaScript variable gReportsRaw which holds a record for every report and includes these fields:
Via script you can access gReportsRaw and extract the fields you need to export.
Here is the code and screenshot of accessing four specific fields from the 29 reports:
{
id: "bnsusb2bg_1",
qid: 1,
tableDBID: "bnsusb2bg",
tableName: "Ps",
type: "Table",
isChart: false,
chartType: "",
name: "List All",
groupID: "0",
groupName: "Common",
description: "All PS",
usedCount: 0,
usedLast: null,
usedLastText: "",
usedLastShortText: "",
isPersonal: false,
ownerName: "",
ownerUID: "0",
canCopy: true,
canDelete: false,
isRevealedByAdmin: false,
usedByNumSubscriptions: 0,
usedAsDrillDownReport: 0
}
Via script you can access gReportsRaw and extract the fields you need to export.
Here is the code and screenshot of accessing four specific fields from the 29 reports:
console.table(gReportsRaw, ["tableDBID", "qid", "tableName", "description"]);