18. Juli 2018 15:24
for i := 1 to 13 do
begin
Difference[i] := abs(PrePlan[i] - Current[i]);
if Difference [i] <> 0 then
StyleExp[i] := 'Unfavorable
else
StyleExp[i] := 'None'
end;
field(Difference; Difference[Number])
{
CaptionML = DEU = 'Unterschied', ENU = 'Difference';
BlankZero = true;
DecimalPlaces = 0 : 5;
Style = Attention;
StyleExpr = StyleExp[Number];
}
18. Juli 2018 15:29
Darf ich das denn überhaupt so machen?
18. Juli 2018 16:57
24. Juli 2018 08:36
24. Juli 2018 09:30
24. Juli 2018 09:52
layout
{
area(content)
{
part(MeinePage; Page_xy)
{
//Ich habe hier keinen Link eingebaut, da ich das beim OnopenPage trigger mache.
//Funktioniert aber auch nicht mit einem Link. Die Page selber ist PageType = Listpart
}
}
}
24. Juli 2018 11:51
page 50100 TestPage
{
PageType = ListPart;
SourceTable = TableSource;
layout
{
area(Content)
{
repeater(GroupName)
{
field(MyField; FieldSource)
{
ApplicationArea = All;
}
}
}
}
}
pageextension 50100 TestPageExtension extends "Customer Card"
{
layout
{
addafter(General) //Gibt an, wo deine SubPage hinzugefügt werden soll (hier: nach dem Register "Allgemein")
{
part(TestPage; TestPage) //gebe hier den Namen deiner Page an
{
//SubPageLink usw.
}
}
}
}
24. Juli 2018 12:24
24. Juli 2018 13:25
ApplicationArea = All;
UsageCategory = Administration;
24. Juli 2018 13:43
24. Juli 2018 14:59
page 50112 MyPage
{
PageType = ListPart;
SourceTable = Customer;
layout
{
area(Content)
{
repeater(Test)
{
field(MyField; Name)
{
ApplicationArea = All;
}
}
}
}
}
page 50111 TestCard
{
PageType = Card;
ApplicationArea = All;
UsageCategory = Administration;
layout
{
area(Content)
{
part(MyPage; MyPage)
{
}
}
}
}
24. Juli 2018 15:20
24. Juli 2018 16:02
ApplicationArea = All;
UsageCategory = Administration;
26. Juli 2018 11:33
page xy Page
{
PageType = Document;
ApplicationArea = All;
UsageCategory = Administration;
layout
{
area(content)
{
part(Test; testPage)
{
}
}
}
actions
{
area(processing)
{
action(ActionName)
{
trigger OnAction();
begin
end;
}
}
}
var
myInt: Integer;
}
page xyz testpage
{
PageType = ListPart;
SourceTable = Integer;
SourceTableView = where (Number = filter (1 .. 13));
Editable = false;
Caption = 'testpage';
ApplicationArea = All;
UsageCategory = Administration;
layout
{
area(Content)
{
repeater(group)
{
field(Field0; Field0[Number])
{
Caption = 'field0';
ApplicationArea = All;
}
field(Field1; Field1[Number])
{
Captiopn = 'field1'
BlankZero = true;
DecimalPlaces = 0 : 5;
ApplicationArea = All;
}
field(Field2;Field2[Number])
{
BlankZero = true;
DecimalPlaces = 0 : 5;
ApplicationArea = All;
}
}
}
}
addafter(Control1234)
{
action(test)
{
trigger OnAction();
begin
Page.Run(Page::Page);
end;
}
}
26. Juli 2018 11:55
26. Juli 2018 12:07
26. Juli 2018 14:52
ITNoob hat geschrieben:Hallo,
Ich möchte eine Action die eine Page öffnet.
Diese Page soll eine Subpage beinhalten. Eigentlich 2.
Grüße
26. Juli 2018 14:58
26. Juli 2018 17:45
26. Juli 2018 20:52
26. Juli 2018 20:54
27. Juli 2018 08:33
27. Juli 2018 10:32