Question 95 of 103 from exam MB-500: Microsoft Dynamics 365: Finance and Operations Apps Developer

Question 95 of 103 from exam MB-500: Microsoft Dynamics 365: Finance and Operations Apps Developer

Question

HOTSPOT - You are a Dynamics 365 Finance developer.

Users are experiencing slower load times for a data table on the All Customers form.

You need to update caching for the table in Dynamics 365 to improve data retrieval times.

How should you configure CacheLookup properties? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Hot Area:

Answer Area

Property Value

Set-based caching

Entire table
None

Found
FoundandEmpty

Single-record caching

Found

Entire table
None
SurrogateKey

Explanations

Answer Area

Property Value

Set-based caching

Entire table
None

Found
FoundandEmpty

Single-record caching

Found

Entire table
None
SurrogateKey

Box 1: Entire table - In Microsoft Dynamics AX, groups of records can be cached all at once with set-based caching.

Set-based caching can be implemented in two ways: At design time, by setting the table's CacheLookup property to EntireTable.

In code, by using the RecordViewCache class.

Box 2: Found - Record caching is enabled for a table when all the following statements are true: The CacheLookup property on the table is enabled by setting it to one of the following values:

-> NotInTTS, Found, FoundAndEmpty.

-> The record buffer disableCache method has not been called with a parameter of true.

https://docs.microsoft.com/en-us/dynamicsax-2012/developer/set-based-caching https://docs.microsoft.com/en-us/dynamicsax-2012/developer/single-record-caching