Package com.microstrategy.web.objects
Interface EnumWebReportExecutionModes
-
public interface EnumWebReportExecutionModesThis interface lists constants that should be used to define how a report instance should be executed- Since:
- MicroStrategy Web 8.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static intREPORT_MODE_CSVDeprecated.replaced byREPORT_MODE_PLAIN_TEXTstatic intREPORT_MODE_DEFAULTIndicates the default.static intREPORT_MODE_EXCELIndicates that the user intends to view the results of the report in formatted Excel.static intREPORT_MODE_FLASHIndicates that the user intends to view the results of the report in flash.static intREPORT_MODE_PDFIndicates that the user intends to view the results of the report in PDFstatic intREPORT_MODE_PLAIN_TEXTIndicates that the user intends to view the results of the report in plain-text.
-
-
-
Field Detail
-
REPORT_MODE_DEFAULT
static final int REPORT_MODE_DEFAULT
Indicates the default. This is the value used if some other is not explicitly set on the instance- See Also:
- Constant Field Values
-
REPORT_MODE_PDF
static final int REPORT_MODE_PDF
Indicates that the user intends to view the results of the report in PDF- See Also:
- Constant Field Values
-
REPORT_MODE_EXCEL
static final int REPORT_MODE_EXCEL
Indicates that the user intends to view the results of the report in formatted Excel. This is used in conjunction withWebReportInstance.getExcelBinaryData().NOTE: The behavior of this mode has changed. Previously, in 8.0.0 this would return Excel plain-text (
WebReportInstance.getExcelData()), which is the same asREPORT_MODE_CSV.- See Also:
- Constant Field Values
-
REPORT_MODE_CSV
static final int REPORT_MODE_CSV
Deprecated.replaced byREPORT_MODE_PLAIN_TEXTIndicates that the user intends to view the results of the report in CSV format.- See Also:
- Constant Field Values
-
REPORT_MODE_PLAIN_TEXT
static final int REPORT_MODE_PLAIN_TEXT
Indicates that the user intends to view the results of the report in plain-text. The separator, prefixes, and suffixes may be customized via ((WebReportPlainTextExportSettings)WebReportInstance.getExportSettings()). By default, plain-text is comma separated.- See Also:
- Constant Field Values
-
REPORT_MODE_FLASH
static final int REPORT_MODE_FLASH
Indicates that the user intends to view the results of the report in flash. Note: the file format used would be MHT- See Also:
- Constant Field Values
-
-