Forum Discussion

mvalerio24's avatar
mvalerio24
New Contributor III
2 years ago

Updating Scenario Security in a Business Rule

I need to update the security on a scenario using a dashboard button, is this possible through a dashboard extender rule? Essentially a meeting will take place and certain scenarios will need to be l...
  • sudarshan's avatar
    2 years ago

    This is possible to do via a dashboard extender. Here's a sample,

    'Pull the member info object of the scenario you are looking for
    Dim objMemberInfo As MemberInfo = BRApi.Finance.Members.GetMemberInfo(si, DimType.Scenario.Id, "Budget", True)
     
    Dim scenarioProperties As ScenarioVMProperties = objMemberInfo.GetScenarioProperties()
     
    Dim objGroupInfo As GroupInfo = BRApi.Security.Admin.GetGroup(si, "Administrators")
     
    scenarioProperties.ManageDataGroup.SetStoredValue(objGroupInfo.Group.UniqueID)
     
    'Create new member object
    Dim objMember As New Member(objMemberInfo.Member.MemberPk, objMemberInfo.Member.Name, objMemberInfo.Member.Description, objMemberInfo.Member.DimId)
    objMemberInfo.Member = objMember
     
    'Update the properites and save it
    Dim memberPk As MemberPK = BRApi.Finance.MemberAdmin.SaveMemberInfo(si, objMemberInfo, True, True, False, False)

     

    Thanks,

    Sudarshan