nybu#56373: Actielijst campus | Planbord voor campuskamers

svn path=/Customer/; revision=48454
This commit is contained in:
Suzan Wiegerinck
2020-10-13 08:51:06 +00:00
parent 08731ebcb9
commit 5086613296

View File

@@ -0,0 +1,41 @@
--
-- $Id$
--
-- nybu#56373: Actielijst campus | Planbord voor campuskamers
-- nieuw rapport CAMPUS: Planbord: dit overzicht is op basis van een procedure om de juiste filters op alle data goed te krijgen.
-- Dus in de tabel FAC_USRRAP moet dan nog wel een en ander goed ingesteld worden
--
DEFINE thisfile = 'nybu#56373.SQL'
DEFINE dbuser = '^nybu'
SET ECHO ON
SET DEFINE ON
COLUMN fcltlogfile NEW_VALUE fcltlogfile NOPRINT;
COLUMN fcltcusterr NEW_VALUE fcltcusterr NOPRINT;
WHENEVER SQLERROR CONTINUE;
SELECT adm.getscriptspoolfile('&thisfile') AS fcltlogfile FROM DUAL;
SPOOL &fcltlogfile
WHENEVER SQLERROR EXIT;
SELECT adm.checkscriptcust('&dbuser') AS fcltcusterr FROM DUAL;
WHENEVER SQLERROR CONTINUE;
PROMPT &fcltcusterr
SET DEFINE OFF
------ payload begin ------
UPDATE fac_usrrap
SET fac_usrrap_vraagbegindatum = 1, fac_usrrap_vraageinddatum = 1
WHERE fac_usrrap_key = 1901;
COMMIT;
------ payload end ------
SET DEFINE OFF
BEGIN adm.systrackscriptId ('$Id$', 1); END;
/
COMMIT;
SET ECHO OFF
SPOOL OFF
SET DEFINE ON
PROMPT Logfile of this upgrade is: &fcltlogfile