Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

Use this event to

Excerpt

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

...


See also: OnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateWhseJnlLine


Template

...

    // [Template]
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Adhoc Registr.", 'OnPostAdhocRegistrationOnUnplannedCountOnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateItemJnlLine''', true, true)]
    local procedure OnPostAdhocRegistrationOnUnplannedCount OnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateItemJnlLine(var _RequestValues: Record "MOB NS Request Element"; var _ItemJnlLineReservationEntryRecord "Item Journal Line")
    begin
    end;   // [Template]
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Ac Registr.", 'OnPostAdhocRegistrationOnUnplannedCount_OnAfterCreateWhseJnlLine''', true, true)]
    local procedure OnPostAdhocRegistrationOnUnplannedCount_OnAfterCreateWhseJnlLine(var _RequestValuesReservation Entry"; var _ItemJnlLineRecord "MOB NS Request Element"; var _WhseJnlLine: Record "Warehouse Journal Line"Item Journal Line")
    begin
    end;

...

 

...

    // [

Example

...

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Adhoc Registr.", 'OnPostAdhocRegistrationOnUnplannedCountOnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateItemJnlLine''', true, true)]
    local procedure MyOnPostAdhocRegistrationOnUnplannedCount MyOnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateItemJnlLine(var _RequestValues: Record "MOB NS Request Element"; _ReservationEntry: Record "Reservation Entry"; var _ItemJnlLine: Record "Item Journal Line")
    var
        RegistrationType: Text;
        ItemNo        BinText;
        LocationCode: Text;
        BinCode        ToBinText;
    begin
        RegistrationType := _RequestValues.GetValue('RegistrationType');
        ItemNo        Bin := _RequestValues.GetValue('ItemBin');
        LocationCode        ToBin := _RequestValues.GetValue('LocationToBin');
        BinCode := _RequestValues.GetValue('Bin');

        _ItemJnlLine.Validate(Description, CopyStr(StrSubstNo('%1 %2 at %3 %4%1 %2 to %3', RegistrationType, ItemNo Bin, LocationCode, BinCode ToBin)1, MaxStrLen(_ItemJnlLine.Description)));
    end;

 

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "example" and label = "OnPostAdhocRegistrationOnUnplannedMove_OnAfterCreateItemJnlLine"


Version History

Version

Changes

MOB5.17Introduced

...