Monday, June 17, 2019

Setting the Create PO field to null via SuiteScript

There is an existing enhancement (issue # 118393) for setting the field value of 'createpo' field to null in Sales Order item sublist via Web Services.

As an alternate solution, one can use a user event script on a Before Submit function to achieve this goal.

Below is a sample code that can be used as a guide:

function beforeSubmit(type)
{
     var count = nlapiGetLineItemCount('item');
    for (i=1; i<= count; i++)
    { 
        var currentContext = nlapiGetContext();   

        //setting of 'createpo' field only happens when the script is triggered via Web Services 
        //add other if conditions here, if needed
        if((currentContext.getExecutionContext() == 'webservices'))
        { 
            nlapiSetLineItemValue('item', 'createpo', i, null);
        }
    }
}

DISCLAIMER: The sample code described herein is provided on an "as is" basis, without warranty of any kind, to the fullest extent permitted by law. Netsuite Inc. does not warrant or guarantee the individual success developers may have in implementing the sample code on their development platforms or in using their own Web server configurations.

Netsuite Inc. does not warrant, guarantee or make any representations regarding the use, results of use, accuracy, timeliness or completeness of any data or information relating to the sample code. Netsuite Inc. disclaims all warranties, express or implied, and in particular, disclaims all warranties of merchantability, fitness for a particular purpose, and warranties related to the code, or any service or software related thereto.

Netsuite Inc. shall not be liable for any direct, indirect or consequential damages or costs of any type arising out of any action taken by you or others related to the sample code.

No comments:

Post a Comment