d365fo – cACHING A DISPLAY METHOD

 To improve the performance of a display method you can cache it by using the SysClientCacheDataMethodAttribute

This example shows how to use it

    [SysClientCacheDataMethodAttribute(true)]
    public display SerialStatus display_GetInventSerial_ReasonCode()
    {
        SerialStatus   ret = '';
        .......
        return ret;
    }

Comments