Codeunit 9806 Field Selection in 24
- App
- System Application
- Namespace
- System.Reflection
Versions171819202122232425262728latest
Source in 24
src/System Application/App/Field Selection/src/FieldSelection.Codeunit.al30 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.Reflection;
/// <summary>
/// Exposes functionality to look up fields.
/// </summary>
codeunit 9806 "Field Selection"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;
/// <summary>
/// Opens the fields lookup page and assigns the selected fields on the <paramref name="SelectedField"/> parameter.
/// </summary>
/// <param name="SelectedField">The field record variable to set the selected fields. Any filters on this record will influence the page view.</param>
/// <returns>Returns true if a field was selected.</returns>
procedure Open(var SelectedField: Record "Field"): Boolean
var
FieldSelectionImpl: Codeunit "Field Selection Impl.";
begin
exit(FieldSelectionImpl.Open(SelectedField));
end;
}
Procedures, 1
| Name | Parameters | Returns | Access | Obsolete |
|---|---|---|---|---|
| Open | (var Record Field) | Boolean | public | - |