Versions Compared

Key

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

Use this event to

...

    [EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Phys Invt Recording", 'OnGetPhysInvtRecordings_OnIncludePhysInvtRecordHeader', '', true, true)]
    localprocedure OnGetPhysInvtRecordings_OnIncludePhysInvtRecordHeader(_PhysInvtRecordHeader: Record "Phys. Invt. Record Header"; var _HeaderFilters: Record "MOB NS Request Element"; var _IncludeInOrderList: Boolean)
    begin
    end;

Example: Skip Item Journal Batch if Reason Code is blank

    // [Example]: Skip Phys Inventory Recording if Location Code = 'MISSING GOODS'
    [EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Phys Invt Recording", 'OnGetPhysInvtRecordings_OnIncludePhysInvtRecordHeader', '', true, true)]
    localprocedure MyOnGetPhysInvtRecordings_OnIncludePhysInvtRecordHeader(_PhysInvtRecordHeader: Record "Phys. Invt. Record Header"; var _HeaderFilters: Record "MOB NS Request Element"; var _IncludeInOrderList: Boolean)
    begin
        if _PhysInvtRecordHeader."Location Code" = 'MISSING GOODS'then
            _IncludeInOrderList := false;
    end;


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

...