...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
Use this event to
Excerpt |
---|
Modfy properties for any single Step from custom RegistrationCollectorConfigurations. |
Description
This event is executed once for every Step added from custom RegistrationCollectorConfigurations. You may use this event to change any property of the Step or hide the Step.
...
See also:
OnGetReferenceData_OnAddHeaderConfigurations
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Reference Data", 'OnGetReferenceData_OnAfterAddRegistrationCollectorConfigurationOnAfterAddRegistrationCollectorStep', '', true, true)]
local procedure OnGetReferenceData_OnAfterAddRegistrationCollectorConfigurationOnAfterAddRegistrationCollectorStep(var _StepsStep: Record "MOB Steps Element")
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Reference Data", 'OnGetReferenceData_OnAfterAddRegistrationCollectorConfigurationOnAfterAddRegistrationCollectorStep', '', true, true)]
local procedure MyOnGetReferenceData_OnAfterAddRegistrationCollectorConfigurationOnAfterAddRegistrationCollectorStep(var _StepsStep: Record "MOB Steps Element")
begin
with _Steps Step do begin
// Hide CustomNetWeightGrams step
if (ConfigurationKey = 'CustomReceiveSteps') and (Get_name() = 'CustomNetWeightGrams') then
Set_visible(false);
// Change texts for CustomGrossWeightGrams step
if (ConfigurationKey = 'CustomReceiveSteps') and (Get_name() = 'CustomGrossWeightGrams') then begin
Set_header('Grossweight in Grams');
Set_label('Grossweight in Grams:');
Set_helpLabel('Grossweight in Grams per PCS');
end;
end;
end;
Version History
Version | Changes |
---|---|
MOB5.14 | Introduced |
...