Hi, I would like to ask if this is correct behavior of the application - I'm creating AOBApplication object in the custom script using PropertyBag but application is created as disabled, while using other approaches object are created correctly. Please look in the test code below
Public Sub CreateAOBApp() Dim a As IEntity = Session.Source.CreateNew(Table.AOBApplication) Dim b As IEntity = Session.Source.CreateNew(Table.AOBApplication) Dim c As AOBApplication = Session.Source.CreateNew(Of AOBApplication)() Dim bag As New PropertyBag() With Table.AOBApplication bag.PutValue(.Ident_AOBApplication, "Application A") bag.PutValue(.Description, "Created by bag property") bag.PutValue(.IsInActive, False) bag.ChangeEntity(Session, a, True) b.PutValue(.Ident_AOBApplication, "Application B") b.PutValue(.Description, "Created by IEntity") b.PutValue(.IsInActive, False) c.Ident_AOBApplication = "Application C" c.Description = "Created by AOBAppliction object" c.IsInActive = False End With a.Save(Session) b.Save(Session) c.Save(Session) End Sub
and result in the Manager
It was tesed on One Identity Manager 8.2.1