Isolated Storage
The Isolated Storage is a key-value based storage that provides data isolation between extensions. The Isolated Storage can be used to store data that must be preserved inside the extension scope and this data are accessible via AL code. The DataScope option type identifies the scope of stored data in the isolated storage.DataScope is an optional parameter and if it is not passed the value would be Module. Possible values are listed in the following table:
Member | Description |
Module | Indicates that the record is available in the scope of the app(extension) context. |
Company | Indicates that the record is available in the scope of the company within the app context. |
User | Indicates that the record is available for a user within the app context. |
CompanyAndUser | Indicates that the record is available for a user and specific company within the app context. |
For managing data in the Isolated Storage, you have the following methods:
Method | Description |
[Ok := ] IsolatedStorage... |