Forum Discussion
afbraga66
Helper III
2 years agoThin Reports and Git Integration
Hey, So I have an issue. I've got a report that is connected to a dataset in power bi service through live connection aka thin report. Whenever I save changes and push them into the repository ...
- 2 years ago
How does the definiton.pbir of your report look like?
{ "version": "1.0", "datasetReference": { "byPath": { "path": "../DatasetName.Dataset" }, "byConnection": null } }like this it should work if your dataset is in the same repo.
If it is not: Check for spaces in the byConnection url in the defintion.pbir. The service does not like those and replaces them wiith %20. So you need to URL encode your connection strings in the thin reports.
I hope this helps!
Jannematz
2 years agoFrequent Visitor
How does the definiton.pbir of your report look like?
{
"version": "1.0",
"datasetReference": {
"byPath": {
"path": "../DatasetName.Dataset"
},
"byConnection": null
}
}like this it should work if your dataset is in the same repo.
If it is not: Check for spaces in the byConnection url in the defintion.pbir. The service does not like those and replaces them wiith %20. So you need to URL encode your connection strings in the thin reports.
I hope this helps!