Hello everyone,
I am working on setting some default values for the Purchase RFQ form (PurchRFQCaseTable Form. (Ax2012))
What I did is override the initValue Method of the PurchRFQCaseTable data source:
public void initValue()
{
super();
PurchRFQCaseTable.DlvMode="Sea";
PurchRFQCaseTable.DlvTerm="FOB";
PurchRFQCaseTable.CurrencyCode="CNY";
PurchRFQCaseTable.Payment="30D";
PurchRFQCaseTable.PaymMode="CLIEOP";
}
When I open the form, none of these values have been set.
What am I missing here?
Thank you for your help.