1e41f4b71Sopenharmony_ci# reminderAgentManager Error Codes 2e41f4b71Sopenharmony_ci 3e41f4b71Sopenharmony_ci> **NOTE** 4e41f4b71Sopenharmony_ci> 5e41f4b71Sopenharmony_ci> This topic describes only module-specific error codes. For details about universal error codes, see [Universal Error Codes](../errorcode-universal.md). 6e41f4b71Sopenharmony_ci 7e41f4b71Sopenharmony_ci## 1700001 Notification Disabled 8e41f4b71Sopenharmony_ci 9e41f4b71Sopenharmony_ci**Error Message** 10e41f4b71Sopenharmony_ci 11e41f4b71Sopenharmony_ciNotification is not enabled. 12e41f4b71Sopenharmony_ci 13e41f4b71Sopenharmony_ci**Description** 14e41f4b71Sopenharmony_ci 15e41f4b71Sopenharmony_ciThe application is not allowed to send notifications when **publishReminder()** is called. 16e41f4b71Sopenharmony_ci 17e41f4b71Sopenharmony_ci**Possible Causes** 18e41f4b71Sopenharmony_ci 19e41f4b71Sopenharmony_ci1. The application has not requested notification to be enabled. 20e41f4b71Sopenharmony_ci2. The reminder function is disabled. 21e41f4b71Sopenharmony_ci 22e41f4b71Sopenharmony_ci**Solution** 23e41f4b71Sopenharmony_ci 24e41f4b71Sopenharmony_ci1. Call [Notification.requestEnableNotification](../apis-notification-kit/js-apis-notification.md#notificationrequestenablenotification8) to request notification to be enabled for the application. 25e41f4b71Sopenharmony_ci2. Check whether the notification function is disabled. 26e41f4b71Sopenharmony_ci 27e41f4b71Sopenharmony_ci## 1700002 Too Many Reminders 28e41f4b71Sopenharmony_ci 29e41f4b71Sopenharmony_ci**Error Message** 30e41f4b71Sopenharmony_ci 31e41f4b71Sopenharmony_ciThe number of reminders exceeds the limit. 32e41f4b71Sopenharmony_ci 33e41f4b71Sopenharmony_ci**Description** 34e41f4b71Sopenharmony_ci 35e41f4b71Sopenharmony_ciThe number of reminders exceeds the limit when **publishReminder()** is called. 36e41f4b71Sopenharmony_ci 37e41f4b71Sopenharmony_ci**Possible Causes** 38e41f4b71Sopenharmony_ci 39e41f4b71Sopenharmony_ci1. The number of reminders generated for the entire system exceeds 2000 in API version 9 or 12000 in API version 10 or later. 40e41f4b71Sopenharmony_ci2. The number of reminders generated for the application exceeds 30 in API version 9 or 30 (for a common application) or 10000 (for a system application) in API version 10 or later. 41e41f4b71Sopenharmony_ci 42e41f4b71Sopenharmony_ci**Solution** 43e41f4b71Sopenharmony_ci 44e41f4b71Sopenharmony_ciDelete unnecessary reminders. 45e41f4b71Sopenharmony_ci 46e41f4b71Sopenharmony_ci## 1700003 Nonexistent Reminder 47e41f4b71Sopenharmony_ci 48e41f4b71Sopenharmony_ci**Error Message** 49e41f4b71Sopenharmony_ci 50e41f4b71Sopenharmony_ciThe reminder does not exist. 51e41f4b71Sopenharmony_ci 52e41f4b71Sopenharmony_ci**Description** 53e41f4b71Sopenharmony_ci 54e41f4b71Sopenharmony_ciThe reminder passed in **cancelReminder()** does not exist. 55e41f4b71Sopenharmony_ci 56e41f4b71Sopenharmony_ci**Possible Causes** 57e41f4b71Sopenharmony_ci 58e41f4b71Sopenharmony_ci1. The reminder has expired. 59e41f4b71Sopenharmony_ci2. The reminder has been deleted. 60e41f4b71Sopenharmony_ci 61e41f4b71Sopenharmony_ci**Solution** 62e41f4b71Sopenharmony_ci 63e41f4b71Sopenharmony_ci1. Check whether the reminder is valid. 64e41f4b71Sopenharmony_ci2. Check whether the reminder has been deleted. 65e41f4b71Sopenharmony_ci 66e41f4b71Sopenharmony_ci## 1700004 Nonexistent Bundle Name 67e41f4b71Sopenharmony_ci 68e41f4b71Sopenharmony_ci**Error Message** 69e41f4b71Sopenharmony_ci 70e41f4b71Sopenharmony_ciThe bundle name does not exist. 71e41f4b71Sopenharmony_ci 72e41f4b71Sopenharmony_ci**Description** 73e41f4b71Sopenharmony_ci 74e41f4b71Sopenharmony_ciThe bundle name passed is not found. 75e41f4b71Sopenharmony_ci 76e41f4b71Sopenharmony_ci**Possible Causes** 77e41f4b71Sopenharmony_ci 78e41f4b71Sopenharmony_ci1. The bundle name is incorrect. 79e41f4b71Sopenharmony_ci2. The application is not installed. 80e41f4b71Sopenharmony_ci 81e41f4b71Sopenharmony_ci**Solution** 82e41f4b71Sopenharmony_ci 83e41f4b71Sopenharmony_ciCheck whether the bundle name exists. 84