Difference between revisions of "Developing codeunits"

From TempusServa wiki
Jump to navigation Jump to search
old>Admin
old>Admin
Line 1: Line 1:
Steps for creating a new codeunit
 
== Steps for creating a new codeunit ==


# Create a new Java project in your favorite IDE
# Create a new Java project in your favorite IDE
Line 9: Line 10:
# Compile and build
# Compile and build
# Deploy to webservser: [Application]\WEB-INF\lib
# Deploy to webservser: [Application]\WEB-INF\lib
After first test of the codeunit a server reboot is needed for each redeployment, as there is no way of removing the loaded classes from memory.


== Error handling ==
== Error handling ==


Exceptions are handled by themselves using the errorRegistration(Exception e) method.
Exceptions are handled by themselves using the errorRegistration(Exception e) method.
== Different codeunit types ==
Please read the: [[Codeunit_reference]]

Revision as of 18:53, 21 February 2013

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

After first test of the codeunit a server reboot is needed for each redeployment, as there is no way of removing the loaded classes from memory.

Error handling

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

Different codeunit types

Please read the: Codeunit_reference