Package com.microstrategy.webapi
Interface EnumDSSXMLMessageDuplicationMode
- 
public interface EnumDSSXMLMessageDuplicationModeThis interface defines message duplication options such as whether the duplicate should be placed in the inbox/history list or the working set.
- Since:
 - MicroStrategy Web 8.0.2
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static intDSSXMLMessageDuplicateModeAddToInboxDuplicated message is added to the inbox.static intDSSXMLMessageDuplicateModeAsyncExportDuplicate a message for backend exporting.static intDSSXMLMessageDuplicateModeDerivedDuplicate message is copied to inbox iff original message is in the inbox.static intDSSXMLMessageDuplicateModeDoNotAddToInboxDuplicated message is not added to the inbox, only to the working set.static intDSSXMLMessageDuplicateModeLegacyFunctionally, this is equivalent toDSSXMLMessageDuplicateModeDerived. 
 - 
 
- 
- 
Field Detail
- 
DSSXMLMessageDuplicateModeDoNotAddToInbox
static final int DSSXMLMessageDuplicateModeDoNotAddToInbox
Duplicated message is not added to the inbox, only to the working set.- See Also:
 - Constant Field Values
 
 
- 
DSSXMLMessageDuplicateModeDerived
static final int DSSXMLMessageDuplicateModeDerived
Duplicate message is copied to inbox iff original message is in the inbox. This is the default behavior.- See Also:
 - Constant Field Values
 
 
- 
DSSXMLMessageDuplicateModeAddToInbox
static final int DSSXMLMessageDuplicateModeAddToInbox
Duplicated message is added to the inbox.- See Also:
 - Constant Field Values
 
 
- 
DSSXMLMessageDuplicateModeAsyncExport
static final int DSSXMLMessageDuplicateModeAsyncExport
Duplicate a message for backend exporting. IServer does below special handling base on DSSXMLMessageDuplicateModeDoNotAddToInbox mode: 1) pass shallow copy of JSON data generated by Export Engine to the new message; 2) skip view data duplicating;- See Also:
 - Constant Field Values
 
 
- 
DSSXMLMessageDuplicateModeLegacy
static final int DSSXMLMessageDuplicateModeLegacy
Functionally, this is equivalent toDSSXMLMessageDuplicateModeDerived. These modes determine the command XML structure sent to the I-Server: legacy mode will NOT submit the "duopt" attribute, whereas the other modes will include the attribute. The "duopt" attribute instructs the I-Server to utilize its new duplication routine, while omitting it (as indicated by this legacy flag) will cause the I-Server to utilize an older routine. This setting is only required if the (older) IServer has problems with the new "duopt" attribute.- See Also:
 - Constant Field Values
 
 
 - 
 
 -