Variable is not updated with the question field ,showing the error "FAILED TRYING TO EXECUTE ON CONNECTION glide.3 (connpid=669523):"DescriptionThe update on the label of a variable on a catalog item. The platform doesn't allow to change us change. It is showing the error below. FAILED TRYING TO EXECUTE ON CONNECTION glide.3 (connpid=669523): glide.db.BatchStatement$StatementContainer@b5ee59 java.sql.BatchUpdateException: (conn=669523) Duplicate entry 'question-questiontext-GU-NU' for key 'name2' : java.sql.SQLException: java.sql.BatchUpdateException: (conn=669523) Duplicate entryCauseThe field "Question" they are trying to update is a "translated_field". Meaning depending on the language they are using to update the records, the platform will insert a record to the 'sys_translated" table. From the full error stack trace you can see the insert statement below is causing the error: INSERT INTO sys_translated (`language`,`label`,`sys_id`,`name`,`value`,`element`) VALUES('NU','GU TEST','268d00c71b978c543455ff72cd4bcbe3','question','GU','question_text') The user profile has not associated with the correct language hence it is causing the issue. ResolutionTo perform a translated field update, it is essential to ensure that the updated user's language is correct. Therefore, first access the logged user's profile, verify their language field, and then proceed to update it with the appropriate language.