Whilst creating a picklist O7GMORES procedure is called. There is an error in the code of SQL Server. See line 171 >> line 176. SELECT @sPar1 = e.evt_object, @sPar1 = e.evt_obrtype, @sPar1 = e.evt_obtype, @sPar1 = e.evt_object_org FROM r5events e WHERE e.evt_code = @sKey1 The select is showing 4 times @sPar1. This should be @sPar1, @sPar2, @sPar3 and @sPar4 ? Actual results Wrong code Expected results @sPar1, @sPar2, @sPar3 and @sPar4 Steps to reproduce - |