Page 1520 Workflow Events
- App
- Base Application
- Namespace
- System.Automation
- Versions
- 17-28
- Source table
- 1520
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/System/Workflow/WorkflowEvents.Page.al64 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.Automation;
page 1520 "Workflow Events"
{
Caption = 'Workflow Events';
DeleteAllowed = false;
Editable = false;
InsertAllowed = false;
ModifyAllowed = false;
PageType = List;
SourceTable = "Workflow Event";
SourceTableView = sorting(Independent, Description);
layout
{
area(content)
{
repeater(Group)
{
field(Description; Rec.Description)
{
ApplicationArea = Suite;
ShowCaption = false;
StyleExpr = StyleTxt;
ToolTip = 'Specifies the workflow event.';
Width = 50;
}
}
}
}
actions
{
}
trigger OnAfterGetCurrRecord()
begin
StyleTxt := GetStyle();
end;
trigger OnAfterGetRecord()
begin
StyleTxt := GetStyle();
end;
trigger OnOpenPage()
var
WorkflowWebhookEvents: Codeunit "Workflow Webhook Events";
begin
Rec.SetFilter("Function Name", '<>%1', WorkflowWebhookEvents.WorkflowWebhookResponseReceivedEventCode());
end;
var
StyleTxt: Text;
local procedure GetStyle(): Text
begin
if Rec.HasPredecessors() then
exit('Strong');
exit('');
end;
}