From 96bfc53ebc261440cbad992fec3f38861a4ffc9e Mon Sep 17 00:00:00 2001 From: Suzan Wiegerinck Date: Tue, 15 Jun 2021 08:31:26 +0000 Subject: [PATCH] FLEX#65401: Implementatie Facilitor Flex bij ROGPlus --> klaarzetten voor productie svn path=/Customer/; revision=51931 --- onces/FLEX/FLEX#65401.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/onces/FLEX/FLEX#65401.sql b/onces/FLEX/FLEX#65401.sql index ffa33e884..f14c5c8c7 100644 --- a/onces/FLEX/FLEX#65401.sql +++ b/onces/FLEX/FLEX#65401.sql @@ -27,7 +27,7 @@ SET DEFINE OFF ------ payload begin ------ DECLARE - -- Onderstaande cursor bevat alle mdw ROGPlus/ fac_groep_key = 221; + -- Onderstaande cursor bevat alle mdw ROGPlus/ fac_groep_key = 261; CURSOR c_mdw IS SELECT p.prs_perslid_key FROM prs_perslid p @@ -35,13 +35,13 @@ DECLARE AND p.prs_perslid_verwijder IS NULL AND p.prs_perslid_key NOT IN (SELECT g.prs_perslid_key FROM fac_gebruikersgroep g - WHERE g.fac_groep_key = 221); + WHERE g.fac_groep_key = 261); BEGIN FOR rec IN c_mdw LOOP BEGIN INSERT INTO fac_gebruikersgroep (fac_groep_key, prs_perslid_key) - VALUES (221, rec.prs_perslid_key); + VALUES (261, rec.prs_perslid_key); COMMIT; END;