• if you can post procedure code.

    First error is:

    In your stored procedure [Rep_Accuracy_Achievement_Analysis_Report]

    you have insert data from another stored procedure in temp table. that is not allowed and you attempt to bubbleup data from a chain in stored procedures. Only one insert into exec is allow at time.

    You can solve this with: create procedure with output parameter, create table valued function or with global temp table e.t.c

    second error is consequence of first,