Tyler Bobik
07/25/2019, 12:03 PMfunction openNewCustomRecord() {
log.debug('Opening Window');
window.open(window.location.origin + '/app/common/custom/custrecordentry.nl?rectype=620&whence=');// Needs replaed with non-hardcoded value
}
heckytect
07/25/2019, 1:05 PM'N/url'
.heckytect
07/25/2019, 1:06 PMvar t = url.resolveRecord({
recordType: 'customrecord_id'
});
openNewCustomRecord(t);
function openNewCustomRecord(d) {
log.debug('Opening Window');
window.open(d);// Needs replaed with non-hardcoded value
}
Tyler Bobik
07/25/2019, 1:19 PMTyler Bobik
07/25/2019, 2:54 PM