From 1a30024095422e7ba7f6e28cee6016acec615f2a Mon Sep 17 00:00:00 2001 From: Kateryna Yatsenko Date: Tue, 4 Aug 2026 07:51:39 +0300 Subject: [PATCH 1/3] Added note that report name could be more meaningful with settings --- .../11.1/admincenter/schedule/reports.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/directorymanager/11.1/admincenter/schedule/reports.md b/docs/directorymanager/11.1/admincenter/schedule/reports.md index ae4a90dcd4..d3efd9987d 100644 --- a/docs/directorymanager/11.1/admincenter/schedule/reports.md +++ b/docs/directorymanager/11.1/admincenter/schedule/reports.md @@ -119,3 +119,16 @@ Step 13 – On the Schedules page, click **Save**. The schedule is displayed under **Reports**. See the [View the Schedules in an Identity Store ](manage.md#view-the-schedules-in-an-identity-store)topic for details. + +:::note +If you want to have a meaningful report file name in your email notification, please apply next sql statement on your Netwrix Directory Manager database +IF NOT EXISTS ( + SELECT 1 FROM [GroupID].[GlobalSystemConfiguration] + WHERE [Attribute] = N'IncludeLongDateTimeFormatInReportName' +) +BEGIN + INSERT INTO [GroupID].[GlobalSystemConfiguration] ([Attribute], [AttributeValue]) + VALUES (N'IncludeLongDateTimeFormatInReportName', N'True') +END +GO +::: From e3058f5ccbce3ac7ca499c594de945dd3f8ceb9c Mon Sep 17 00:00:00 2001 From: David Miles Date: Tue, 4 Aug 2026 10:26:50 +0100 Subject: [PATCH 2/3] Update reports.md Re-worded the meaningful filename section. --- .../11.1/admincenter/schedule/reports.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/directorymanager/11.1/admincenter/schedule/reports.md b/docs/directorymanager/11.1/admincenter/schedule/reports.md index d3efd9987d..3d5d83b8fb 100644 --- a/docs/directorymanager/11.1/admincenter/schedule/reports.md +++ b/docs/directorymanager/11.1/admincenter/schedule/reports.md @@ -120,8 +120,12 @@ The schedule is displayed under **Reports**. See the [View the Schedules in an Identity Store ](manage.md#view-the-schedules-in-an-identity-store)topic for details. -:::note -If you want to have a meaningful report file name in your email notification, please apply next sql statement on your Netwrix Directory Manager database +:::Configure Meaningful Report File Names in Email Notifications + +By default, report attachments included in email notifications may use a generic filename. To include a more descriptive filename with a timestamp, add the following configuration value to the Netwrix Directory Manager database. + +Run the following SQL script against the Netwrix Directory Manager database: + IF NOT EXISTS ( SELECT 1 FROM [GroupID].[GlobalSystemConfiguration] WHERE [Attribute] = N'IncludeLongDateTimeFormatInReportName' @@ -131,4 +135,6 @@ BEGIN VALUES (N'IncludeLongDateTimeFormatInReportName', N'True') END GO + +After this setting is applied, newly generated report attachments included in email notifications will use a more meaningful filename that includes the report name and a timestamp. Existing reports are not affected. ::: From 2be61c63bd0df7b1f71cca323a4cd5628319a5d8 Mon Sep 17 00:00:00 2001 From: Kateryna Yatsenko Date: Tue, 4 Aug 2026 14:58:34 +0300 Subject: [PATCH 3/3] Fixed Note section --- docs/directorymanager/11.1/admincenter/schedule/reports.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/directorymanager/11.1/admincenter/schedule/reports.md b/docs/directorymanager/11.1/admincenter/schedule/reports.md index 3d5d83b8fb..ecf06240ad 100644 --- a/docs/directorymanager/11.1/admincenter/schedule/reports.md +++ b/docs/directorymanager/11.1/admincenter/schedule/reports.md @@ -120,7 +120,8 @@ The schedule is displayed under **Reports**. See the [View the Schedules in an Identity Store ](manage.md#view-the-schedules-in-an-identity-store)topic for details. -:::Configure Meaningful Report File Names in Email Notifications +:::note +Configure Meaningful Report File Names in Email Notifications By default, report attachments included in email notifications may use a generic filename. To include a more descriptive filename with a timestamp, add the following configuration value to the Netwrix Directory Manager database.