Hi all, in SuiteScript 1.0 referencing a script parameter on a script record other than the script executing was as easy as nlapiGetContext().getSetting('SCRIPT', {param_id}). But with 2.0 it seems you can either only reference the current script (runtime.getCurrentScript()) or try to get a company-level script parameter by loading the config (config.load({type: config.Type.COMPANY-PREFERENCES}). I have a user event that needs to get a parameter from a different script, but the UE executes for a user who does not have the Set Up Company permission, and so can't get to the Company Preferences config for the company-level script param. What's my option here? Is there a 2.0 method that would allow me to grab the parameter from a different script? I don't want to create a param on the current script because I don't want to have to manage that data in 2 places. Am I missing something basic here?