Group: StrataFrame Users
Posts: 93,
Visits: 236
|
Hmm. but when I add second parameter.. I not able to save the data because an error happen
"An error occurred while saving the data to the server."
[code]
Dim loSFSUserBO As MicroFour.StrataFrame.Security.BusinessObjects.SFSUsersBO = New MicroFour.StrataFrame.Security.BusinessObjects.SFSUsersBO()
If llNewUser Then
loSFSUserBO.Add()
Else
loSFSUserBO.FillByPrimaryKey(pmks_SFSUserId)
End If
Try
BusinessLayer.TransactionBegin("PENSOLUTIONOFFICE", Data.IsolationLevel.ReadCommitted)
mmks_UpdateSFSUsers(loSFSUserBO)
lSaveResult = loSFSUserBO.Save(True, "PENSOLUTIONOFFICE")
[code]
IsDirty = true here.. and on Save line I have an exception..
|