16. April 2007 12:20
"Änd.-Protokollposten löschen".USEREQUESTFORM := FALSE;
"Änd.-Protokollposten löschen".RUN;
function DeleteProtokollposten(){
Änderungsprotokollposten.SETFILTER("Date and Time", '<%1', CURRENTDATETIME-604800000);
WHILE Änderungsprotokollposten.FIND('-') DO
Änderungsprotokollposten.DELETE;
}
16. April 2007 12:34
elTorito hat geschrieben:Wundert mich gerade ein bischen, weil ich kann ja den Report 510 über Period. Akt. in der FiBu aufrufen und dort alte Eintraege löschen.
elTorito hat geschrieben:
- Code:
function DeleteProtokollposten(){
Änderungsprotokollposten.SETFILTER("Date and Time", '<%1', CURRENTDATETIME-604800000);
WHILE Änderungsprotokollposten.FIND('-') DO
Änderungsprotokollposten.DELETE;
}
function DeleteProtokollposten(){
Änderungsprotokollposten.SETFILTER("Date and Time", '<%1', CURRENTDATETIME-604800000);
Änderungsprotokollposten.DELETEALL;
}
16. April 2007 15:26
Marc Teuber hat geschrieben:Hi elTorito!
Das würde ich so machen (ohne WHILE-Schleife):
- Code:
function DeleteProtokollposten(){
Änderungsprotokollposten.SETFILTER("Date and Time", '<%1', CURRENTDATETIME-604800000);
Änderungsprotokollposten.DELETEALL;
}
Gruß, Marc
17. April 2007 10:33
Änderungsprotokollposten.SETFILTER("Date and Time", '<%1', CURRENTDATETIME-604800000);
Änderungsprotokollposten.DELETEALL;
17. April 2007 10:42
17. April 2007 10:56
24. April 2007 17:51