|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Commands Reference > Revisions > CreateRevisionOutput |
Generate files specified in options Revisions→Output related to the passed unique_id document.
It's a way to force the output creation/elaboration outside the revision process. In facts the outputs are usually created during checkin or release (or both) process.
call DBWShell("CreateRevisionOutput UniqueID")
UniqueID |
It is the unique id of the document to create revision output of. |
...
DBWShell("GetActiveDocUniqueId")
docUID = DBWResult("@DOCUMENT_UNIQUE_ID")
DBWShell("CreateRevisionOutput " & docUID)
...