I have used two temporary tables in my form. One is for all the controls and the other is for a grid. I am trying to obtain the values before update for on of the grid fields using orig but it does not seem to be working. The same if applied on the other temp table is working fine, therefore, I am a little confused as to what to do? Could you give me a few suggestions?
//modified method on the formdatasource field
public void modified()
{
real oldVal = TempTable2.orig()
///using the name of the table as is because
it has the same meaning as using cursor.///
real newVal = TempTable2.Value; //New value, after update
}