Showing posts with label Query on Task object. Show all posts
Showing posts with label Query on Task object. Show all posts

Sunday, June 22, 2014

How to get the Owner Name and Last Modified By Name in Task Object?

How to get the Owner Name and Last Modified By Name in Task Object?


Below is the Query to get the Owner Name and Last Modified By Name in Task Object

SOQL:

select owner.name,LastModifiedBy.name from task where id =t.id 



 
| ,