Hi,
I am trying to get the Know Rights for a report object without any success. Everytime my code hits this method it throws an exception
An XSD Exception occurred. The kind 'Note' does not exist in the CMS. (FWM 04030) (WBP 42029)
I am stuck with this problem for past two days and am not able to figure out any solution
Can anyone please help me in this issue?
Public Function GetObjectRights(ByVal CUID As String) As RightInfo() Try Dim m_BiPlatform As BusinessObjects.DSWS.BIPlatform.BIPlatform Dim urls() As String = _Session.GetAssociatedServicesURL("BIPlatform") m_BiPlatform = BusinessObjects.DSWS.BIPlatform.BIPlatform.GetInstance(_Session, urls(0)) Dim _RightInfo() As RightInfo = m_BiPlatform.GetKnownRights(CUID) Return _RightInfo Catch ex As DSWSException End Try End Function
Thanks,