This the error which Im getting when opening the linked report :
"
Could not execute the report. There was an error in the report.
Illegal mix of collations (utf8_general_ci,COERCIBLE) and (latin1_swedish_ci,IMPLICIT) for operation '='"
Linked Report procedure :
DROP PROCEDURE IF EXISTS sp_DBR_ProjectSummaryLinked
$$
CREATE PROCEDURE sp_DBR_ProjectSummaryLinked
(monthN varchar(45))
Begin
select APP_NUMBER as ID,txt_prj_CallID as Project ID / Call ID
,txtPurchase_Order_Number as Purchase Order No
,
dt_Project_approved_date as Project Approve Date
,cmb_prj_Product as Project / Product
,txt_prj_Title as Project Titles
,
cmb_prj_Project_Manager as Project Manager
,cmb_prj_BD_Account_Manager as Business Account Manager
,
current_project_status as Project Status
,chosen_prj_next_Phase as Project Phase
,SIT_Actual_End as Deployment-SIT End Date
,
UAT_A_End as Deployment-UAT End Date
, Cut_s_End as Deployment-Cutover End Date
from wf_project_tracker.project_tracker_master
where Current_Project_phase_master like '%Planning and Requirement Finaliz%'
and monthname(Last_Modification_date_time)=monthN;
end
$$
Can you please help me, Why this problem is coming?