Verpackung ändern

Aus PPwiki
Wechseln zu: Navigation, Suche
 -- Script zum Aktualisieren der Verpackung über Oracle Developer
 -- Das Script berücksichtigt die Standardtabellen von PAT / Views und Sonderprogrammierungen werden nicht berücksichtigt
 -- Im Zweifelsfall sollte Kontakt zu Plug-Plant aufgenommen werden / für das Ausführen des Scriptes wird keine Gewähr von Plug-Plant übernommen
 -- Plug-Plant SL 18.10.2016
 update B_ANGEBOTCOL set VERPACK = '123' where VERPACK = 'ABC';
 update B_ARTEIGEN set VERPACK = '123' where VERPACK = 'ABC';
 update B_AUFTRCOL set VERPACK = '123' where VERPACK = 'ABC';
 update B_BESTCOL set VERPACK = '123' where VERPACK = 'ABC';
 update B_RECHNUNGCOL set VERPACK = '123' where VERPACK ='ABC';
 update B_VERPACKUNG set VERPACK = '123' where VERPACK = 'ABC';
 update B_VERPACKPREIS set VERPACK = '123' where VERPACK = 'ABC';
 update B_ZRECHNUNGCOL set VERPACK = '123' where VERPACK = 'ABC';
 update B_VERPACKUNG set ARTNR = '123' where ARTNR = 'ABC';
 update B_ARTIKEL set ARTNR = '123' where ARTNR = 'ABC';
 update B_ARTFIRMA set ARTNR = '123' where ARTNR = 'ABC';
 update B_ARTFORM set ARTNR = '123' where ARTNR = 'ABC';
 update B_ARTEIGEN set ARTNR = '123' where ARTNR = 'ABC';
 update B_LEERCOL set ARTNR = '123' where ARTNR = 'ABC';
 commit;