|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Commands Reference > Revisions > IsRecursiveCheckinApproveOperation |
available from build: 20160609 |
The command returns 0/1 depending on batch operation currently running in the PDM.
It also returns the info if a document is a top-level document in the checkin/approve stack.
call DBWShell("IsRecursiveCheckinApproveOperation")
...
call DBWShell("IsRecursiveCheckinApproveOperation")
if (okDBW = False) then exit sub
isRecursiveCheckinApproveOperation = DBWResult("@IS_RECURSIVE_CHECKIN_APPROVE_OPERATION")
isTopLevel = DBWResult("@IS_RECURSIVE_CHECKIN_APPROVE_OPERATION_TOP_LEVEL_DOC")
...