Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 13 Next »

Use this event to

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.

At time of writing no 'RegistrationCollectorConfiguration's exists in ReferenceData for the standard Mobile WMS, meaning you can not use this event to modify steps for existing "planned" DocumentType's.

  • The standard workflow for "planned" DocumentType's uses steps defined in Application.cfg (with no assiciated ConfigurationKey). 
  • "Unplanned" (Adhoc) workflows uses steps defined in "MOB WMS Adhoc" class (possibly modified from 'OnGetRegistrationConfiguration_OnAddSteps')


See also: 
OnGetReferenceData_OnAddHeaderConfigurations


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Reference Data", 'OnGetReferenceData_OnAfterAddRegistrationCollectorConfiguration''', true, true)]
    local procedure OnGetReferenceData_OnAfterAddRegistrationCollectorConfiguration(var _Steps: Record "MOB Steps Element")
    begin
    end;


Example

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Reference Data", 'OnGetReferenceData_OnAfterAddRegistrationCollectorConfiguration''', true, true)]
    local procedure MyOnGetReferenceData_OnAfterAddRegistrationCollectorConfiguration(var _Steps: Record "MOB Steps Element")
    begin
        with _Steps do
            if (ConfigurationKey = 'MyCustomRegistrationCollectorKey') and (Get_name() 'MyStepName'then
                Set_visible(false);
    end;


Version History

VersionChanges
MOB5.14Introduced
  • No labels