Table 2889 Query Navigation Validation, source in 24
Source2425metadata in 24
src/System Application/App/SmartList Designer Subscribers/src/QueryNavigationValidation.Table.al50 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Tooling;
/// <summary>
/// Contains details about the results of validating Query Navigation data.
/// </summary>
table 2889 "Query Navigation Validation"
{
DataClassification = SystemMetadata;
Extensible = false;
TableType = Temporary;
ReplicateData = false;
ObsoleteReason = 'The SmartList Designer is not supported in Business Central.';
ObsoleteTag = '23.0';
ObsoleteState = Removed;
fields
{
/// <summary>
/// Simple primary key of the temporary table.
/// </summary>
field(1; PK; Integer)
{
AutoIncrement = true;
Access = Internal;
DataClassification = SystemMetadata;
}
/// <summary>
/// Indicates the success/failure of the validation
/// </summary>
field(2; Valid; Boolean)
{
DataClassification = SystemMetadata;
}
/// <summary>
/// Specifies a detailed message describing why the validation failed.
/// </summary>
field(3; Reason; Text[500])
{
DataClassification = SystemMetadata;
}
}
}