When adding a new report myDBR prepares a skeleton procedure for you, for example:
CREATE PROCEDURE sp_DBR_demo_continents
AS
However while working on this procedure you may need to save it a few times and this causes an error that this procedure already exists.
I suggest starting the new skeleton with a conditional "drop" statement instead, for example:
if object_id('sp_DBR_demo_continents','P') is not null
drop procedure sp_DBR_demo_continents
go
CREATE PROCEDURE sp_DBR_demo_continents
AS
This way the user can save the procedure as many times as they want while working on it with no errors.
Thanks.