WORKFLOW : Data Quality-->Your Groups-->Group ID-->Reports-->View Button on the report-->Toolbar view should have DQ rule name & report name
This will be useful to developers and users as they will be able to see the report name and DQ Rule name while viewing the report data in a report under Data Quality group. Currently, they can only see Group ID and it does not make sense to just have the group ID on the toolbar view while viewing the actual report data. One way is to ensure the report name before viewing the data but if we can add these 2 columns to the toolbar view when viewing the report data, it makes it easier and relatable to users to understand which report they are viewing rather than go back one step and see for which DQ rule they had clicked on view data.
Archit - thank you for raising this and working on a possible solution. We'll align this new feature to an upcoming release.
thanks for sharing ! techzpod download mobdro
Attachments Open full size
i was also looking for the same
Attachments Open full size
I have added two more steps to this process :
webYourGroupUserReportVer- view ( passed extra parameter to the function -- dbo.ddReport.Comment)
Your Favourite Reports - page property change - was not possible via front end as such column only exist in dynamic SQL and not in page , used sql to update from backend.
use Cransoft
update Page
set HorizontalTitlebar='ReportName'
WHERE (PageID = '5260c81d-a06c-4833-9650-5467fcab0359')
Attachments Open full size
We have made changes to the below :
ddGetSQLForView - function (included dynamic variable to receive the extra parameter - comment and adjusted select query generator code to include this comment and aliased as ReportName)
webYourGroupUserReportHor - view ( passed extra parameter to the function -- dbo.ddReport.Comment)
webYourGroup#TypeOf#UserReportHor - view ( passed extra parameter to the function -- dbo.ddReport.Comment)
Your Group Reports - page property change - was not possible via front end as such column only exist in dynamic SQL and not in page , used sql to update from backend.
( update CranSoft.dbo.[page]
SET HorizontalTitlebar = 'ReportName'
from CranSoft.dbo.page where pageid = '140c84d7-637b-4bb0-89ae-92b296ff7d33')
Attachments Open full size
Missed attaching this file
Attachments Open full size