
Hey guys,
I have created a new report, with which I can change my demo gl/entries.
Now I would like to log that changes.
Therefore I want to create a log file, which contains the changes.
Do you think that this is the right way?^^
Thank you :)
*This post is locked for comments
I have the same question (0)If that is working then you should be good, each have a different way of programming.
You don't need to use OutStream, you can just use TempFile.WRITE('Success')
CLEAR(TempFile);
TempFile.TEXTMODE := TRUE;
TempFile.WRITEMODE := TRUE;
TempFile.CREATE(FileName);
TempFIle.WRITE('Success');
TempFile.CLOSE;