The function to fetch parameter from URL getParameterByName: function (name, url) { try { if (!url) url = window.location.href; … Continue reading Fetch parameter from URL
Tag: get parameter
URL parameters are not passed properly through resolve url
Scenario: When we try to pass the parameters through url, but unable to get values from the parameters. var reportURL = url.resolveScript({ scriptId: ‘customscript_jj_sl_cpe_dashboard’, deploymentId: ‘customdeploy_jj_sl_cpe_dashboard’, params: { ‘buff_filters’: buff_filters, ‘otherFilters’: otherFilters, ‘bill_filters’: bill_filters }, returnExternalUrl: true }); var buff_filters = scriptContext.request.parameters.buff_filters; is not working where buff_filters=[[“custrecord_jj_cpebuff_billtype”,”is”,”Buffer”]] Solution: The issue might be related to how… Continue reading URL parameters are not passed properly through resolve url
Get parameter from URL
Get parameter from URL