i have this code that can copy and edit spreadsheet in the same parent folder. A few months ago it still work but now i get this error message “Exception: Service error: Drive“. Here’s the code
var outlet = [
["p1", "place1", "great place 1"],
["p2", "place2", "great place 2"],
];
function looping() {
for (var i = 0; i < outlet.length; i++) {
duplicate(outlet[i][2], i);
Logger.log(outlet[i][1]);
}
}
function duplicate(nama, i) {
const ss = SpreadsheetApp.getActiveSpreadsheet();
const ssid = ss.getId();
const ssdrive = DriveApp.getFileById(ssid);
const parent = ssdrive.getParents().next();
const newss = ssdrive.makeCopy(nama, parent);
const newurl = newss.getUrl();
modify(newurl, i);
debugger;
}
function modify(url, i) {
const ssopen = SpreadsheetApp.openByUrl(url);
const range1 = ssopen.getRange("A1");
const range2 = ssopen.getRange("A2");
const toko = ssopen.getDataRange();
const real = outlet[i][1].replace("SPOKE SMG ","").replace(" ","")
range1.setValue(outlet[i][0]);
range2.setValue(outlet[i][1]);
ssopen.setNamedRange(real, toko);
Logger.log(outlet[i][0]);
debugger;
}
sorry for the messy language