- Flexera Community
- :
- App Broker
- :
- App Broker Forum
- :
- Notifications
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Can I get a email notification when new packages are added to app portal?
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
While there is no feature in App Portal that allows for this, you could create a report in SQL Server Reporting Services using the following query:
SELECT [PackageID] ,[PackageTitle] ,[BriefDescription] ,[PackageVisible] ,[Deleted] ,[CreatedBy] ,[CreatedOn] ,[UpdatedBy] ,[UpdatedOn] FROM [AppPortal].[dbo].[WD_WebPackages] WHERE [CreatedOn] > DATEADD(HOUR,-24,GETUTCDATE())
This will show all catalog items created in the previous 24 hours. Then set up a subscription to send yourself the report each day. If you only want to see catalog items that were created and not subsequently archived, you could modify the query to move the [Deleted] column to the WHERE clause as "AND [Deleted] = 0".
This thread has been automatically locked due to inactivity.
To continue the discussion, please start a new thread.
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Unfortunately at this time, there is no feature in App Portal to send out emails when new packages have been added.
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
While there is no feature in App Portal that allows for this, you could create a report in SQL Server Reporting Services using the following query:
SELECT [PackageID] ,[PackageTitle] ,[BriefDescription] ,[PackageVisible] ,[Deleted] ,[CreatedBy] ,[CreatedOn] ,[UpdatedBy] ,[UpdatedOn] FROM [AppPortal].[dbo].[WD_WebPackages] WHERE [CreatedOn] > DATEADD(HOUR,-24,GETUTCDATE())
This will show all catalog items created in the previous 24 hours. Then set up a subscription to send yourself the report each day. If you only want to see catalog items that were created and not subsequently archived, you could modify the query to move the [Deleted] column to the WHERE clause as "AND [Deleted] = 0".
