Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
We recently upgraded to Power BI Report Server on premises. We have a directory name "President's Office". While still on SSRS the was no issue with name. After upgrading we received an error when clicking on the ellipsis in the upper right corner of the folder. The error persisted for all subfolders.
The error reported is:
Something went wrong. Please try again later.
We removed the apostrophe and normal operation resumed.
The result of this API call is a 404 error:
reports/api/v2.0/Folders(Path=%27/President's%20Office%27)/AllowedActions
Rename the directory and removed the apostrophe and the result is:
{
"@odata.context":"https://<reportserver>/reports/api/v2.0/$metadata#Collection(Model.AllowedAction)","value":[
{
"Action":"Create Folder"
},{
"Action":"Delete"
},{
"Action":"Read Properties"
},{
"Action":"Update Properties"
},{
"Action":"Create Report"
},{
"Action":"Create Resource"
},{
"Action":"Create data source"
},{
"Action":"Create Model"
},{
"Action":"Read Security Policies"
},{
"Action":"Update Security Policies"
}
]
}You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.