Advanced Techniques - Permission based data access

This workshops shows you how data records can be shown based on permissions. Sound Intrexx and SQL skills are a requirement. Make sure the expert options have been activated so that all of the dialogs explained in this example are available. United assumes no liability and does not provide support for errors caused by incorrect implementation.

A common method to implement access authorization for individual records is to add an text data field to the data group, which contain the records that access should be restricted to, and to then assign user objects to this field using a distribution control. In a view table within an application, a filter is then be defined, which compares the currently logged-in user with the user objects saved in the text data field and checks whether this user is allowed to read the record. This type of filtering achieves the desired result for this use case, but it is not recommended in terms of performance. Especially in portals with a large number of users and groups, this may lead to very long loading times among others. Performance can be improved by carrying out a comparison with values in child data groups. In this cause, authorized user objects are saved in a child data group and assigned via a foreign key filter with a subselect.



The multiple selection element can be used on any edit page in the data group that access permissions should be defined for. Select the option "Users and groups" on the Data source tab in the properties of the element.



On the Save options tab, select the option "Data group". By clicking on "Create new child data group", a new subordinate data group will be created. This data group is automatically named "Values of distribution list control". Three data fields are also created automatically: Now, the filter XML of the desired view table needs to be modified.



Switch to the page that contains the table to be filtered and open the properties of the table. On the Data tab, click on "Filter" and then on "Edit filter in expert mode".
<filter guid="EFC6F080E119E0D3AD5B8C9E0458EDE8054AFA0A">
   <exp op="" type="in">
      <arg content="GUID_1" type="fieldguid"/>
      <arg type="statement">
         <select content="GUID_2" type="tableguid">
            <field content="GUID_3" type="fieldguid"/>
            <conc op="and">
               <exp op="" type="in">
                  <arg content="GUID_4" type="fieldguid"/>
                  <arg content="orgstruct" type="userattribute"/>
               </exp>
            </conc>
         </select>
      </arg>
   </exp>
</filter>
When you open the editor, a <filter> element is already defined. Keep this and remove the close symbol / at the end of the element. The insert the remaining script above without the first line. Replace the following values: After saving the application, you can test the application in the browser by creating different records with different users and then logging in to the portal accordingly.