Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 23 additions & 20 deletions businessCentral/src/ADLSESetup.Page.al
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,6 @@ page 82560 "ADLSE Setup"
ApplicationArea = All;
Caption = 'Export';
Tooltip = 'Starts the export process by spawning different sessions for each table. The action is disabled in case there are export processes currently running, also in other companies.';
Promoted = true;
PromotedIsBig = true;
PromotedCategory = Process;
PromotedOnly = true;
Image = Start;
Enabled = not ExportInProgress;

Expand All @@ -144,10 +140,6 @@ page 82560 "ADLSE Setup"
ApplicationArea = All;
Caption = 'Stop export';
Tooltip = 'Tries to stop all sessions that are exporting data, including those that are running in other companies.';
Promoted = true;
PromotedIsBig = true;
PromotedCategory = Process;
PromotedOnly = true;
Image = Stop;

trigger OnAction()
Expand All @@ -164,10 +156,6 @@ page 82560 "ADLSE Setup"
ApplicationArea = All;
Caption = 'Schedule export';
Tooltip = 'Schedules the export process as a job queue entry.';
Promoted = true;
PromotedIsBig = true;
PromotedCategory = Process;
PromotedOnly = true;
Image = Timesheet;

trigger OnAction()
Expand All @@ -183,10 +171,6 @@ page 82560 "ADLSE Setup"
ApplicationArea = All;
Caption = 'Clear tracked deleted records';
Tooltip = 'Removes the entries in the deleted record list that have already been exported. This should be done periodically to free up storage space. The codeunit ADLSE Clear Tracked Deletions may be invoked using a job queue entry for the same end.';
Promoted = true;
PromotedIsBig = true;
PromotedCategory = Process;
PromotedOnly = true;
Image = ClearLog;
Enabled = TrackedDeletedRecordsExist;

Expand All @@ -202,10 +186,6 @@ page 82560 "ADLSE Setup"
ApplicationArea = All;
Caption = 'Clear execution log';
Tooltip = 'Removes the history of the export executions. This should be done periodically to free up storage space.';
Promoted = true;
PromotedIsBig = true;
PromotedCategory = Process;
PromotedOnly = true;
Image = History;
Enabled = OldLogsExist;

Expand All @@ -218,6 +198,29 @@ page 82560 "ADLSE Setup"
end;
}
}
area(Promoted)
{
group(Category_Process)
{
Caption = 'Process';

actionref(ExportNow_Promoted; ExportNow)
{
}
actionref(StopExport_Promoted; StopExport)
{
}
actionref(Schedule_Promoted; Schedule)
{
}
actionref(ClearDeletedRecordsList_Promoted; ClearDeletedRecordsList)
{
}
actionref(DeleteOldRuns_Promoted; DeleteOldRuns)
{
}
}
}
}

trigger OnInit()
Expand Down