/
OnLookupOnPackagesToShip_OnAddStepsToLicensePlate
OnLookupOnPackagesToShip_OnAddStepsToLicensePlate
Use this event to
Add Steps to be displayed on the mobile device when collecting values for each License Plate during packing registration.
Description
This event is triggered before the user does any registration.
- You can also use OnPostAdhocRegistrationOnPackagesToShip_OnAddStepsToLicensePlate to add steps after the user has entered step values, Then you can add steps based on the entered values.
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 Header Step (Shipping Agent Service Code) — Ask the user for what Shipping Agent and Service Code during Warehouse pick posting
-
Case: Add Header Step Posting Date 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: Add Line Step (ExpirationDate) — Collect ExpirationDate in a custom text step.
-
How-to: Add Header Steps (dynamically return steps on posting) — Dynamically add extra steps by interrupting posting to collect steps based on values from previous steps.
-
How-to: Add Line Step — Add Steps to be displayed during a line registration on planned functions
-
How-to: Add Line Step (TypeAndQuantity) — After pressing 'Post' an extra step of type TypeAndQuantity is added, to gather Package types in Pick.
-
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 |
, multiple selections available,