There are two Database 'DB1' and 'DB2' in a Interwoven WorkSite Server 'Test'
I am trying to retrieve Destination object when user right clicks on Shortcut Folder in Favourites which points to DB2 -> WorkSpace1 -> Folder 1
Using IcontexItems I am trying to retrieve Destination object, which gives wrong object ID as !nrtdms:0:!session:TEST:!database

B1:!ShortcutFolder:2:
Actually object ID value should be as !nrtdms:0:!session:TEST:!database

B2:!ShortcutFolder:2:
Private mContext As IMANEXTLib.IContextItems
In procedure ICommand_Execute(), I am retrieving selected Destination object using following code, but retrieved Destination.objectID is wrong.
Dim ObjDestination As IManObject
Set ObjDestination = mContext("iManDestinationObject")
Debug.Print ObjDestination.ObjectID
Note: But Destination object returned is correct when try to retrieve My Favorites - WorkSpace Shortcut - Folder.
Please let me know if there is anything else I have to take care while retrieving Destination object when user right clicks on My Favorites -ShortcutFolders.