500 (Internal Server Error) while submitting the record producer from Service portalDescriptionUnable to submit the record producer from Service Portal on checking browser console shows 500 (Internal Server Error)ResolutionCheck for below probable causes: Defining a default value of a variables as 'null'Catalog Client scripts or UI policies Run scripts used in record producer has setValue() method passing 'null' If no value to be passed on the variable leave the default value or setValue () as empty instead of 'null' Example: g_form.setValue('variable_name', null); change this to g_form.setValue('variable_name', '');