Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
SOLVED

Need help to Add name of person who made the last update

Avatar

Level 3

I created a custom view with a column for the last update and date on a task. I also want to include the name of the person who made the last comment. Thank you!

 

column.14.displayname=Task Last Note and Date
column.14.sharecol=true
column.14.textmode=true
column.14.usewidths=true
column.14.value=</b></font><hr><font color=000000><b> </b></font>
column.14.valueformat=HTML
column.14.width=150
column.15.linkedname=lastNote
column.15.namekey=view.relatedcolumn
column.15.namekeyargkey.0=lastNote
column.15.namekeyargkey.1=entryDate
column.15.querysort=lastNote:entryDate
column.15.sharecol=true
column.15.textmode=true
column.15.usewidths=true
column.15.valuefield=lastNote:entryDate
column.15.valueformat=atDate
column.15.width=150
column.16.sharecol=true
column.16.textmode=true
column.16.usewidths=true
column.16.value=</b></font><hr><font color=000000><b> </b></font>
column.16.valueformat=HTML
column.16.width=150
column.17.displayname=
column.17.linkedname=lastNote
column.17.namekey=view.relatedcolumn
column.17.namekeyargkey.0=lastNote
column.17.namekeyargkey.1=noteText
column.17.querysort=lastNote:noteText
column.17.textmode=true
column.17.usewidths=true
column.17.valuefield=lastNote:noteText
column.17.valueformat=HTML
column.17.width=150

 

Screenshot 2025-01-22 124859.png

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Employee

Hi @IsaDi

 

Thank you for your question! To include the name of the person who made the last comment in your task custom view, you need to retrieve the lastNote:owner:name field. Try this: 

 

column.14.displayname=Task Last Note and Date
column.14.sharecol=true
column.14.textmode=true
column.14.usewidths=true
column.14.value=</b></font><hr><font color=000000><b> </b></font>
column.14.valueformat=HTML
column.14.width=150

column.15.linkedname=lastNote
column.15.namekey=view.relatedcolumn
column.15.namekeyargkey.0=lastNote
column.15.namekeyargkey.1=entryDate
column.15.querysort=lastNote:entryDate
column.15.sharecol=true
column.15.textmode=true
column.15.usewidths=true
column.15.valuefield=lastNote:entryDate
column.15.valueformat=atDate
column.15.width=150

column.16.sharecol=true
column.16.textmode=true
column.16.usewidths=true
column.16.value=</b></font><hr><font color=000000><b> </b></font>
column.16.valueformat=HTML
column.16.width=150

column.17.displayname=Last Comment
column.17.linkedname=lastNote
column.17.namekey=view.relatedcolumn
column.17.namekeyargkey.0=lastNote
column.17.namekeyargkey.1=noteText
column.17.querysort=lastNote:noteText
column.17.textmode=true
column.17.usewidths=true
column.17.valuefield=lastNote:noteText
column.17.valueformat=HTML
column.17.width=250

column.18.displayname=Last Comment By
column.18.linkedname=lastNote
column.18.namekey=view.relatedcolumn
column.18.namekeyargkey.0=lastNote
column.18.namekeyargkey.1=owner:name
column.18.querysort=lastNote:owner:name
column.18.textmode=true
column.18.usewidths=true
column.18.valuefield=lastNote:owner:name
column.18.valueformat=HTML
column.18.width=150

 

- Monica 

View solution in original post

2 Replies

Avatar

Correct answer by
Employee

Hi @IsaDi

 

Thank you for your question! To include the name of the person who made the last comment in your task custom view, you need to retrieve the lastNote:owner:name field. Try this: 

 

column.14.displayname=Task Last Note and Date
column.14.sharecol=true
column.14.textmode=true
column.14.usewidths=true
column.14.value=</b></font><hr><font color=000000><b> </b></font>
column.14.valueformat=HTML
column.14.width=150

column.15.linkedname=lastNote
column.15.namekey=view.relatedcolumn
column.15.namekeyargkey.0=lastNote
column.15.namekeyargkey.1=entryDate
column.15.querysort=lastNote:entryDate
column.15.sharecol=true
column.15.textmode=true
column.15.usewidths=true
column.15.valuefield=lastNote:entryDate
column.15.valueformat=atDate
column.15.width=150

column.16.sharecol=true
column.16.textmode=true
column.16.usewidths=true
column.16.value=</b></font><hr><font color=000000><b> </b></font>
column.16.valueformat=HTML
column.16.width=150

column.17.displayname=Last Comment
column.17.linkedname=lastNote
column.17.namekey=view.relatedcolumn
column.17.namekeyargkey.0=lastNote
column.17.namekeyargkey.1=noteText
column.17.querysort=lastNote:noteText
column.17.textmode=true
column.17.usewidths=true
column.17.valuefield=lastNote:noteText
column.17.valueformat=HTML
column.17.width=250

column.18.displayname=Last Comment By
column.18.linkedname=lastNote
column.18.namekey=view.relatedcolumn
column.18.namekeyargkey.0=lastNote
column.18.namekeyargkey.1=owner:name
column.18.querysort=lastNote:owner:name
column.18.textmode=true
column.18.usewidths=true
column.18.valuefield=lastNote:owner:name
column.18.valueformat=HTML
column.18.width=150

 

- Monica 

Avatar

Level 3

Thank you!  This is exactly what I needed.