com.microstrategy.web.objects.WebResultSetManipulation |
![]() |
The manipulation interface allows the user to apply a set of manipulations to a report
instance. This interface is obtained from, and connected to, a WebResultSetInstance
object.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract boolean |
getAcceptPartialResults()
Returns whether allowing accept partial results.
| ||||||||||
abstract String |
getDeltaXML()
Returns the delta XML which would be sent to the Intelligence Server upon calling applyChanges().
| ||||||||||
abstract boolean |
isInstanceModified()
This method will return whether the submission of the changes to the report instance so far will cause a
new report instance to be created.
| ||||||||||
abstract boolean |
requiresNewInstance()
Determines whether the changes made to the filter and template of this report will
cause a new report instance (and thus, a reexecution of SQL).
| ||||||||||
abstract void |
setAcceptPartialResults(boolean acceptPartialResults)
Sets whether allowing accept partial results.
|
Returns whether allowing accept partial results. This flag determines whether to allow the Intelligence Server to return partial results to a manipulated report in order to avoid a SQL execution.
Returns the delta XML which would be sent to the Intelligence Server upon calling applyChanges(). This XML will be derived from the changes made to the template and filters of the owner report instance.
WebObjectsException | Signals that the delta XML could not be determined. |
---|
This method will return whether the submission of the changes to the report instance so far will cause a new report instance to be created. Note that this method will NOT cause the actual execution of the changes made to the report instance. This method will also update the manipulation type and validation level properties with more information on the type of change that the operation would cause.
WebObjectsException | Thrown if the server could not be contacted or another fatal error occurs. |
---|
Determines whether the changes made to the filter and template of this report will cause a new report instance (and thus, a reexecution of SQL).
WebObjectsException | Signals an error when contacting the Intelligence Server. |
---|
Sets whether allowing accept partial results. This flag determines whether to allow the Intelligence Server to return partial results to a manipulated report in order to avoid a SQL execution.
acceptPartialResults | The new value for the acceptPartialResults flag. |
---|