SEPA Nuclet update v1.2 to v2.0: reference attribute split, SEPA Export File business object and SQL data migrations. |
Language: Deutsch · English
Update from v1.2 to v2.0: dedicated Creditor/Debitor Reference attributes, a new SEPA Export File BO and the required data migrations.
Auf dieser Seite |
This page was machine-translated from German as a first draft and is currently under review. The authoritative source remains the German original (see the language switch above). |
The following changes and extensions must be observed on an update:
Data migrations must be carried out for both changes if SEPA exports have already been performed in your system. If you have been using an older version of the SEPA Nuclet in your application and an update to version 2.0.0 is pending, please observe the notes listed here. |
Please carry out the steps described in section 5.1.2.
Please carry out the steps described in section 4.2 for the newly created object import "SEPA Order Type".
After the Nuclet transfer, please run the following SQL statements on your database schema. The reason for this are the changes described above under "Notes on the background of the necessary adjustments".
-- Anmerkung: "abcd_" steht für das tatsächliche Tabellenpräfix der Tabelle. -- Es entspricht dem Wert "Lokaler Identifizierer" im Nuclet-Managment des SEPA-Nuclets. -- -- Bitte führen Sie diese Anweisungen erst nach dem Import des SEPA-Nuclets v2.0.0 und den durchgeführten Objektimporten durch. UPDATE abcd_sepaexport SET intid_strordertype = (SELECT intid FROM abcd_sepaordertype WHERE strkey = 'DIRECT_DEBIT_INITIATION'); UPDATE abcd_sepaexport SET struid_nuclosprocess = (SELECT struid_strprocess FROM abcd_sepaordertype WHERE strkey = 'DIRECT_DEBIT_INITIATION'); |
-- Anmerkung: "abcd_" steht für das tatsächliche Tabellenpräfix der Tabelle. -- Es entspricht dem Wert "Lokaler Identifizierer" im Nuclet-Managment des SEPA-Nuclets. -- -- Bitte führen Sie diese Anweisung erst nach dem Import des SEPA-Nuclets v2.0.0 durch. UPDATE abcd_sepatransaction SET intid_strdebitorreference = intid_strreference; |
-- Anmerkung: "abcd_" steht für das tatsächliche Tabellenpräfix der Tabelle.
-- Es entspricht dem Wert "Lokaler Identifizierer" im Nuclet-Managment des SEPA-Nuclets.
--
-- Bitte führen Sie diese Anweisung direkt nach dem Import des SEPA-Nuclets v2.0.0 durch.
INSERT INTO abcd_sepaexportfile (intid, strfilepath, strfile, intid_strordertype, intid_strsequencetype, strpaymentinformationid,
strmessageid, intid_strsepaexport, strnote, strmessageidnumber, datchanged, strchanged, datcreated, strcreated, intversion)
SELECT
nextval('idfactory'), strfilepath, strfile, intid_strordertype, null as "intid_strsequencetype", strpaymentinformationid,
strmessageid, intid, '' as "strnote", strmessageidnumber,
datchanged, strchanged, datcreated, strcreated, 0 as "intversion"
FROM
abcd_sepaexport; |