Skip to content
Open
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 @@ -99,4 +99,13 @@ codeunit 3111 "Activity Log Builder"
ActivityLogBuilderImpl.Log();
end;

/// <summary>
/// Retrieves the activity log entries for the specified table and system identifier as a JSON string.
/// </summary>
[Scope('OnPrem')]
procedure Query(TableNo: Integer; RecSystemId: Guid): Text
begin
exit(ActivityLogBuilderImpl.Query(TableNo, RecSystemId));
end;

}
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,11 @@ codeunit 3112 "Activity Log Builder Impl."
LogEntry.Log();
end;

procedure Query(TableNo: Integer; RecSystemId: Guid): Text
var
QueryEntry: DotNet ActivityLogEntry;
begin
exit(QueryEntry.Query(TableNo, RecSystemId));
end;

}
Loading