OnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateWhseJnlLine

Use this event to

Populate warehouse journal line when posting unplanned move with Location."Directed Put-away and Pick".

See also: OnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateItemJnlLine

Template

    // [Template]
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Adhoc Registr.", 'OnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateWhseJnlLine''', true, true)]
    local procedure OnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateWhseJnlLine(var _RequestValues: Record "MOB NS Request Element"; var _WhseJnlLine: Record "Warehouse Journal Line")
    begin
    end;

Example

    // [Example] 
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Adhoc Registr.", 'OnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateWhseJnlLine''', true, true)]
    local procedure MyOnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateWhseJnlLine(var _RequestValues: Record "MOB NS Request Element"; var _WhseJnlLine: Record "Warehouse Journal Line")
    var
        RegistrationType: Text;
        Bin: Text;        
        ToBin: Text;
    begin
        RegistrationType := _RequestValues.GetValue('RegistrationType');
        Bin := _RequestValues.GetValue('Bin');        
        ToBin := _RequestValues.GetValue('ToBin');

        _WhseJnlLine.Validate(Description, CopyStr(StrSubstNo('%1 %2 to %3', RegistrationType, Bin, ToBin)1, MaxStrLen(_WhseJnlLine.Description)));
    end;

 

More examples

There are no items with the selected labels at this time.


Version History

Version

Changes

MOB5.17Introduced