wishalsangole4444
02/27/2025, 6:29 PMCeligo AI
02/27/2025, 6:29 PMAI generated answer (using internal Slack threads):If you want to get the data from a Suitelet without generating a PDF, you can use the
N/currentRecordForm.clientScriptModulePathjavascript
define(['N/currentRecord'], function(currentRecord) {
    function getDataFromRecord() {
        var record = currentRecord.get();
        var fieldValue = record.getValue({
            fieldId: 'your_field_id'
        });
        return fieldValue;
    }
    return {
        getDataFromRecord: getDataFromRecord
    };
});your_field_idhttps.ServerRequestCeligo AI
02/27/2025, 6:29 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.839659333
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.837223
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.834320545
Celigo AI
02/27/2025, 6:29 PM