Interview Questions

Wednesday, December 9, 2015

Add a new method in Wave Process

Warehouse management -> Setup -> Waves -> Wave process
if  its needed to add custom method to wave processing, following steps can be carried.
Proceed to following path
  • AOT\Classes\WHSPostEngineBase
  • Add new custom method
  1. public boolean smc1()
  2. {
  3. boolean ret;
  4. //ANY PROCESSING
  5.  
  6. return ret;
  7. }
  • Proceed to following path
AOT\Data Dictionary\Base Enums\WHSPostMethodsBase
  • Add a new Element in BaseEnum; The name must be same as name of method which you added recently in class WHSPostEngineBase. you may keep any label for this Element. But name should be same.
  • Save your BaseEnum, after making change

  • Now Proceed to following Path
Warehouse management -> Setup -> Waves -> Wave process Methods
  • Click on Regenerate Methods

  • Proceed back to same path, given below
Warehouse management -> Setup -> Waves -> Wave process
here you can see your custom method.

That's all for now.

No comments:

Post a Comment