Hi,
The following code gives me the error '_custAccount' argument is incompatible with the required type.
public boolean modified()
{
boolean ret;
ret = super();
CustTable.PdsCustRebateGroupId =CustTable::find(CustTable.AccountNum).PdsCustRebateGroupId;
//CustPaymModeTable.PaymMode =CustPaymModeTable::find(CustPaymModeTable.).PaymMode;
CustTable.Blocked =CustTable::find(CustTable.AccountNum).Blocked;
CustTable.PdsCustRebateGroupId =CustTable::find(CustTable.AccountNum).PdsCustRebateGroupId;
CustTable.PaymSched =CustTable::find(CustTable.AccountNum).PaymSched;
CustTable.CreditMax =CustTable::find(CustTable.AccountNum).CreditMax;
CustTable.PriceGroup =CustTable::find(CustTable.AccountNum).PriceGroup;
CustTable.PaymMode =CustTable::find(str(this.AccountNum)).PaymMode;
return ret;
}
Please, help me.
Thank You.
*This post is locked for comments
I have the same question (0)