Here is how I declared the custom UUID and respective gatt_db declarations.
UUID128(uuid_service_ssf_sc_ctrl_stat, 0xE0, 0x1C, 0x4B, 0x5E, 0x1E, 0xEB, 0xA1, 0x5C, 0xEE, 0xF4, 0x5E, 0xBA, 0x05, 0x01, 0xFF, 0x01)
UUID128(uuid_char_stat_lock, 0xE0, 0x1C, 0x4B, 0x5E, 0x1E, 0xEB, 0xA1, 0x5C, 0xEE, 0xF4, 0x5E, 0xBA, 0x06, 0x01, 0xFF, 0x01)
UUID128(uuid_char_stat_pollu, 0xE0, 0x1C, 0x4B, 0x5E, 0x1E, 0xEB, 0xA1, 0x5C, 0xEE, 0xF4, 0x5E, 0xBA, 0x08, 0x01, 0xFF, 0x01)
PRIMARY_SERVICE_UUID128(service_ssf_sc_ctrl_stat, uuid_service_ssf_sc_ctrl_stat)
CHARACTERISTIC_UUID128(char_stat_lock, uuid_char_stat_lock, (gGattCharPropNotify_c))
VALUE_UUID128(value_char_stat_lock, uuid_char_stat_lock, (gPermissionNone_c), 2, 0x22,0x22) // single int
CCCD(cccd_char_stat_lock)
CHARACTERISTIC_UUID128(char_stat_pollu, uuid_char_stat_pollu, (gGattCharPropNotify_c))
VALUE_UUID128(value_char_stat_pollu, uuid_char_stat_pollu, (gPermissionNone_c), 3, 0x00,0x00,0x00) // Int array of 3
CCCD(cccd_char_stat_pollu)
I do not find any issue with this when compared with the document you shared.
Though I do have all the system working fine previously then i accidentally deleted my gatt_db and gatt_uuid128 files. After making them again I'm getting this "gDevDbCccdNotFound" error.