BLST#70282 -- Uitzetten van de instellingen puo_app2enabled niet door app beheerd blst

svn path=/Customer/; revision=54379
This commit is contained in:
Norbert Wassink
2022-01-04 13:21:59 +00:00
parent bd002abac9
commit 2f37fd51d9

46
onces/BLST/BLST#70282.sql Normal file
View File

@@ -0,0 +1,46 @@
--
-- $Id$
--
-- BLST#70282 Uitzetten van de instellingen puo_app2enabled niet door app beheerd blst
--
--
DEFINE thisfile = 'BLST#70282.SQL'
DEFINE dbuser = 'BLST'
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_setting set fac_setting_pvalue=0 where fac_setting_name='puo_app2enabled';
------ 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