If table (which is source of that report) contains username everyone uses to log on to the application (for example, JATKINS for Joanne), then you could display/hide "Create" link in the query. For example:
select id,
first_name,
family_name,
--
case when username = :APP_USER then 'Create'
else null
end create_link
from the_table
It means that everyone sees the "Create" link only by their own name.
create_link
column's type would be "Link" and you'd set it to navigate to another page, passing the ID (or whichever info you pass).
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…