Reference qualifier for case created by logged in user

Deepika Mishra
Mega Guru

Hi,

I have an requirement of displaying on those cases which are created by logged in user in my record producer.

Please help me as the below thing is not working:

javascript:'active=true^sys_created_by='+gs.getUserID()+'^EQ'

1 ACCEPTED SOLUTION

Try now

 

javascript:'active=true^sys_created_by='+gs.getUserName()+'^EQ'

 

View solution in original post

11 REPLIES 11

find_real_file.png

check the "display" field has set true on which column. might be it has set true on short description field thats why its showing you, changes it to number will show the number. 

Note: Consider, the changes on "Display' field on table column will make the global changes.

Yes got it. Thanks 🙂

 

Is there a way showing both case number and short description without changing the display value in the case table ?

Community Alums
Not applicable

try with 

javascript:'active=true^sys_created_by='+gs.getUserID()

or 

active=true^sys_created_by=gs.getUserID()