CONN#19918

svn path=/Customer/trunk/; revision=14830
This commit is contained in:
Arthur Egberink
2011-06-08 11:37:44 +00:00
parent 60ad5da109
commit 51d464aa6f

View File

@@ -1,7 +1,7 @@
-- Script containing customer specific configuration sql statements for CONN: Connexxion -- Script containing customer specific configuration sql statements for CONN: Connexxion
-- (c) 2005-2010 SG|facilitor bv -- (c) 2005-2010 SG|facilitor bv
-- $Revision: 165 $ -- $Revision: 166 $
-- $Modtime: 8-06-11 13:21 $ -- $Modtime: 8-06-11 13:29 $
-- --
-- Support: +31 53 4800710 -- Support: +31 53 4800710
@@ -3615,6 +3615,11 @@ CREATE OR REPLACE PACKAGE BODY CONN_HALTES AS
v_LIJNNUMMER := substr(p_LIJNNUMMER,1,200); v_LIJNNUMMER := substr(p_LIJNNUMMER,1,200);
v_DEEL_OMSCHRIJVING := substr(c_halte_prefix||v_HALTECODE||' '||v_HALTENAAM,1,30); v_DEEL_OMSCHRIJVING := substr(c_halte_prefix||v_HALTECODE||' '||v_HALTENAAM,1,30);
-- controleer of de haltecode wel 8 posities is. Anders gaan we testdata importeren.
IF length(v_haltecode) <> 8 THEN
RETURN c_error_result;
END IF;
select get_halte_key(v_HALTECODE,c_halte_code) select get_halte_key(v_HALTECODE,c_halte_code)
into v_ins_deel_key into v_ins_deel_key
from dual; from dual;
@@ -10313,7 +10318,7 @@ END conn_update_inspectieobj;
BEGIN fac.registercustversion('CONN', 44); END; BEGIN fac.registercustversion('CONN', 44); END;
/ /
BEGIN adm.systrackscript('$Workfile: conn.sql $', '$Revision: 165 $', 0); END; BEGIN adm.systrackscript('$Workfile: conn.sql $', '$Revision: 166 $', 0); END;
/ /
COMMIT; COMMIT;