Developing codeunits

From TempusServa wiki
Revision as of 16:20, 18 September 2012 by old>Admin
Jump to navigation Jump to search

Steps for creating a new codeunit

  1. Create a new Java project in your favorite IDE
  2. Import the p2eShared.jar in the project
  3. Create a new class:
    1. The abstract parts are found in: dk.p2e.blanket.codeunit
    2. Implement all abstract methods
    3. Code the method bodies (normally "execute")
  4. Compile and build
  5. Deploy to webservser: [Application]\WEB-INF\lib

Error handling

Exceptions are handled by themselves using the errorRegistration(Exception e) method.