PCHD#60479 VRA-afdelingen zonder omschrijving niet meer aanmaken via import

svn path=/Customer/trunk/; revision=45144
This commit is contained in:
Sander Schepers
2019-12-06 11:19:41 +00:00
parent c32e24e6c9
commit 5a51cfc6f5

View File

@@ -757,6 +757,7 @@ IS
IS
SELECT UPPER(prs_perslid_wm) prs_perslid_wm
FROM pchd_imp_prs
WHERE prs_perslid_wm IS NOT NULL
GROUP BY UPPER (prs_perslid_wm);
--Bepalen alle organisaties in het import bestand.
@@ -764,6 +765,7 @@ IS
IS
SELECT UPPER (prs_perslid_organisation) prs_perslid_organisation, UPPER (prs_perslid_companycode) prs_perslid_companycode, UPPER (prs_perslid_wm) prs_perslid_wm
FROM pchd_imp_prs
WHERE prs_perslid_organisation IS NOT NULL AND prs_perslid_wm IS NOT NULL
GROUP BY UPPER (prs_perslid_organisation), UPPER (prs_perslid_companycode), UPPER (prs_perslid_wm);
--Bepalen alle afdeling omschrijvingen in het import bestand.
@@ -771,6 +773,7 @@ IS
IS
SELECT UPPER(prs_afdeling_naam) prs_afdeling_naam, UPPER (prs_perslid_organisation) prs_perslid_organisation, UPPER (prs_perslid_wm) prs_perslid_wm
FROM pchd_imp_prs
WHERE prs_perslid_organisation IS NOT NULL AND prs_perslid_wm IS NOT NULL AND prs_afdeling_naam IS NOT NULL
GROUP BY UPPER(prs_afdeling_naam), UPPER (prs_perslid_organisation), UPPER (prs_perslid_wm);
CURSOR cperslid