2013-02-12 22 views

回答

5

你正在寻找的方法是原稿()

查找范围BOMTable的update()方法或BankAccountTrans

表有一个方法叫原稿暴露的上次保存的状态值目前的纪录。

一个很好的例子和说明可以在这里找到 http://msdax.blogspot.co.uk/2007/07/programming-of-basic-methods-of-tables.html

void update() { 
    CustTable this_Orig = this.orig(); 
    ; 

    if (this_Orig.custGroup! = this.custGroup) 
    { 
     //Cust group is changing on this update 
    } 
    ...