Package com.microstrategy.web.objects.rw
Interface RWDataSetDetails
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDatasetId()
Return the dataset ID for the dataset Use this method to get the dataset ID rather thanRWDetails.getId()
, becauseRWDetails.getId()
in the parent will always to get objectId fromWebMessage
.java.lang.String
getFilterDetails()
Return the filter details for the datasetjava.lang.String
getPromptDetails()
Return the prompt details for the datasetjava.lang.String
getReportDetails()
Returns the report details for the dataset.java.lang.String
getReportFilterDetails()
Return the report filter details for the datasetint
getReportType()
Return the report type.java.lang.String
getSQL()
Return the SQL for the datasetjava.lang.String
getTemplateDetails()
Return the template details for the datasetint
getTotalColumns()
Return the total number of columnsint
getTotalRows()
Return the total number of rowsjava.lang.String
getViewFilterDetails()
Return the view filter details for the dataset-
Methods inherited from interface com.microstrategy.web.objects.rw.RWDetails
getDescription, getId, getJobId, getMessageCreationTime, getMessageFinishTime, getMessageId, getMessageModificationTime, getMessageStartTime, getMessageStatus, getModifiedTime, getName, getObjectName, getOwner, getParentFolder, getProjectName, getRequestStatus, getServerName
-
-
-
-
Method Detail
-
getDatasetId
java.lang.String getDatasetId()
Return the dataset ID for the dataset Use this method to get the dataset ID rather thanRWDetails.getId()
, becauseRWDetails.getId()
in the parent will always to get objectId fromWebMessage
. When the dataset is in the document and the execution of document hits cache, no message is created andRWDetails.getId()
returns null.- Returns:
- dataset ID
-
getSQL
java.lang.String getSQL()
Return the SQL for the dataset
-
getTotalRows
int getTotalRows()
Return the total number of rows
-
getTotalColumns
int getTotalColumns()
Return the total number of columns
-
getReportType
int getReportType()
Return the report type. value fromEnumDSSXMLReportTypes
-
getReportDetails
java.lang.String getReportDetails()
Returns the report details for the dataset.
-
getReportFilterDetails
java.lang.String getReportFilterDetails()
Return the report filter details for the dataset
-
getViewFilterDetails
java.lang.String getViewFilterDetails()
Return the view filter details for the dataset
-
getTemplateDetails
java.lang.String getTemplateDetails()
Return the template details for the dataset
-
getPromptDetails
java.lang.String getPromptDetails()
Return the prompt details for the dataset
-
getFilterDetails
java.lang.String getFilterDetails()
Return the filter details for the dataset
-
-