Okay, here's what I came up with (looks like it wasn't so difficult
as I feared). Please, can someone with a little bit more experience
tell me, if there's anything I should change in this hacked up code;
something's that really prone to break. Thanks again.
---
NumberSeq numberSeq;
CustTable custTable;
;
ttsbegin;
numberSeq = NumberSeq::newGetNum(CustParameters::numRefCustAccount(),
true);
custTable = CustTable::find(CustParameters::find().defaultCust);
custTable.AccountNum = numberSeq.num();
custTable.initValue();
custTable.Name = "Test 2";
custTable.CustGroup = "ERA";
custTable.Country = "EE";
custTable.setPaymentReference();
//specific address not needed right now
custTable.Address = Address::FormatAddress("", "", "", "EE", "", "");
custTable.insert();
numberSeq.used();
ttscommit;
---