Versions Compared

Key

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

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...


Info
titleObsolete

This event can no longer be used in BC19 (or newer)

Replaced by: MobItemReferenceMgt - OnPostAdhocRegistrationOnItemCrossReference_OnBeforeInsertItemReference

Use this event to

Excerpt

Populate new Item Cross Reference prior to record being inserted.



Replaced by: MobItemCrossReferenceMgt / - OnPostAdhocRegistrationOnItemCrossReference_OnBeforeInsertItemCrossReference  (MOB5.23 24 or newer)


Template

    // [Template]
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB Item Cross Reference Mgt.", 'OnPostAdhocRegistrationOnItemCrossReference_OnBeforeInsertItemCrossReference''', true, true)]
    local procedure OnPostAdhocRegistrationOnItemCrossReference_OnBeforeInsertItemCrossReference(var _RequestValues: Record "MOB NS Request Element"; var _ItemCrossReference: Record "Item Cross Reference")
    begin
    end;

Example

    // [Example]: Populate Description on new Item Cross Reference
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB Item Cross Reference Mgt.", 'OnPostAdhocRegistrationOnItemCrossReference_OnBeforeInsertItemCrossReference''', true, true)]
    local procedure MyOnPostAdhocRegistrationOnItemCrossReference_OnBeforeInsertItemCrossReference(var _RequestValues: Record "MOB NS Request Element"; var _ItemCrossReference: Record "Item Cross Reference")
    var
        RegistrationType: Text;
        ItemNo: Text;
        VariantCode: Text;
        UoM: Text;
    begin
        RegistrationType := _RequestValues.GetValue('RegistrationType');
        ItemNo := _RequestValues.GetValue('ItemNumber');
        VariantCode := _RequestValues.GetValue('Variant');
        UoM := _RequestValues.GetValue('UoM');

        _ItemCrossReference.Validate(Description, CopyStr(StrSubstNo('%1 Item: %2 Variant: %3 UoM: %4', RegistrationType, ItemNo, VariantCode, UoM)1, MaxStrLen(_ItemCrossReference.Description)));
    end;


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


Version History

Version

Changes

MOB5.17Introduced as OnPostAdhocRegistrationOnItemCrossReference_OnBeforeInsertItemCrossReference (MOB5.17 - MOB5.2225)
MOB5.2324Moved to new "MOB Item Cross Reference Mgt."

...