There is not a DMT for the calculated expression that you can assign to a Dynamic Attribute Class (AUOM). I’ve traced and found the BO, but still no idea where the data is ending up in the DB.
We have a BAQ on this as I can’t always remember formula - the calculation is in the Formula field.
select
[QueryField].[QueryID] as [QueryField_QueryID],
[QueryField].[FieldName] as [QueryField_FieldName],
[QueryField].[FieldLabel] as [QueryField_FieldLabel],
[QueryField].[FieldFormat] as [QueryField_FieldFormat],
[QueryField].[DataType] as [QueryField_DataType],
[QueryField].[IsCalculated] as [QueryField_IsCalculated],
[QueryField].[Formula] as [QueryField_Formula]
from Ice.QueryField as QueryField
where (QueryField.IsCalculated = true)
@jkane Maybe you can use the sp below and find part of the equation assuming it is text. I have used it to find where data is stashed a few times, so hopefully it work.