CreateRevisionOutput

<< Click to Display Table of Contents >>

Navigation:  Programming Mechworks PDM > DBWCommandShell > Commands Reference > Revisions >

CreateRevisionOutput

Description

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.

Syntax

call DBWShell("CreateRevisionOutput UniqueID")

Parameters

UniqueID

It is the unique id of the document to create revision output of.

Example

...

DBWShell("GetActiveDocUniqueId")
docUID = DBWResult("@DOCUMENT_UNIQUE_ID")
DBWShell("CreateRevisionOutput " & docUID)
...