FSM - older Survey content is still displayed within the mobile app. Issue The customer has modified a survey (within FSM), however the changes do not reflect on mobile. The below KB has been followed, however has no impact:https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1920099SymptomsSteps to Reproduce: 1. In the agent mobile app login with agent details 2. in the "My work" section, on the top row scroll horizontally and click "Work Orders"3. Open any work order with questionnaire4. click on the three dots menu button in top right corner observe the questionnaire.5. Notice the first section is incorrectly displayed and/or questions are inconsistent between platform instance and mobile instanceReleaseBehaviour since W and beforeCauseIn asmt_metric table , the category field is empty(possible probably due to direct deletion of category from table record rather than survey designer) . ResolutionThe category is a mandatory field , hence it cannot be set to empty . Once it's made non null , the issue will resolve itself. However if the user want they can apply below workaround to work even with empty category (this will not consider those asmt_metric records)Fix :Script include : FSMMobileQuestionnaireHelperMethod name ; loadSurveyLines 19-25:var metricGr = new GlideRecord('asmt_metric');metricGr.addQuery('metric_type', metricTypeId);metricGr.addQuery('active', '1');metricGr.addNotNullQuery('category'); // this is the null check fix addedmetricGr.orderBy('category.order');metricGr.orderBy('order');metricGr.query();Post this steps we need to flush the cache as mentioned in the kb https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1920099