Table Name Rename

I’m trying to understand how to change the table name that is displayed at the very left and at the top of the page .

in the very top left is the Site Header Logo Title and under that are Headers and the name of the tables in my views.
Right now it is a not friendly “PX_2020” and I want it to read “Friendly Name”

Where would I adjust that?

And I’d like to add a variable to that fix which would be “DEPT” which is in my users table which is used at login.

So like this:

Instead of “PX_2020”

Would like "Friendly Name: " &

Example “Friendly Name Parts”

How do I use the Variable of the signed in user from the users table >>> users.Department?

You may change the table caption by Page_Load server event, e.g.

$this->setTableCaption(“…”);


This is with no edits:


LEFT SIDE NAV:
SiteHeaderLogo

Table1 <<------------
Table2
Table3

TABLE DATA
Table 1 <<--------------

Field1 Field2 Field 3
Data Data Data
Data Data Data


Table Specific -->> List Page -->> Page_Load – $this->setTableCaption(“Test”);
gives me this:


LEFT SIDE NAV:
SiteHeaderLogo

Table1 <<--------
Table2
Table3

TABLE DATA
Test <<----------

Field1 Field2 Field 3
Data Data Data
Data Data Data

\


I expected this:


LEFT SIDE NAV:
SiteHeaderLogo

Test <<---------
Table2
Table3

TABLE DATA
Test <<--------

Field1 Field2 Field 3
Data Data Data
Data Data Data

Once we get that issue smoked out we can move to adding the Department variable into that mix