Dashboard table reports can be used as Bot while creating bot in process studio. There is one tab for reports section from where we can drag and attach the bot. GiBots 0 Admin Q Home: Process Studio Start Process Process Studio StarEndSLooLoo) Variables:-- Taskc refNo X :. P iQaoto e e E Process Rule Screan Notity Roprt Process Name Test reporta Create Report Process Description . Start Test reporta Select Process Type * L# Creditors (Current Month) Details Extemal # Invoices(Current Month) Details Process Owner* WAverage No of Enteries per Vendor Admin BolIPertermanice L BeforeRule Doc invoice Select Process Department * LCurrent Previous Month Details Cnd Select Process UserType * Customer Wise Training Pending Both [Update] . Here one process is created using the report bot. When we attach the report bot it takes all the selected fields as a inputparameters + 3 extra parameters which are used while creating a excel file of that report if needed. "tags":[], "name": "generateExcel", "dataType" : "Boolean", "regex: "value": "true", "displayName": "generateExcel" }, [ Select Table Create Query Advance Query Preview Finalize "tags" : [ ], "name" : "filePath", "dataType" : "String", "regex: Select "value": "displayName" : "filePath" Table Field [ "tags":[ ], "name" : "sheetName", botPerformance ref_no, statusName, startTime, en "dataType" : "String", "regex": ", "value": "" "displayName" : "sheetName" generateExcel field should be true if needed the data in excel file. File Path and sheet name we can pass if wanted to created on the particular file path and sheet name in excel. Outputparameters will be these two : reportData & resPath reportData consists data of that report ---PAGE END--- Bot Details Input Output Generateexcel: true Filepath: Sheetname: OUTPUT: reportData resPath When we attach a report bot, it is actually a node-api bot meaning its code is present in bocommonfunctions.ts of node-api with one extra parameter of reportld while calling that bot. "isSlaMet" : true, "slaId" : null, "escalationId" : null, "isEscalationMet" : true, "islimit" : false, "_id" : 0bjectId("663cc825ea04abfb91c39b6d"), "taskTitle":"BotPerformance", "functionName" : "applyCustomReport", "reportId" : ObjectId("6218a963ced6a56914c4222d"), functionName : applyCustomReport Here, we find the report from dynamicreportqueires collection and creates a query based on the input parameters and find the required data. public async applyCustomReport(input, output, botId, projectId, iterationId) f try{ const self = this; let reportId=input.reportId; if (!reportId) throw "ReportId is not present"; let reportData = await (db.collection('dynamicreportsqueries')).findById(reportId).lean(): if (!reportData) throw "Report is not present in DB."; let collection = reportData.table; let queryString = JSON.parse(reportData.queryString); let fields =reportData.tableReceivedData & reportData['tableReceivedData'l[0] ? reportData['tableRece let matchObj={}; for(let item of fields) { if (input[item['dbName']]&& item['dbName']!= 'orgId') { matchObj[item['dbName']] = input[item['dbName']]; let match={ $match: matchObj O You have Docker installed on your system. Dc queryString.unshift(match); ---PAGE END---