Objects/Tables/Table 391 No. Series Generation
Table 391 No. Series Generation in 28
Jonas Paprotka, Business Foundation 28.5.54151.54365, checked
- App
- Business Foundation
- Namespace
- Microsoft.Foundation.NoSeries
Fields, 2Keys, 1Procedures, 2
Versions171819202122232425262728latest
Source2526272829
Source in 28
src/Business Foundation/App/NoSeriesCopilot/src/Copilot/NoSeriesGeneration.Table.al52 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 Microsoft.Foundation.NoSeries;
table 391 "No. Series Generation"
{
TableType = Temporary;
InherentEntitlements = X;
InherentPermissions = X;
fields
{
field(1; "No."; Integer)
{
}
field(10; "Input Text"; Blob)
{
}
}
keys
{
key(PK; "No.")
{
}
}
procedure SetInputText(NewText: Text)
var
OutStr: OutStream;
begin
Rec."Input Text".CreateOutStream(OutStr, TextEncoding::UTF8);
OutStr.WriteText(NewText);
end;
procedure GetInputText(): Text
var
InStr: InStream;
Result: Text;
begin
Rec.CalcFields("Input Text");
Rec."Input Text".CreateInStream(InStr, TextEncoding::UTF8);
InStr.ReadText(Result);
exit(Result);
end;
}
Fields, 2
| Id | Name | Type | Obsolete |
|---|
| 1 | No. | Integer | - |
| 10 | Input Text | Blob | - |
Keys, 1
Procedures, 2
| Name | Parameters | Returns | Access | Obsolete |
|---|
| SetInputText | (Text) | | public | - |
| GetInputText | () | Text | public | - |