Use this event to
Add steps to be displayed on the mobile device when collecting values for each License Plate during Packing.
Description
Collecting new steps must go hand-in-hand with additional customizations to handle such values, using:
- OnPostAdhocRegistrationOnPackagesToShip_OnAfterUpdateLicensePlate
- OnPostAdhocRegistrationOnBulkRegPackageInfo_OnAfterUpdateLicensePlate
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Pack Lookup", 'OnLookupOnPackagesToShip_OnAddStepsToLicensePlate', '', false, false)]
local procedure OnLookupOnPackagesToShip_OnAddStepsToLicensePlate(var _LookupResponseElement: Record "MOB NS WhseInquery Element"; _LicensePlate: Record "MOB License Plate"; var _Steps: Record "MOB Steps Element");
begin
end;
More examples
-
-
Case: Add Posting Date step to Production Consumption and Output — A customer wishes to allow mobile users to specify the posting date when posting Production Consumption and Output from the mobile device.
-
Case: Interrupt posting and add steps for Shipping Agent Service Code — Ask the user for what Shipping Agent and Service Code during Warehouse pick posting
-
Case: Scan ExpirationDate in custom format — Scan ExpirationDate as custom format YYYYMM when goods is received from any Vendor.
-
How-to: Add a TypeAndQuantity step — After pressing 'Post' an extra step of type TypeAndQuantity is added, to gather Package types in Pick.
-
How-to: Add Line Step — Add Steps to be displayed during a line registration on planned functions
-
How-to: Interrupt posting and add extra steps — Dynamically add extra steps by interrupting posting to collect steps based on values from previous steps.
-
How-to: Production Output - Implement a Unit of Measure step — For Items with multiple Unit of Measure codes
Version History
Version | Changes |
---|---|
MOB5.42 | Introduced |