How do I create a "user" security attribute, to be used by data filtration policies, so that it can filter data for specific system to system service accounts?Issue The use case is a need to create a custom Security Attribute that can be used to create conditions on ACLs or Data Filters, based on the User table (sys_user). Specifically, the security attribute would be a lookup to the user table that would allow someone to create a data filtration policy for a particular user. How can this be done?ReleaseAllCauseNeed to create a "user" security attribute, to be used by data filtration policies, so that it can filter data for specific system to system service accounts.ResolutionCreate a Security Attribute with the following values: Label: userBylIdName: userByIdType: stringIs dynamic: trueLookup Table: User(sys_user)Lookup Table Column: NameScript: answer = gs.getUserID(); answer; 2. Create an ACL and in the Security Attribute Condition, specify name of the Security Attribute just created and the user it applies to.