Friday, May 12, 2023

Orcle VBCS Codes

 

Oracle VBCS Code 



Exporting VBCS table to XL Shhet

define(['xlsx'], function(XLSX) {
'use strict';

class PageModule {
}

PageModule.prototype.downloadXLS = function (sdp){
var elt = document.getElementById(sdp);
var wb = XLSX.utils.table_to_book(elt, { sheet: "sheet1" });
return XLSX.writeFile(wb, 'MySheetName.xlsx');

}

return PageModule;
});