Projects:Modularize AcctServer/User Manual
In this document is described the changes that needs to be done to use the new core enhancement.
Application Dictionary definition
When a new table is going to be posted now it is also needed to set up the Acct date column and the Acct class name fields.
- Acct date column: column of the table where is stored the date when the accounting of the record is done.
- Acct class name: full java class name of the process that performs the posting of the table.
Posting procedure
The process must extend AcctServer as the current ones. But now the constructor must be empty.
public class DocTableName extends AcctServer { ... public DocTableName() {} ... }