web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / ELandAX blog / Selecting Cached Tables

Selecting Cached Tables

Evaldas Profile Picture Evaldas 1,800
Dynamics AX ignores specific fields selection if all the folowing contitions are fulfiled:
  • Table has CacheLookup property set to NotInTTS, Found or FoundAndEmpty
  • Table has a primary key
  • Selecting tables' primary key with (==)

Example:
select ProjId, ProjGroupId, Name from projTable where projTable.ProjId == "PROJ-00123";

if projTable meets above mentioned conditions the result will be entire record, not only ProjId, ProjGroupId, Name fields.

This was originally posted here.

Comments

*This post is locked for comments