Copy QAM report which is using Data governance resource Access Data Provider

I try to copy from Report editor

VI_QAM_Resource_Access but its not working becouse an error appear:

[810025] Parameters: Write permission denied for value "Date add-on".

.....

....

Write permission for DateTimeDetail is denied because of: VI.Common.Customizer.DialogParameter

There is a workaround to manage copying it.

Thanks.

Parents Reply
  • Okay. A workaround would be to execute this SQL. But I suggest you contact support as well. 

    update 	DialogParameter 
    	set DateTimeDetail = -1 
    	from DialogParameter p
    	where 
        isnull(p.DateTimeDetail,0) <> -1 
    	and p.DataType=-1
        and Exists (Select Top 1 1 from DialogParameterSet ps where ps.UID_DialogParameterSet = p.UID_DialogParameterSet and ObjectKeyUsedBy like N'<Key><T>DialogReport</T>%')

Children