axaptax++security-policy

Security policy for the special field value and empty value


I have created a query in AOT. This query is used for security policy. the security policy is about restricting each user in the purchase order form to see just purchase pools which are defined for him. He should see purchase records which purchase pools are empty as well. Assume I have a table (mapping) which maps the users to the purchase pools. Mapping table have two fields UserId and PurchpoolId.

As you know Security policy object accept query. My query applies inner join on PurchPool table and mapping table with the range of the current user. the purch table is added under constraint tables under the security policy. The first part of security policy i.e., restricting user from accessing purchase orders which Pools are not defined for him is performed correctly. But the second part i.e., user can access purchase order which any Pool is not defined is remaining unsolved.

How can I create security policy with a query considering records with user defined Pools and also empty Purchase Pools ?


Solution

  • This sounds like something I've worked on before. It requires some twisted thinking. You'll need to use two not-exists joins.

    Both your query and your policy will need to be set to use not-exist joins. That way you are returning invalid values from your query and restricting those invalid values via your policy. This allows for blanks/default values to be included in your valid data set.

    Here's a sample query we used for Business unit:

    sample query structure sample query join

    And here's the policy:

    enter image description here