Freezing Side bar while scrolling

Hi @rs115199789,

Please apply it.

frappe.ui.form.on('Purchase Invoice', {
    onload_post_render: function(frm) {
        if (window.innerWidth > 992) {
            var targetDiv = $(".col-lg-2.layout-side-section");
            targetDiv.css({
                position: 'fixed',
                zIndex: '1020',
            });

            $('.layout-main-section-wrapper').css({
                marginLeft: targetDiv.outerWidth()
            });
        }
    }
});

Then reload Ctrl+Shift+R and check it.