PIVP#81344 -- Uitwisselingsbestand ruimte voor Exact aanpassing

svn path=/Customer/trunk/; revision=63025
This commit is contained in:
Norbert Wassink
2023-12-20 12:32:07 +00:00
parent d0a01402ec
commit 254f9458bb

View File

@@ -4345,7 +4345,7 @@ CREATE OR REPLACE VIEW PIVP_V_EXPORT_EXACT_RUIMTE (
AS AS
SELECT fac_rapport_regel ,fac_rapport_volgnr SELECT fac_rapport_regel ,fac_rapport_volgnr
FROM fac_rapport FROM fac_rapport
WHERE fac_rapport_node LIKE 'EXA_RUIMTE%' WHERE fac_rapport_node = 'EXA_RUIMTE'
ORDER BY fac_rapport_node,fac_rapport_volgnr; ORDER BY fac_rapport_node,fac_rapport_volgnr;
-- Export in exact formaat die alle ruutes expoerteerd -- Export in exact formaat die alle ruutes expoerteerd
@@ -4363,11 +4363,11 @@ AS
v_relatie_code VARCHAR2(10); v_relatie_code VARCHAR2(10);
BEGIN BEGIN
v_bestand := 'EXA_RUIMTEA'; v_bestand := 'EXA_RUIMTE_A';
v_counter :=0; v_counter :=0;
v_relatie_code :='--------'; v_relatie_code :='--------';
DELETE FROM fac_rapport where fac_rapport_node='EXA_RUIMTEA'; DELETE FROM fac_rapport where fac_rapport_node='EXA_RUIMTE_A';
COMMIT; COMMIT;
pivp.add_xml_row (v_bestand, '<?xml version="1.0" encoding="windows-1252"?>'); pivp.add_xml_row (v_bestand, '<?xml version="1.0" encoding="windows-1252"?>');
@@ -4440,7 +4440,7 @@ CREATE OR REPLACE VIEW PIVP_V_EXPORT_EXACT_ALL_RUIMTE (
AS AS
SELECT fac_rapport_regel ,fac_rapport_volgnr SELECT fac_rapport_regel ,fac_rapport_volgnr
FROM fac_rapport FROM fac_rapport
WHERE fac_rapport_node LIKE 'EXA_RUIMTEA%' WHERE fac_rapport_node = 'EXA_RUIMTE_A'
ORDER BY fac_rapport_node,fac_rapport_volgnr; ORDER BY fac_rapport_node,fac_rapport_volgnr;