PCHE#36676 -- Rapportage voor export schedule toevoegen.

svn path=/Customer/trunk/; revision=29631
This commit is contained in:
Arthur Egberink
2016-06-03 08:19:30 +00:00
parent 0012c4d1d4
commit 74ec3b57ed

View File

@@ -1723,6 +1723,21 @@ AS
AND p.prs_perslid_key(+) = ft.prs_perslid_key
AND f.fin_factuur_statuses_key = stat.fin_factuur_statuses_key(+);
-- PCHE#36676
CREATE OR REPLACE VIEW pchx_v_rap_export_schedule
(
hide_f_orderby,
exportnaam,
startdatum,
uitvoerdatum
)
AS
SELECT 1000000 - imp_schedule_key,
imp_schedule_name,
imp_schedule_aanmaak,
imp_schedule_done
FROM imp_schedule;
BEGIN adm.systrackscriptId('$Id$', 0); END;
/