Versions Compared

Key

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

Use this event to

Excerpt
Set custom "lookup BinContent" values for <LookupResponse>-elements (values transferred from "Bin Content" table).



Sample request

<request name="Lookup" created="2019-08-14T10:39:46+02:00" xmlns="http://schemas.microsoft.com/Dynamics/Mobile/2007/04/Documents/Request">
     <requestData name="Lookup">
          <Location>SILVER</Location>
          <Bin>S-01-0001</Bin>
          <LookupType>BinContent</LookupType>
     </requestData>
</request>

Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Lookup", 'OnLookupOnBinContent_OnAfterSetFromBinContent''', true, true)]
    local procedure OnLookupOnBinContent_OnAfterSetFromBinContent(_BinContent: Record "Bin Content"; var _LookupResponseElement: Record "MOB NS WhseInquery Element")
    begin
    end;

Example

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Lookup", 'OnLookupOnBinContent_OnAfterSetFromBinContent''', true, true)]
    local procedure MyOnLookupOnBinContent_OnAfterSetFromBinContent(_BinContent: Record "Bin Content"; var _LookupResponseElement: Record "MOB NS WhseInquery Element")
    begin
        with _LookupResponseElement do begin
            Set_LookupResponseElement.Set_DisplayLine1('Set from OnLookupOnBinContent_OnAfterSetFromBinContent');
            SetValue        _LookupResponseElement.SetValue('ZoneCode''OnLookupOnBinContent_OnAfterSetFromBinContent Custom Tag for Zone Code ' + _BinContent."Zone Code");
            end;
    end;


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


Version History

VersionChanges
MOB5.00Introduced