Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ codeunit 1934 "Perf. Prof. Activity Mapper"
ActivityType := ActivityType::"Web Client";
ClientType::"Web Service":
ActivityType := ActivityType::"Web API Client";
else
ActivityType := ActivityType::"Web Client";
end;
end;
}
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ page 1931 "Performance Profile List"
var
RecordRef: RecordRef;
begin
Rec.SetAutoCalcFields("User Name", "Client Type");
Rec.SetAutoCalcFields("User Name");
RecordRef.GetTable(Rec);
ScheduledPerfProfilerImpl.FilterUsers(RecordRef, UserSecurityId(), false);
RecordRef.SetTable(Rec);
Expand All @@ -256,7 +256,6 @@ page 1931 "Performance Profile List"

local procedure MapClientTypeToActivityType()
begin
Rec.CalcFields(Rec."Client Type");
PerfProfActivityMapper.MapClientTypeToActivityType(rec."Client Type", ActivityType);
end;

Expand All @@ -268,7 +267,7 @@ page 1931 "Performance Profile List"
exit(PerformanceProfileScheduler.Description);
end;

local procedure ComputePlatformCallDuration(): Duration
local procedure ComputePlatformCallDuration(): Duration
var
diff: Duration;
begin
Expand Down
Loading