Skip to content

ddCreateAnalyticsReportFromTestCycleClipboards (Array Creation & Manipulation)

Compatible with:
  • Purpose
  • This command is similar to ddCreateDataFileFromTestCycleClipboards command which creates consolidated Data File within the TestCycleIdentifier in the form of an excel sheet. The user can access the generated excel sheets in the Analytics Module under Quality branch.

    This aggregates the data at a Run Definition level and by Data Definition across multiple runs (of the same Run Definition) within the Test Cycle.

    If you are looking for the report specific to Run Definition and Data Definition, you may need to pass these values in the JSON Object and the report is created accordingly. 
  • Syntax
  • ddCreateAnalyticsReportFromTestCycleClipboards(testCycleIdentifier, JSON Object)
  • Target
  • testCycleIdentifier
  • Value
  • JSON Object (Optional)
  • Return Value
  • NA
    • Below is the JSON Object that has to be provided in the Value field:
    • {
        "consolidatedOutputType": "R",
        "dataConsolidationOptionTypeCode": "02",
        "reportOutputCompilationTypeCode": "02",

        "runDefinitions": [{
          "name": "YOUR_RUNDEFINITION_NAME",
          "status": "YOUR_RUNDEFINITION_STATUS"
        }, {
          "name": "YOUR_RUNDEFINITION_NAME1",
          "status": "YOUR_RUNDEFINITION_STATUS1"
        }],
        "dataDefinitions": [{
          "name": "YOUR_DATADEFINITION_NAME",
          "status": "YOUR_DATADEFINITION_STATUS",
          "worksheetOrderWithinWorkbook": 1,
          "worksheetName": "<shortName>"
        }, {
          "name": "YOUR_DATADEFINITION_NAME1",
          "status": "YOUR_DATADEFINITION_STATUS1",
          "worksheetOrderWithinWorkbook": 2,
          "worksheetName": "<shortName>"
        }],

        "refresh": true
      }
    • Please refer the article for more information regarding Mandatory and Optional parameters in the JSON Object.

 

Feedback and Knowledge Base