Info | ||
---|---|---|
| ||
|
...
Excerpt |
---|
Interrupt Warehouse Receipt Shipment posting and add extra steps (“Header Steps”) based on values already collected. |
...
- Add extra steps during posting (interrupt posting to collect addtional steps)
- Used for "conditional" steps i.e. when values from previously collected steps determines if the step are to be included
- Extra steps can be collected for the "header" only. Extra steps per document line are currently not supported for planned document types
- Posting are restarted (started over) when the additional steps have been collected on the mobile device
- Events are executed every time posting starts over and can be used to chain even more steps.
Steps with no "conditions" are better created using theOnGetReceiveOrderLines OnGetShipOrderLines_OnAddStepsToAnyHeaderOnAddStepsToWarehouseShipmentHeader-event.
See also: OnPostReceiveOrder_OnAddStepsToAnyHeader
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS ReceiveMOB WMS Ship", 'OnPostReceiveOrderOnPostShipOrder_OnAddStepsToWarehouseReceiptHeaderOnAddStepsToWarehouseShipmentHeader', '', true, true)]
local procedure OnPostReceiveOrder OnPostShipOrder_OnAddStepsToWarehouseReceiptHeaderOnAddStepsToWarehouseShipmentHeader(var _OrderValues: Record "MOB Common Element"; _WhseReceiptHeaderWhseShipmentHeader: Record "Warehouse Receipt HeaderWarehouse Shipment Header"; var _StepsStepsElement: Record "MOB Steps Element")
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS ReceiveMOB WMS Ship", 'OnPostReceiveOrderOnPostShipOrder_OnAddStepsToWarehouseReceiptHeaderOnAddStepsToWarehouseShipmentHeader', '', true, true)]
local procedure MyOnPostReceiveOrder MyOnPostShipOrder_OnAddStepsToWarehouseReceiptHeaderOnAddStepsToWarehouseShipmentHeader(var _OrderValues: Record "MOB Common Element"; _WhseReceiptHeaderWhseShipmentHeader: Record "Warehouse Receipt HeaderWarehouse Shipment Header"; var _StepsStepsElement: Record "MOB Steps Element")
begin
// Break if some condition to include news step Break if some condition to include news step(s) is not met
is not met
// if if .... then
then
// exit exit;
// Break if new datestep is already collected to prevent infinite loop Break if new datestep is already collected to prevent infinite loop
if _OrderValues.HasValue('MyPostingDate') then
exit;
// Create a new date step for manually selecting Posting Date
_StepsStepsElement.Create_DateStep(10000, 'MyPostingDate');
_StepsStepsElement.Set_header('Posting Date');
_StepsStepsElement.Set_minDate(Today() - 10);
_StepsStepsElement.Set_maxDate(Today());
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Version History
Version | Changes |
---|---|
MOB5.27 | Introduced |