forked from microsoft/ALAppExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGPIV00104.Table.al
44 lines (43 loc) · 998 Bytes
/
GPIV00104.Table.al
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
namespace Microsoft.DataMigration.GP;
table 41007 "GP IV00104"
{
DataClassification = CustomerContent;
fields
{
field(1; ITEMNMBR; Text[31])
{
DataClassification = CustomerContent;
}
field(2; SEQNUMBR; Integer)
{
DataClassification = CustomerContent;
}
field(3; CMPTITNM; Text[31])
{
DataClassification = CustomerContent;
}
field(4; CMPITUOM; Text[9])
{
DataClassification = CustomerContent;
}
field(5; CMPITQTY; Decimal)
{
DataClassification = CustomerContent;
}
field(6; CMPSERNM; Boolean)
{
DataClassification = CustomerContent;
}
field(7; DEX_ROW_ID; Integer)
{
DataClassification = CustomerContent;
}
}
keys
{
key(Key1; ITEMNMBR, CMPTITNM, CMPITUOM)
{
Clustered = true;
}
}
}