I installed the latest version of Powerbuilder yesterday and re-compiled my program. This morning I get an error on a line of code that was working before the latest install. The error message reads: “Null object referenced at line 110 in clicked event …..”.
Line 110 in BOLD below:
105 DECLARE proc_Email_PO_APR_REJ PROCEDURE FOR dbo.proc_Email_PO_APR_REJ
106 @user_name = :ls_user, @date = :ldt_now, @pm = :is_pm, @alt1 = :is_alt1, @alt2 = :is_alt2
107
108 USING SQLCA;
109
110 EXECUTE proc_Email_PO_APR_REJ;
Why am I getting an error on executing a stored procedure with the new IDE?