I have a stored procedure sp_DBR_program_list(username char) on MYDBR DB.
I have created a popup parameter and the query is:
sp_DBR_program_list(inLogin)
But don't works, this is the error:
Report procedure 'sp_DBR_program_list(inLogin)' does not exists in the database. Make sure the procedure is correctly created.
I have created the sp with the user admin of the MYDBR database.
Other test that shows the sp works and exists...
Parameter query: sp_DBR_program_list
Error: DB error (1318): Incorrect number of arguments for PROCEDURE sp_DBR_program_list; expected 1, got 0
SQL: call sp_DBR_program_list();