How to reference CREATED_BY and LAST_MODIFIED_BY from Table

Hi!
I wanted to know how to access audited traits from Table columns?
Can someone, kindly show me a code example?

Thanks!

If the question is about the Table in the UI - just add the necessary columns to the table.
image

.......
<groupTable id="newEntity_1sTable"
                    width="100%"
                    dataContainer="newEntity_1sDc">
            <actions>
                <action id="create" type="create"/>
                <action id="edit" type="edit"/>
                <action id="remove" type="remove"/>
            </actions>
            <columns>
                <column id="name"/>
                <column id="createdBy"/>
                <column id="lastModifiedBy"/>
            </columns>
.......

image

Thank you very much!