I'm creating a custom data entity for BudgetTransactionHeader to export all the columns
I can't seem to get the Date column to export properly. It always just comes out as the current date, not the values in the Date column
I tried with the wizard using the BudgetTransactionHeader table and with a different table where I renamed the source to BudgetTransactionHeader.
I tried with a computed column
private static str getDateField()
{
str fldMyField = SysComputedColumn::returnField(tableStr(BudgetTransactionHeader),
tableStr(BudgetTransactionHeader), fieldStr(BudgetTransactionHeader, Date));
return fldMyField;
}