Beim Wechsel auf Release 4.1 sind zusätzlich zu den Allgemeinen Hinweisen noch folgende Punkte zu beachten.
Zuordnung neuer Kindtabellen
- IAG_PVS
- IAG_PVS8
Vorbelegung für neue Datenbankfelder in bestehenden Tabellen
HANA
update "@IAG_RAT0" set "U_Finediff" = 'I' where ifnull("U_Finediff", '') = ''
update "@IAG_ERS0" set "U_VLSTR001" = 'ND' where ifnull("U_VLSTR001", '') = ''
--uncomment the following line if switch BATCH_INVOICE_EDI is present (remove that switch after the upgrade)
--update "@IAG_CFG" set "U_EDI_BULK_INV" = 'A' where ifnull("U_EDI_BULK_INV", '') = ''
--uncomment the following line if switch BATCH_INVOICE_EDI is not present
--update "@IAG_CFG" set "U_EDI_BULK_INV" = 'I' where ifnull("U_EDI_BULK_INV", '') = ''
SQL
update [@IAG_RAT0] set U_Finediff = 'I' where isnull(U_Finediff, '') = ''
update [@IAG_ERS0] set U_VLSTR001 = 'ND' where isnull(U_VLSTR001, '') = ''
--uncomment the following line if switch BATCH_INVOICE_EDI is present (remove that switch after the upgrade)
--update [@IAG_CFG] set U_EDI_BULK_INV = 'A' where isnull(U_EDI_BULK_INV, '') = ''
--uncomment the following line if switch BATCH_INVOICE_EDI is not present
--update [@IAG_CFG] set U_EDI_BULK_INV = 'I' where isnull(U_EDI_BULK_INV, '') = ''
Post your comment on this topic.