खोज…


परिचय

यह नमूना एक रैस्टलेट स्क्रिप्ट की मूल संरचना को दर्शाता है जिसका उपयोग किसी बाहरी सिस्टम से डेटा प्राप्त करने के लिए किया जाना है। रेस्टलेट्स एंडपॉइंट हैं जो बाहरी सिस्टम के साथ संचार की अनुमति देने के लिए बनाए गए हैं।

ग्राहक का नाम वापस लें

/**
 * requestdata - the data packet expected to be passed in by external system
 * JSON - data format exchange
 * stringify() convert javascript object into a string with JSON.stringify()
 * nlobjError - add in catch block to log exceptions
 */

function GetCustomerData(requestdata)
{
    var jsonString = JSON.stringify(requestdata);
    nlapiLogExecution('DEBUG', 'JSON', jsonString);

    try
    {
        var customer = requestdata.customer;
        nlapiLogExecution('DEBUG', 'customer', customer);
    }
    catch (err)
    {
        var errMessage = err;
        if(err instanceof nlobjError)
        {
            errMessage = errMessage + ' ' + err.getDetails() + ' ' + errMessage;
        }
        nlapiLogExecution('DEBUG', 'Error', errMessage);
    }
}


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow