Part Updated Date

We are trying to create a local proxy of Part records in our on-premise SQL Server via a scheduled sync event. The plan was to ask the REST API for all part records updated since the last sync. However, even in a BAQ query, I can’t find an “updated date” bound to the part record. I see “createdat” and “createdby” but they don’t help since we want to know when the part’s data has changed (description, unit price, etc.).

Is there a datetime stamp for updates on parts recorded somewhere in the DB that we can see?

Advice anyone? Thanks!

Jeff -
The SysRevID Field is a SQL Timestamp and can be used for your purpose. Search this site for “SysRevID” for more information.

1 Like

very straightforward BPM to save SessionUser and CurrentDate in UD fields (LastUpdateUser, LastUpdateDate) on Part Table when RowMod = “U”, if this is the table you are updating.

1 Like