Hi @Keith Henderson!
I'm intrigued, as I've been looking for where VIEWCOSTS is stored and haven't been able to find it. In the wotrack.xml there is a reference to VIEWCOSTS. Then, there is a domain of the synonymous type "WOVIEWCOST" that appears to have a structure associated with the visualization of costs. But I have not found a table, a view, or an xml, but still, I have searched within the .class (for example, I searched in WOSet.class) and I have not found that cost structure.
I was about to respond to you and it occurred to me to look for .class files with the word Cost or WO and there I found something else.
In this path C:\maximo\maximo\applications\maximo\businessobjects\classes\psdi\app\workorder I found:
FldWOEstTotalCost.class, FldWOEstToolCost.class, FldWOEstServCost.class, etc.
With this query you will find the reference to those classes from WO.
select objectname, attributename, alias, classname, columnname, remarks
from maximo.MAXATTRIBUTECFG
where CLASSNAME is not null
and (classname like '%ost%' or classname like '%OST%')
and objectname = 'WORKORDER'
Now, where that popup is(VIEWCOST on WORKORDER) and what it calls the classes, that remains a mystery to me.
It would be nice if someone can answer it, so I can learn.
Regards!