Hi
I would like to use the SDK to add workspace shortcuts to 'My Matters' for staff at our firm.
My planned application runs on a server so I connect to worksite with an admin account.
Using the SDK I can add them to the 'My Matters' of the logged in account, but I've been unable to add them to another user's 'My Matters'.
Is it possible to set a reference to a specific user's WorkArea or SubscriptionFolder if you are not logged in as that user?
A code snippet follows that shows how I'm trying to do it in vb.net
Many thanks
Antony
---------------------------------------
myMatters = user.PreferredDatabase.Session.WorkArea.SubscriptionFolder.SubFolders (user is an IManage.IManUser) <-- no error, but uses logged in user's WorkArea
'myMatters = session.WorkArea.SubscriptionFolder.SubFolders <-- works, but creates shortcut in logged in user's WorkArea
myMattersCategory = myMatters.AddNewSubscriptionFolderInheriting("New Cat", "NewCat Desc")
shortcuts = myMattersCategory.SubFolders
shortcuts.AddNewWorkspaceShortcutInheriting(workspace)