The tc:user tag retrieves data from the user account of the current user who is generating the document. You can nest tc:data tags to retrieve the necessary data from that user. You can also nest the tc:user tag, since it works the same regardless of which other tags you have outside of it.
This tag points to the YUser object table. See Object Model: Read This First to learn about what data you can retrieve about the current user, either from YUser or from an object that is related to it.
Example: |
<tc:user> <tc:data select="Contact"> <tc:data select="FirstName" /> <tc:data select="Name" /> <tc:data select="Title" /> </tc:data> </tc:user> |
In the example given, the data retrieved by TeamConnect is the first name, last name, and job title of the user who generates the document, which is all located in the contact record associated with that user.