Human Resources (HR) profiles not getting created as expected after San Diego upgradeDescriptionWhen we generate new system user records after the San Diego upgrade, the HR Profile does not get createdCauseWhen clicking on the "Create Human Resources Profile" related link, debugged logs show the following error: Cannot find function syncNewRecord in object [object Object]. sys_script_include.ba5370019f22120047a2d126c42e7000.script: Line(238) column(0) It is pointing to Script Include: 'hr_Profile' where it is not able to find function "syncNewRecord" which is coming from another Script Include "hr_Synchronize"The Out of the box Script Include "hr_Synchronize" has been customized and above function is not available in the script includeResolutionTo resolve the issue, revert the Script Include "hr_Synchronize" to Out of the box version to make the function available.Additional InformationThis is a new inclusion of logic for Script Include: "hr_profile" in the San Diego version. In San Diego, new code has been introduced to the "_createProfileFromUser" method that is different from the Rome Version. var hrSync = new hr_Synchronize();var hrProfile = hrSync.syncNewRecord(user); Compare below two files under "_createProfileFromUser" function in Script Include: 'hr_Profile' for better understanding