Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Copy group permission on fields

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hello everybody,

I work with ARS 4.02
I've a group1 (ID=10007) and I want to give exactly the same right to a group2 (ID=10066)
I've tried to do this query

"
INSERT INTO FIELD_PERMISSIONS
(SCHEMAID, FIELDID, GROUPID, PERMISSION)
SELECT
SCHEMAID, FIELDID, 10066, PERMISSION
FROM FIELD_PERMISSIONS
WHERE GROUPID=10007
)

But the changes don't appears to the administrators screen.

Does somebody know a method to do this ?

Thanks for your help.

Raphaël AMIRI
 
Why dont you just use the USer tool and enter into the group form?
 
I think you have your group ID's backwards in the select statement part. You don't want to select where GROUPID=10007, you want to select where GROUPID=10066.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top