|
|
|
|
|
BlueCielo TeamWork 2012 Release Notes | BlueCielo ECM Solutions
|
New in AM2003b: Programming and Customization
New functionality
- It is now possible to hide the "Skip wizard"
check box for batch imports. This will force users to fill in the document
property wizard for each new document. This VB Script code demonstrates
how to prevent the "Skip wizard" check box from being shown.
Sub DocGenericEvent_InitializeNewDocument(Batch, Action)
'Add your code here
If Action = AS_IT_IMPORTED Then
Client.Confirmation(AS_CONFIRM_ALLOW_SKIPWIZARD) = False
End If
End Sub
- The User object in VB Script has been extended
to include an Initials property. This property is also available from
VB Extension on the IASUser interface. Users can
edit their own Initials from the PowerUser.
Fixed and improved issues
- The condition "If New Document" did
not work in WebAccess.
- It was not possible to use a SYNCVERSIONED property
on a wizard page in WebAccess.
- The function Document.IsUniqueValue
only checked within the current Work Area context. This is now corrected
in that it checks within the entire vault.
- The UI Extension Designer now displays a warning
before opening a designer project in Visual Basic that was created with
an older version, thus preventing inadvertent upgrading of these projects.
- The "Sort on" property of Reports was
ignored. This is now fixed.
- The Work Area event AfterAssign
did not work in WebAccess. This is now fixed.
- The methods UserHasPrivilege
and IsPrivilegeGrantedToUser of IAMRoleBasedSecuredObject3
did not check username correct, and would only return valid results for
the current user.
- Due to the implementation change in the Viewer
control in AutoManager 2003a the IFlags parameter
of the PrintCompleted event was incorrect. This
is now corrected and is the same as previous versions.