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 8 Next »

Use this event to

Change or amend filter set on ItemCrossRef record in SearchItemCrossRef procedure.

(Procedure was in previous version named CheckCrossRef).

Used by Unplanned Functions


Description

This event is triggered in procedure SearchItemCrossRef. The procedure is used to find and return Item No. and Variant Code from a scanned Barcode by searching the Item Cross Reference table.

You can use the event to change or amend the filters set by the Mobile WMS App.

Template

[EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Toolbox", 'OnSearchItemCrossRefOnAfterSetFilters''', true, true)]
procedure OnSearchItemCrossRefOnAfterSetFilters(_ScannedBarcode: Code[20];  var _ItemCrossRef: Record "Item Cross Reference")
begin
end;

Example: Change filter on Cross-Reference Type to also include Customer and Vendor references

[EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Toolbox", 'OnSearchItemCrossRefOnAfterSetFilters''', true, true)]
procedure OnSearchItemCrossRefOnAfterSetFilters(_ScannedBarcode: Code[20]; var _ItemCrossRef: Record "Item Cross Reference")
begin
    _ItemCrossRef.SetFilter("Cross-Reference Type", '%1|%2|%3', _ItemCrossRef."Cross-Reference Type"::"Bar Code", _ItemCrossRef."Cross-Reference Type"::Customer, _ItemCrossRef."Cross-Reference Type"::Vendor);
end;

Version History

VersionChanges
MOB5.13Introduced
  • No labels