40 lines
1.1 KiB
SQL
40 lines
1.1 KiB
SQL
-- Script containing customer changes to synchronize the primary company employees in an XD configuration.
|
|
-- (c) 2013 SG|facilitor
|
|
-- $Revision$
|
|
-- $Id$
|
|
--
|
|
-- Support: +31 53 4800700
|
|
|
|
SET ECHO ON
|
|
SET DEFINE ON
|
|
column fcltlogfile new_value fcltlogfile NOPRINT;
|
|
select UPPER(USER) || '_PCHX' || '.lst' as fcltlogfile from dual;
|
|
spool &fcltlogfile
|
|
SET DEFINE OFF
|
|
|
|
INSERT INTO fac_import_app (fac_import_app_code,
|
|
fac_import_app_oms,
|
|
fac_import_app_prefix,
|
|
fac_import_app_xsl,
|
|
fac_functie_key,
|
|
fac_import_app_folder,
|
|
fac_import_app_files,
|
|
fac_import_app_action)
|
|
VALUES ('PERSLID',
|
|
'PCHx: Inlezen personen vanuit de PCHD database',
|
|
'PCHX',
|
|
'../../cust/PCHX/xsl/prs_import.xsl',
|
|
75,
|
|
'.',
|
|
'xd_perslid_list.xml',
|
|
'ORACLE');
|
|
|
|
BEGIN adm.systrackscriptId('$Id$', 0); END;
|
|
/
|
|
|
|
|
|
COMMIT;
|
|
|
|
SPOOL OFF
|
|
|