Eventi
Campionati mondiali di Power BI DataViz
14 feb, 16 - 31 mar, 16
Con 4 possibilità di entrare, si potrebbe vincere un pacchetto conferenza e renderlo al Live Grand Finale a Las Vegas
Altre informazioniQuesto browser non è più supportato.
Esegui l'aggiornamento a Microsoft Edge per sfruttare i vantaggi di funzionalità più recenti, aggiornamenti della sicurezza e supporto tecnico.
Version: Available or changed with runtime version 8.0.
Set of additional dimensions, specified as a dictionary that relates to the error.
[CustomDimensions := ] ErrorInfo.CustomDimensions([CustomDimensions: Dictionary of [Text, Text]])
Nota
This method can be invoked using property access syntax.
ErrorInfo
Type: ErrorInfo
An instance of the ErrorInfo data type.
[Optional] CustomDimensions
Type: Dictionary of [Text, Text]
The custom dimensions of the ErrorInfo
[Optional] CustomDimensions
Type: Dictionary of [Text, Text]
The current custom dimensions of the ErrorInfo.
You can use the CustomDimensions
dictionary to transfer data from the code where an error message is shown to the user to the codeunit and method(s) executed by fix-it actions or where you handle collected errors.
For more information about how to develop actionable errors, see Actionable errors. For more information about how to handle multiple collected errors, see Collecting errors.
procedure myErrorHandlerProc( MyErrorInfo: ErrorInfo )
var
TheCustomDimensions: Dictionary of [Text, Text];
begin
TheCustomDimensions := MyErrorInfo.CustomDimensions();
// do something with the data
end
var
MyErrorInfo: ErrorInfo;
TheCustomDimensions: Dictionary of [Text, Text];
begin
// setup the error info object: Define Message, DetailedMessage etc.
// Populate TheCustomDimensions dictionary with data needed by the fix-it action
TheCustomDimensions.Add('MyKey', 'Some data');
TheCustomDimensions.Add('MySecondKey', 'Some more data');
MyErrorInfo.CustomDimensions(TheCustomDimensions);
// setup actions for the error info object
Error(MyErrorInfo);
end
ErrorInfo Data Type
Actionable errors
Collecting errors
Error handling
Get Started with AL
Developing Extensions
Eventi
Campionati mondiali di Power BI DataViz
14 feb, 16 - 31 mar, 16
Con 4 possibilità di entrare, si potrebbe vincere un pacchetto conferenza e renderlo al Live Grand Finale a Las Vegas
Altre informazioni