Skip to content
Open
Changes from 1 commit
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
13 changes: 13 additions & 0 deletions docs/directorymanager/11.1/admincenter/schedule/reports.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
:::