Passing parameters from a client script to external suitelet form

If we have to pass parameters from a client script to an external suitelet form, we cannot create an external URL to pass parameters of the suitelet script using urlResolveScript in the client script. Since the client script is attached to the suitelet script, we can get the URL of the suitelet using the window.location… Continue reading Passing parameters from a client script to external suitelet form

Points To Be Noted While Passing a Boolean Variable To Backend In An Extension

While working on any SCA extension having both javascript and suite script module, if we are passing a boolean value(true/false) to the suite script module there is a chance for changing the variable type to string. So if you are checking any condition with that variable make sure to check the type of the variable… Continue reading Points To Be Noted While Passing a Boolean Variable To Backend In An Extension