The following procedure is appropriate if a prior version of the Global Collaboration Framework is installed, you have not customized the GCF VBScript code, and you want to update the existing code to work with GCF 2012. If you have already customized the GCF VBScript code and you want to integrate your custom code with the GCF 2012 VBScript code, see Integrating custom GCF script with GCF 2012.
Notes
To update the existing VBScript code of a vault, read what to change below and modify your custom script accordingly:
GCFCallRemote
GCFInitiateTransfer
GCFCallRemote
MergeDelimitedStrings
GCFInitiateTransfer
GCFClearTransit
GCFDocumentStatus
GCFDocumentWpID
SetModifiedBy
GCFGetLog
GCFSetLog
SetLock
SetLockRemote
Replace the following line:
Set objGCFSupport = AMCreateObject("BlueCieloECM.GcfSupport")
with:
Set objGCFSupport = AMCreateObject("BlueCieloECM.GcfSupport", False)
Add the following new line before the line that reads Set to Nothing:
objGCFSupport.Dispose
Old line:
objGCFSupport.CallRemote3
New line:
objGCFSupport.CallRemote
Old line:
objGCFSupport.ClearInTransitMain(GlobalIDs, RemoteShare, bInWA)
New line:
objGCFSupport.ClearInTransit(GlobalIDs, RemoteShare)
Function SetLockRemote(LockID, Comment)
Dim objGCFSupport
Set objGCFSupport = AMCreateObject("BlueCieloECM.GcfSupport", False)
SetLockRemote = objGCFSupport.SetLockIDRemote(Document.ID, LockID, Comment)
objGCFSupport.Dispose
Set objGCFSupport = Nothing
End Function
Related concepts
Related tasks
Integrating custom GCF script with GCF 2012
Understanding common conflicts
Suppressing custom code during GCF operations
Hiding the Collaboration property page