when I'm defining a dynamic list the table alias is optional for reular fields
fields.DefineField(DisputeMasterFieldIndex.ClaimReasonCode, 5, "ClaimReasonCode");
But I don't find a constructor for an agregate field where the table alias is defaulted.
fields.DefineField(DisputeMasterFieldIndex.CurrentAmount, 6, "Amount", "Disp", AggregateFunction.Sum);
If I fill in a alias in the agregate I have to use the same one elsewhere. How can I give the agregate field the same alias that the non-agregate fields are using by default?