Creating PPQs > PPQ syntax > Update

Update
Use the update attribute in the <s-dbs> element to specify that documents can be processed by several parallel applications. For example, when using different delivery channels.
all
This is also the default behavior if the update attribute is not used.
Documents are reserved during processing, but can be processed by other applications that use update=none. Document status during processing is processing and after processing processed.
none
Example 4
Lock documents while processing.
<?xml version="1.0" encoding="utf-8"?>
<s-dbs action="process" update=”all”>
    <database>
          <docset sel="all"/>
    </database>
</s-dbs>
 
Example 5
Process all documents, even if they are locked.
<?xml version="1.0" encoding="utf-8"?>
<s-dbs action="process" update=”none”>
    <database>
          <docset sel="all"/>
    </database>
</s-dbs>
 
OpenText StreamServe 5.6 Updated: 2013-03-01