Receiving the 'GlideTime - unparseable date' message when using the TPP (Technology Partner Program) Conversion ScriptIssue When using the TPP (Technology Partner Program) conversion script - SncHierarchyConversionAPI.convertToTPP("insert_table_name"), users commonly receive the following message: 'GlideTime - unparseable date: n', where n is an arbitrary number typically between 0 and 20. This prevents the TPP Conversion Script from kicking off. This message is followed by "TPPMigrater: TPP conversion did NOT complete successfully: no thrown error"CauseThe TPP conversion script takes in the underlying table name as a String. The issue is that the TPP conversion script is expecting the table name in all lowercase characters. All of the examples below contain uppercase characters, and they will all fail with the same message: SncHierarchyConversionAPI.convertToTPP("CMDB"); SncHierarchyConversionAPI.convertToTPP("Cmdb"); SncHierarchyConversionAPI.convertToTPP("cmdB");ResolutionTo fix this, make sure that the table name does not contain any uppercase characters. For example: SncHierarchyConversionAPI.convertToTPP("cmdb")