I have a table called Events. Users can edit events only by being granted permissions based on another table that specifies their ID and the event ID. I added the events table to my ASPRunner application and then customized the SQL with an inner join on the permissions table. In this way, I got a list of all events with an added field of user ID. I need to use the advanced security feature in ASPRunner to limit the list of events users can view to edit; however, when I go to select the OwnerID field in the advanced security dialog, I only see the original fields from the table even though the user ID field is in the view, etc.
I am using an MS SQL database so creating a view creates problems in not letting me edit the data. Any suggestions?