The list of example Localisation Set queries can be interpreted using the following legend:
Legend
Description
Primary Table Alias
The alias for the gen.localisation_set table in the query
Include References
Include (true) or exclude (false) all lookup table joins in the query
Include Permissions
Include (true) or exclude (false) the permission table join in the query to enforce or skip row-level security based on the permissions for the user
Query 1
Primary Table Alias
Include References
Include Permissions
_ls
False
False
SELECT
_ls.created_by_user_id AS "CreatedByUserId",
_ls.created_on AS "CreatedOn",
_ls.modified_by_user_id AS "ModifiedByUserId",
_ls.modified_on AS "ModifiedOn",
_ls.version AS "Version",
_ls.localisation_set_id AS "Id",
_ls.description AS "Description",
_ls.is_system AS "IsSystem",
_ls.name AS "Name",
_ls.notes AS "Notes",
_ls.type AS "Type"
FROM
gen.localisation_set _ls
Query 2
Primary Table Alias
Include References
Include Permissions
_ls
True
False
SELECT
_u.user_id AS "CreatedByUserId",
_u.code AS "CreatedByUserCode",
_u.full_name AS "CreatedByUserFullName",
_ls.created_on AS "CreatedOn",
_u1.user_id AS "ModifiedByUserId",
_u1.code AS "ModifiedByUserCode",
_u1.full_name AS "ModifiedByUserFullName",
_ls.modified_on AS "ModifiedOn",
_ls.version AS "Version",
_ls.localisation_set_id AS "Id",
_ls.description AS "Description",
_ls.is_system AS "IsSystem",
_ls.name AS "Name",
_ls.notes AS "Notes",
_ls.type AS "Type"
FROM
gen.localisation_set _ls
JOIN uam.user _u ON _ls.created_by_user_id = _u.user_id
JOIN uam.user _u1 ON _ls.modified_by_user_id = _u1.user_id