kamal0808
kamal0808

Reputation: 525

Dynamics365 Operations: Created/Updated timestamps with Data Entities

I am new to Dynamics FnO, and recently followed the articles to access data through oData, and was successful.

What I see missing in the data objects that I normally receive in integrations out of the Microsoft World is the created/updated timestamps.

I am trying to put a synchronous data flow from FnO to my NodeJs application, so that my app keeps polling data from FnO whenever there is a change. This can be achieved easily if there were timestamps with the data that flows in.

Is there a way to setup those timestamps somewhere?

Upvotes: 1

Views: 847

Answers (1)

rjv
rjv

Reputation: 1090

You have to make sure that the underlying table that you are querying has the fields added on it, and also that the data entity you are accessing through odata has the fields setup up on it as well.

Make sure this is setup on the table:

enter image description here

And then you have to drag and drop the field(s) from the datasource field list to the exposed field list in the data entity:

enter image description here

After this, you will have these fields

Upvotes: 2

Related Questions