Function
EN
Version 4.50
@SetACLMaxINetAccess
ACL
Database
NotesAdmin
NotesSystem
Syntax
@SetACLMaxINetAccess(DBHANDLE1;FNLEVEL2);
Description
Sets the Maximum Internet Access level of the database identified by DBHANDLE DBHANDLE1 to the level FN FNLEVEL2.
FNLEVEL2:
6=Manager
5=Developer
4=Editor
3=Author
2=Depositor
1=Reader
0=No Access
Return:
FN -> Success
@Error -> Error
@ERROR ACL NOT V4 COMPATIBLE @SetACLMaxINetAccess -> If this error occurs, the ACL should be recreated using @GetACL and @SetACL. After that, the flag can be set.
Example: @SetACLMaxINetAccess(DBHANDLE1;FNLEVEL2);
DBHANDLE1:=@OpenDB("TEST.NSF");
FNLEVEL2:=0;
Ret:=@SetACLMaxINetAccess(DBHANDLE1;FNLEVEL2);
DBHANDLE1:=@CloseDB(DBHANDLE1);
The Maximum Internet Access level of the database "TEST.NSF" is set to 0 (No Access).
Note : This text was machine-translated and may contain inaccuracies.
