diff --git a/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntry.Page.al b/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntry.Page.al index 74f0b57015..1313f257de 100644 --- a/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntry.Page.al +++ b/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntry.Page.al @@ -43,7 +43,8 @@ page 4312 "Agent Task Log Entry" trigger OnDrillDown() begin - Message(Rec.Description); + if (Rec.Description <> '') then + Message(Rec.Description); end; } field(Reason; Rec.Reason) @@ -54,7 +55,8 @@ page 4312 "Agent Task Log Entry" trigger OnDrillDown() begin - Message(Rec.Reason); + if (Rec.Reason <> '') then + Message(Rec.Reason); end; } field(Details; LogEntryDetailsTxt) @@ -65,7 +67,8 @@ page 4312 "Agent Task Log Entry" trigger OnDrillDown() begin - Message(LogEntryDetailsTxt); + if (LogEntryDetailsTxt <> '') then + Message(LogEntryDetailsTxt); end; } field(Type; Rec.Type) diff --git a/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryList.Page.al b/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryList.Page.al index 3da2a68728..04a4bb8e8b 100644 --- a/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryList.Page.al +++ b/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryList.Page.al @@ -67,7 +67,8 @@ page 4303 "Agent Task Log Entry List" trigger OnDrillDown() begin - Message(Rec.Description); + if (Rec.Description <> '') then + Message(Rec.Description); end; } field(Reason; Rec.Reason) @@ -76,7 +77,8 @@ page 4303 "Agent Task Log Entry List" trigger OnDrillDown() begin - Message(Rec.Reason); + if (Rec.Reason <> '') then + Message(Rec.Reason); end; } field(Details; DetailsTxt) @@ -86,7 +88,8 @@ page 4303 "Agent Task Log Entry List" trigger OnDrillDown() begin - Message(DetailsTxt); + if (DetailsTxt <> '') then + Message(DetailsTxt); end; } } diff --git a/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryListPart.Page.al b/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryListPart.Page.al index bde30e78d0..4f5c3f5920 100644 --- a/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryListPart.Page.al +++ b/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryListPart.Page.al @@ -55,7 +55,8 @@ page 4314 "Agent Task Log Entry ListPart" trigger OnDrillDown() begin - Message(Rec.Description); + if (Rec.Description <> '') then + Message(Rec.Description); end; } field(Reason; Rec.Reason) @@ -66,7 +67,8 @@ page 4314 "Agent Task Log Entry ListPart" trigger OnDrillDown() begin - Message(Rec.Reason); + if (Rec.Reason <> '') then + Message(Rec.Reason); end; } field(Details; DetailsTxt) @@ -76,7 +78,8 @@ page 4314 "Agent Task Log Entry ListPart" trigger OnDrillDown() begin - Message(DetailsTxt); + if (DetailsTxt <> '') then + Message(DetailsTxt); end; } field(PageCaption; Rec."Page Caption")