Page 1503 Workflow Steps
- App
- Base Application
- Namespace
- System.Automation
- Versions
- 17-28
- Source table
- 1507
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/System/Workflow/WorkflowSteps.Page.al51 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.Automation;
page 1503 "Workflow Steps"
{
Caption = 'Workflow Steps';
Editable = false;
PageType = List;
ShowFilter = false;
SourceTable = "Workflow Step Buffer";
SourceTableTemporary = true;
layout
{
area(content)
{
repeater(Group)
{
IndentationColumn = Rec.Indent;
IndentationControls = "Event Description";
field("Event Description"; Rec."Event Description")
{
ApplicationArea = Suite;
Caption = 'When Event';
Lookup = false;
ToolTip = 'Specifies the workflow event that triggers the related workflow response.';
}
field("Response Description"; Rec."Response Description")
{
ApplicationArea = Suite;
Caption = 'Then Response';
Lookup = false;
ToolTip = 'Specifies the workflow response that is that triggered by the related workflow event.';
}
}
}
}
actions
{
}
trigger OnFindRecord(Which: Text): Boolean
begin
Rec.SetCurrentKey(Order);
Rec.Ascending(true);
exit(Rec.Find(Which));
end;
}