pears.InsertMassCIS07TemplateUpdates
Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
Original SQL
CREATE PROCEDURE "pears"."InsertMassCIS07TemplateUpdates"( /* Application Maintained Function / Procedure - DO NOT EDIT*/ IN @CIS07TemplateID CHAR(20) ) BEGIN FOR "fetchfor" AS "fetchcursor" no scroll cursor FOR SELECT "pay_employee"."personid" AS "nextpersonid" FROM "pay_employee" WHERE "pay_employee"."CIS07TemplateID" = @CIS07TemplateID FOR READ ONLY do CALL "InsertCIS07FromTemplate"("NextPersonID") END FOR END GO COMMENT TO PRESERVE FORMAT ON PROCEDURE "pears"."InsertMassCIS07TemplateUpdates" IS {CREATE PROCEDURE InsertMassCIS07TemplateUpdates /* Application Maintained Function / Procedure - DO NOT EDIT*/ (IN @CIS07TemplateID CHAR(20)) BEGIN FOR fetchfor AS fetchcursor no scroll cursor FOR SELECT pay_employee.personid AS nextpersonid FROM pay_employee WHERE pay_employee.CIS07TemplateID = @CIS07TemplateID FOR READ ONLY do CALL InsertCIS07FromTemplate(NextPersonID) END FOR END }