48 lines
1.5 KiB
SQL
48 lines
1.5 KiB
SQL
-- Customer specific once-script BLCC2.
|
|
--
|
|
-- (c) 2015 Facilitor B.V.
|
|
--
|
|
-- Support: +31 53 4800700
|
|
SET ECHO ON
|
|
SPOOL xBLCC2.lst
|
|
SET DEFINE OFF
|
|
|
|
INSERT INTO fac_api (fac_api_name, fac_api_filepath, fac_api_loglevel, fac_api_stylesheet, fac_api_options_json)
|
|
SELECT 'AADS2BLCC', 'appl/api/api_mldsoap.asp', NULL, NULL, NULL
|
|
FROM DUAL
|
|
WHERE NOT EXISTS (SELECT 1
|
|
FROM fac_api
|
|
WHERE fac_api_name = 'AADS2BLCC');
|
|
|
|
COMMIT;
|
|
|
|
-- Pseudo-user tbv. koppeling met DSM (AADS-domein); dezelfde module, afdeling
|
|
-- en functie als _FACILITOR (= 4)!
|
|
INSERT INTO prs_perslid (prs_perslid_module,
|
|
prs_srtperslid_key,
|
|
prs_afdeling_key,
|
|
prs_perslid_naam,
|
|
prs_perslid_voornaam,
|
|
prs_perslid_nr,
|
|
prs_perslid_oslogin,
|
|
prs_perslid_systeemadres,
|
|
prs_perslid_flags,
|
|
prs_perslid_apikey)
|
|
SELECT p.prs_perslid_module,
|
|
p.prs_srtperslid_key,
|
|
p.prs_afdeling_key,
|
|
'API-user tbv. DSM',
|
|
'-',
|
|
'NIET WEG!!!',
|
|
'_AADS',
|
|
'https://aads.facilitor.nl/default.asp?sso=0&API=BLCC2AADS&APIKEY=ZLnGjFjmcYFDzEOkuYLglswbTHTAWgfx',
|
|
0,
|
|
'monqDCEWOeirCpxjJQvvHunshbMUTmqY'
|
|
FROM prs_perslid p
|
|
WHERE p.prs_perslid_key = 4;
|
|
|
|
COMMIT;
|
|
BEGIN adm.systrackscriptId('$Id$'); END;
|
|
/
|
|
SPOOL OFF
|