Use this event to
Excerpt |
---|
Populate "Item Unit of Measure" prior to record being inserted or updated. |
Template
// [Template]
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Adhoc Registr.", 'OnPostAdhocRegistrationOnItemDimensions_OnBeforeInsertModifyItemUnitOfMeasure', '', true, true)]
local procedure OnPostAdhocRegistrationOnItemDimensions_OnBeforeInsertModifyItemUnitOfMeasure(var _RequestValues: Record "MOB NS Request Element"; var _ItemUnitOfMeasure: Record "Item Unit of Measure")
begin
end;
Example
// [Example]
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Adhoc Registr.", 'OnPostAdhocRegistrationOnItemDimensions_OnBeforeInsertModifyItemUnitOfMeasure', '', true, true)]
local procedure MyOnPostAdhocRegistrationOnItemDimensions_OnBeforeInsertModifyItemUnitOfMeasure(var _RequestValues: Record "MOB NS Request Element"; var _ItemUnitOfMeasure: Record "Item Unit of Measure")
var
RegistrationType: Text;
Cubage: Decimal;
begin
// example only, RegistrationType is not used in the code below
RegistrationType := _RequestValues.GetValue('RegistrationType');
// prerequisite: the "Cubage"-step must to be created from separate event to be able to actually read this value here
// see: https://taskletfactory.atlassian.net/wiki/display/TFSK/OnGetRegistrationConfiguration_OnAddSteps
Cubage := _RequestValues.GetValueAsDecimal('Cubage');
_ItemUnitOfMeasure.Validate(Cubage, Cubage);
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Version History
Version | Changes |
---|---|
MOB5.17 | Introduced |