S
stuartb113 via AccessMonster.com
For an ADP file, I have created a form whose record source is a stored proc.
i.e.
CREATE PROCEDURE up_Instrument_list
AS
Select * from dbo.Instrument
GO
The forms should be updatable to a specific role (Trader) and read only to
another.
EXECUTE rights have been assigned to the stored proc for both roles and
UPDATE rights have been applied to the underlying table (dbo.instrument) to
just the Trader role.
The issue is, I also have to assign SELECT rights on dbo.instrument to the
Trader role for the recordset to be updatable - otherwise form's recordset
remains readonly.
Could someone please explain...
I'd hoped to utilise Access and stored proc's to allow the users to update
data but prevent them from having direct select access to the tables.
thanks in advance,
Stuart
i.e.
CREATE PROCEDURE up_Instrument_list
AS
Select * from dbo.Instrument
GO
The forms should be updatable to a specific role (Trader) and read only to
another.
EXECUTE rights have been assigned to the stored proc for both roles and
UPDATE rights have been applied to the underlying table (dbo.instrument) to
just the Trader role.
The issue is, I also have to assign SELECT rights on dbo.instrument to the
Trader role for the recordset to be updatable - otherwise form's recordset
remains readonly.
Could someone please explain...
I'd hoped to utilise Access and stored proc's to allow the users to update
data but prevent them from having direct select access to the tables.
thanks in advance,
Stuart