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
public boolean smc1()
{
boolean ret;
//ANY PROCESSING
return ret;
}
- 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.
Happy Daxing!

Like
Report
*This post is locked for comments