AAVL#30680

svn path=/Customer/; revision=23229
This commit is contained in:
Ruud Lipper
2014-11-04 07:56:06 +00:00
parent 2ec7d28f81
commit 6f43958581

View File

@@ -0,0 +1,24 @@
-- Customer specific once-script AAVL
-- Support: +31 53 4800700
SET ECHO ON
SPOOL xAAVL#30680.lst
SET DEFINE OFF
-- AAVL#30680: update kostensoort van factuur 123630 naar CV OND (=key 44)
UPDATE fin_factuur
SET prs_kostensoort_key = 44
WHERE fin_factuur_key = 123630;
-- AAVL#30680: update kostensoort van factuur 123715 naar 'CV BEWAK OVR-2.2.90 - Bewaking & Beveiliging Overig'(=key 56)
UPDATE fin_factuur
SET prs_kostensoort_key = 56
WHERE fin_factuur_key = 123715;
BEGIN adm.systrackscriptId('$Id$'); END;
/
commit;
SPOOL OFF