StrataFrame Forum
Back
Login
Login
Home
»
StrataFrame Application Framework - V1
»
Role Based Security
»
Filling a BO by a permission key
Filling a BO by a permission key
Post Reply
Like
0
Filling a BO by a permission key
View
Flat Ascending
Flat Descending
Threaded
Options
Subscribe to topic
Print This Topic
RSS Feed
Goto Topics Forum
Author
Message
rmoore
rmoore
posted 17 Years Ago
ANSWER
Topic Details
Share Topic
Group: Forum Members
Posts: 21,
Visits: 84
I have two business objects, LocationsBO and CreditMemosBO. I fill the LocationsBO by a permission key. If the permission is deny I remove the row from the current datatable. Once this LocationsBO is filled, I have all the locations a user has access to. What I want to do is to be able to fill the CreditMemosBO by the LocationIDs that are in the LocationsBO (CreditMemosBO has a foreign key LocationID). I was thinking of using this:
For Each LocationRow As DataRow In loLocations.CurrentDataTable.Rows
For Each CMrow As DataRow In Me.CurrentDataTable.Rows
If SecurityBasics.CurrentUser.GetPermission(LocationRow("RBSPermissionKey").ToString).Action = PermissionAction.Deny Then
If LocationRow("LocationID").Equals(CMrow("LocationID")) Then
MessageBox.Show("removing " & LocationRow("LocationName").ToString)
CMrow.Delete()
End If
End If
Next
Next
but it doesn't work. Is there a better way of filling a second BO based on permissions of a different BO? I could put a permission key in the CreditMemosBO but I don't want the extra overhead of inserting a permission key when a record is added.
Reply
Like
0
GO
Merge Selected
Merge into selected topic...
Merge into merge target...
Merge into a specific topic ID...
Open Merge
Threaded View
Threaded View
Filling a BO by a permission key
rmoore
-
17 Years Ago
Well I am a little confused as to what you are trying to...
Trent L. Taylor
-
17 Years Ago
Ok. That makes more sense to me now. Thanks for the info!
rmoore
-
17 Years Ago
Glad to help :)
Trent L. Taylor
-
17 Years Ago
Post Reply
Like
0
Similar Topics
Post Quoted Reply
Reading This Topic
Login
Login
Remember Me
Reset Password
Resend Validation Email
Login
Explore
Messages
Mentions
Search