FIELD CUSTOMIZATION

  • Two fields in Same Table , My task is if we enter any value to one field it will up date automatically second field…

plz help me

Hi,

You have to override the modified field method in table.

Public void modifiedfield(fieldid _fieldid)

{

Switch(_fieldid)

{

case fieldnum(tablenum, fieldnum):

Your logic

Break;

}

}

Thanks

Tq

M Kumaran

Hi Venkata,

Try it once this one example

public void modifiedField(fieldId _fieldId)

{

str a;

;

a = fld1.value;

fld2 = a;

return fld2;

super(_fieldId);

}