Package com.microstrategy.web.objects
Interface WebDetailsFormatter
-
- All Known Subinterfaces:
RWDetailsFormatter
public interface WebDetailsFormatter
- Since:
- MicroStrategy Web 9.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
FORMAT_BASE_FILTER_DETAILS_ONLY
static java.lang.String
FORMAT_FILTER_DETAILS_ONLY
static java.lang.String
FORMAT_PROMPT_DETAILS_ONLY
static java.lang.String
FORMAT_TEMPLATE_DETAILS_ONLY
static java.lang.String
FORMAT_VIEW_FILTER_DETAILS_ONLY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setBaseFilterDetailsFormat(java.lang.String format)
Set the format of the base/report filter details that will be generated by I-Server.void
setFilterDetailsFormat(java.lang.String format)
Set the format of the filter details that will be generated by I-Server.void
setPromptDetailsFormat(java.lang.String format)
Set the format of the prompt details that will be generated by I-Server.void
setReportDetailsFormat(java.lang.String format)
Set the format of the report details string that is generated by I-Server.void
setTemplateDetailsFormat(java.lang.String format)
Set the format of the template details that will be generated by I-Server.void
setViewFilterDetailsFormat(java.lang.String format)
Set the format of the base/report filter details that will be generated by I-Server.
-
-
-
Field Detail
-
FORMAT_TEMPLATE_DETAILS_ONLY
static final java.lang.String FORMAT_TEMPLATE_DETAILS_ONLY
- See Also:
- Constant Field Values
-
FORMAT_PROMPT_DETAILS_ONLY
static final java.lang.String FORMAT_PROMPT_DETAILS_ONLY
- See Also:
- Constant Field Values
-
FORMAT_BASE_FILTER_DETAILS_ONLY
static final java.lang.String FORMAT_BASE_FILTER_DETAILS_ONLY
- See Also:
- Constant Field Values
-
FORMAT_VIEW_FILTER_DETAILS_ONLY
static final java.lang.String FORMAT_VIEW_FILTER_DETAILS_ONLY
- See Also:
- Constant Field Values
-
FORMAT_FILTER_DETAILS_ONLY
static final java.lang.String FORMAT_FILTER_DETAILS_ONLY
- See Also:
- Constant Field Values
-
-
Method Detail
-
setReportDetailsFormat
void setReportDetailsFormat(java.lang.String format)
Set the format of the report details string that is generated by I-Server. Example: TDNM=1, FDOR=1, PACS=0, CBC=1- Parameters:
format
-
-
setTemplateDetailsFormat
void setTemplateDetailsFormat(java.lang.String format)
Set the format of the template details that will be generated by I-Server. If just the template details are required, the format should be set toFORMAT_TEMPLATE_DETAILS_ONLY
- Parameters:
format
-
-
setPromptDetailsFormat
void setPromptDetailsFormat(java.lang.String format)
Set the format of the prompt details that will be generated by I-Server. If just the prompt details is required, the format should be set toFORMAT_PROMPT_DETAILS_ONLY
- Parameters:
format
- Format of prompt details string.
-
setBaseFilterDetailsFormat
void setBaseFilterDetailsFormat(java.lang.String format)
Set the format of the base/report filter details that will be generated by I-Server. If just the base/report filter details is required, the format should be set toFORMAT_BASE_FILTER_DETAILS_ONLY
. Alternatively, you could also just setEnumDSSXMLResultFlags.DssXmlResultDtlsFilterExpr
usingWebReportInstance.setResultFlags(int)
- Parameters:
format
-
-
setViewFilterDetailsFormat
void setViewFilterDetailsFormat(java.lang.String format)
Set the format of the base/report filter details that will be generated by I-Server. If just the base/report filter details is required, the format should be set toFORMAT_VIEW_FILTER_DETAILS_ONLY
. Alternatively, you could also just setEnumDSSXMLResultFlags.DssXmlResultDtlsFilterExpr
usingWebReportInstance.setResultFlags(int)
- Parameters:
format
-
-
setFilterDetailsFormat
void setFilterDetailsFormat(java.lang.String format)
Set the format of the filter details that will be generated by I-Server. If just the filter details is required, the format should be set toFORMAT_FILTER_DETAILS_ONLY
- Parameters:
format
- Format of filter details string.
-
-