Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
/* quick script that can look at a template and a spawned child for See,See Contents*/
/*ACLType=1 Owner,2 Group,3 PA,4 S,0 Below the ACL*/
/*/OTCS/llisapi.dll?func=doc.permHead&objID=2118877&nextURL=%2FOTCS%2Fllisapi%2Edll%3Ffunc%3Dll%26objId%3D2118877%26objAction%3Dbrowse%26viewType%3D1*/
/*/OTCS/llisapi.dll?func=doc.permHead&objID=20462573&nextURL=%2FOTCS%2Fllisapi%2Edll%3Ffunc%3Dll%26objId%3D2118877%26objAction%3Dbrowse%26viewType%3D1*/
select
FLOOR(DTreeACL.Permissions/POWER(2,1))%2 'SEE',
FLOOR(DTreeACL.Permissions/POWER(2,15))%2 'SEE CONTENTS',
FLOOR(DTreeACL.Permissions/POWER(2,16))%2 'Modify',
FLOOR(DTreeACL.Permissions/POWER(2,17))%2 'Edit Attributes',
FLOOR(DTreeACL.Permissions/POWER(2,2))%2 'Add Items',
FLOOR(DTreeACL.Permissions/POWER(2,13))%2 'Reserve',
FLOOR(DTreeACL.Permissions/POWER(2,14))%2 'Delete Versions',
FLOOR(DTreeACL.Permissions/POWER(2,3))%2 'Delete',
* from DTreeACL where DataID in (20462573,2118877) /*573 is the template 877 is a object spawned from it*/
and ACLType=2 /* we are comparing Group Position*/