Use this event to
Excerpt |
---|
Save Validate and save collected values to table "MOB WMS Registration"-table. |
DescriptionDescription
Mobile registrations form a planned function are stored in the "MOB WMS Registration"-table.
This event is triggered for each collected and every value received from in the Mobile Device "Post " request when values is stored to the "RegistrationData"-table.
The RegistrationData-table is what is used for all Mobile WMS Posting functions. By using this event to set or validate values in RegistrationData, .
You can use this event to:
- Handle custom formats for existing fields
- avoiding validation errors
- Validate format for new custom steps
- throw meaningful error message, rather than error messages received from standard posting functions
- Transfer new custom steps to custom fields
- by using this event to save values you may (in some cases) be able to avoid doing any further customizations to posting routines
...
You can use this event to:
...
Tip
Saving custom values in MOB WMS Registration -to save data to posting routines is not required since version 5.10
You can read custom values from directly via .GetValue(...)
-functions in any code or events Event Subscriber where you've got access to the RegistrationDataMOB WMS Registration-table.
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Toolbox", 'OnSaveRegistrationValue', '', true, true)]
procedure OnSaveRegistrationValue(_Path: Text; _Value: Text; var _MobileWMSRegistration: Record "MOB WMS Registration"; var _IsHandled: Boolean)
begin
end;
Example
Filter by label (Content by label) | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Version History
Version | Changes |
---|---|
MOB5.11 | Introduced |