Can I apply the Linkkey feature for logged in users as well?

Hi, sorry for the late respone but I haven’t had the time to try it this week.

Partially good news: I got it to work by using the following code:

def GET_ANCHOR(ref):
  """
  ref: a <class 'table.Table.__init__.<locals>.Record'> object
   typically returned by Table.lookupOne or contained in a Reference column
  """
  return f"{SELF_HYPERLINK(label=$UUID,page='data')}#a1.s2.r{ref.id}.c1"
ref = Inventarliste.lookupOne(UUID=$UUID)
GET_ANCHOR(ref)

This solution is basically taken from here: Anchor link for every record
It is not perfect (because one can of course see the other items when logged in so that you might switch the row and confuse items), but I would be satisfied with that.

Regarding your second suggestion, I am not sure how I would do it - and also if that’s what I wanted. I would still be interested in the implementation of that, maybe it will help someone else or myself in the future.