Hello,
Is there a way to check if any data in my DW changed?
Not specific column or a row.
Check the entire DW.
Something like :
dwItemStatus l_status
l_status = dw_1.GetItemStatus(0 - row , 0 - column , Primary!)
if l_status = New! or l_status = NewModified! or l_status = DataModified! Then
///// change in data...
end if
but there is no option to use 0 - in row valiable...
Regargs,
Marina
In that case, the column's "modified" flag wil be DataModified! but, you can still compare the value in the DWO"s "Original " buffer to the current"Primary* buffer. In your case A = A. If so, you can reset that columns status to "NotModified" via the SetItemStatus() command.
Regards ... Chris