Table 262 Intrastat Jnl. Batch
- App
- Base Application
- Namespace
- Microsoft.Inventory.Intrastat
- Versions
- 17-28
- Obsolete
- Removed 25.0, seen from 22. Intrastat related functionalities are moved to Intrastat extensions.
Fields, 7Keys, 1Procedures, 1Obsolete, 1
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Inventory/Intrastat/IntrastatJnlBatch.Table.al70 lines, Copyright (c) Microsoft Corporation. MIT
#if not CLEANSCHEMA25
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Inventory.Intrastat;
using Microsoft.Finance.Currency;
table 262 "Intrastat Jnl. Batch"
{
Caption = 'Intrastat Jnl. Batch';
DataCaptionFields = Name, Description;
ObsoleteState = Removed;
ObsoleteTag = '25.0';
ObsoleteReason = 'Intrastat related functionalities are moved to Intrastat extensions.';
DataClassification = CustomerContent;
fields
{
field(1; "Journal Template Name"; Code[10])
{
Caption = 'Journal Template Name';
NotBlank = true;
}
field(2; Name; Code[10])
{
Caption = 'Name';
NotBlank = true;
}
field(3; Description; Text[100])
{
Caption = 'Description';
}
field(13; Reported; Boolean)
{
Caption = 'Reported';
}
field(14; "Statistics Period"; Code[10])
{
Caption = 'Statistics Period';
}
field(15; "Amounts in Add. Currency"; Boolean)
{
AccessByPermission = TableData Currency = R;
Caption = 'Amounts in Add. Currency';
}
field(16; "Currency Identifier"; Code[10])
{
AccessByPermission = TableData Currency = R;
Caption = 'Currency Identifier';
}
}
keys
{
key(Key1; "Journal Template Name", Name)
{
Clustered = true;
}
}
fieldgroups
{
}
}
#endif