Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
PowerBIUserHoop
Frequent Visitor

Report refresh error information.

Good afternoon,

 

I have a report running using the ASP.Net Core example.  Everything is fine with the report on first load, but when the .refresh() command is called to refresh the report, the catch clause is fired, but no error message is return in the error parameter?  

 

I have no clue as to why this may be happening since the initial report load works as expected.

 

 

 

 

 

    function refresahReport() {
        
        console.log('refresahReport - report start');
          //getReport1();
        
        report.refresh().then(() => {
            console.log('report refreshed successfully');
        })
            .catch(error => {
                
                console.log('Error refreshing report:', error);
            });


        console.log('refresahReport - report end');
         
    }

 

 

 

 

Any advice greatly appriciated.

 

1 REPLY 1
Anonymous
Not applicable

Hi  @PowerBIUserHoop ,

 

You can consider using the following two tools to collect error information:

Browser development tools check for network requests made during refreshes. Look for any failed requests or error responses that might provide more information.

developer.mozilla.org

vyangliumsft_0-1730951016950.png

Use the Fiddler tool to collect web traces:

Download Fiddler Web Debugging Tool for Free by Telerik

How to collect a network trace | Microsoft Learn

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.