-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRep50109.VenforReport.al
65 lines (56 loc) · 1.08 KB
/
Rep50109.VenforReport.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
report 50109 "Vendor Report"
{
ApplicationArea = All;
Caption = 'Venfor Report';
UsageCategory = ReportsAndAnalysis;
DefaultLayout = RDLC;
RDLCLayout = './alpackages/Vendor Report.rdl';
dataset
{
dataitem(Vendor; Vendor)
{
column(Name; Name)
{
}
column(City; City)
{
}
column(EMail; "E-Mail")
{
}
column(PhoneNo; "Phone No.")
{
}
column(Payments; Payments)
{
}
trigger OnPreDataItem()
begin
end;
trigger OnAfterGetRecord()
begin
end;
trigger OnPostDataItem()
begin
end;
}
}
requestpage
{
layout
{
area(Content)
{
group(GroupName)
{
}
}
}
actions
{
area(Processing)
{
}
}
}
}