Currently in the codeunit 1293 "Isolated Storage Management" there are procedures to be used to set isolated storage as per below:
[NonDebuggable]
[Scope('OnPrem')]
procedure Set("Key": Text; Value: Text; Datascope: DataScope): Boolean
begin
if not EncryptionEnabled then
exit(ISOLATEDSTORAGE.Set(CopyStr(Key, 1, 200), Value, Datascope));
exit(ISOLATEDSTORAGE.SetEncrypted(CopyStr(Key, 1, 200), Value, Datascope));
end;
As you can see this only cater for On Prem installations. We need to be able to make use of this for cloud environments.
Please can we a procedure like the above that can be used in the cloud scope?
Example for use:
Inter Company Partners: Update Client Credentials via new Extension. This can only be used if the SetKey is executed via the Base App.
Thanks in Advance
