I'm trying to add either the name of the person who originally made a request, the field would be an Issue Primary Content or the Requested By, on a document report. Does anyone have insight on how to do this?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
Using the following text mode in a view on a document report should do it.
displayname=Issue Owner
linkedname=opTask
namekey=view.relatedcolumn
namekeyargkey.0=opTask
namekeyargkey.1=owner
namekeyargkey.2=name
querysort=opTask:owner:name
textmode=true
valuefield=opTask:owner:name
valueformat=HTML
Best Regards,
Rich.
Hi,
Using the following text mode in a view on a document report should do it.
displayname=Issue Owner
linkedname=opTask
namekey=view.relatedcolumn
namekeyargkey.0=opTask
namekeyargkey.1=owner
namekeyargkey.2=name
querysort=opTask:owner:name
textmode=true
valuefield=opTask:owner:name
valueformat=HTML
Best Regards,
Rich.
In addition to the above I'd add the following columns:
Entered By (shows who originally entered the request - often the same as the owner)
valuefield=opTask:enteredBy:name
linkedname=opTask
valueformat=HTML
displayname=Entered By
namekey=view.relatedcolumn
textmode=true
namekeyargkey.0=opTask
namekeyargkey.1=enteredByID
querysort=opTask:enteredBy:name
Document Requested By (shows who requested the uploaded doc, if anyone)
displayname=Doc Requested By
linkedname=documentRequest
namekey=view.relatedcolumn
namekeyargkey.0=documentRequest
namekeyargkey.1=requestorID
querysort=documentRequest:requestor:name
textmode=true
valuefield=documentRequest:requestor:name
valueformat=HTML
Views
Replies
Total Likes