-
Notifications
You must be signed in to change notification settings - Fork 0
/
SharepointLists.Page.al
70 lines (66 loc) · 2.06 KB
/
SharepointLists.Page.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
page 50101 "PTE Sharepoint Lists"
{
Caption = 'Sharepoint Lists';
PageType = List;
UsageCategory = None;
ApplicationArea = All;
SourceTable = "SharePoint List";
SourceTableTemporary = true;
Editable = false;
layout
{
area(Content)
{
repeater(Control1)
{
field(Id; Rec.Id)
{
ToolTip = 'Specifies the Id.';
}
field("List Item Entity Type"; Rec."List Item Entity Type")
{
ToolTip = 'Specifies the List Item Entity Type Full Name.';
}
field(Description; Rec.Description)
{
ToolTip = 'Specifies the Description.';
}
field("Base Template"; Rec."Base Template")
{
ToolTip = 'Specifies the Base Template.';
}
field("Base Type"; Rec."Base Type")
{
ToolTip = 'Specifies the Base Type.';
}
field("Is Catalog"; Rec."Is Catalog")
{
ToolTip = 'Specifies the Is Catalog.';
}
field(Created; Rec.Created)
{
ToolTip = 'Specifies the Created.';
}
field(OdataId; Rec.OdataId)
{
ToolTip = 'Specifies the Odata.Id.';
}
field(OdataEditLink; Rec.OdataEditLink)
{
ToolTip = 'Specifies the Odata.EditLink.';
}
field(OdataType; Rec.OdataType)
{
ToolTip = 'Specifies the Odata.Type.';
}
}
}
area(Factboxes)
{
}
}
internal procedure SetLists(var SharePointList: Record "SharePoint List" temporary)
begin
Rec.Copy(SharePointList, true);
end;
}