Before writing to the stringedit, I want to validate the selected value, because I need to insert that value in another table.

public boolean validate()
{
GCuttingDieTable gCuttingTable;
boolean ret;
ret = super();
...
gCuttingTable.CuttingDieId = SELECTED VALUE;
gCuttingTable.CuttingDieCategory = 2;
gCuttingTable.CustAccount = GCalcTable.CustAccount;
gCuttingTable.insert();
...
return ret;
}
Thanks in advance!.
*This post is locked for comments
I have the same question (0)