How to hide this button

Hi @anjalipv,

Reference:

Code:

frappe.listview_settings['Your DocType'] = {
    refresh : function(listview) {
        $('li[data-view="Report"]').hide();
    }
};

I hope this helps.

Thank You!

6 Likes