Excerpt |
---|
(REVIEW) Code to be executed prior to posting via standard posting routines. (REVIEW) |
...
Note | ||
---|---|---|
| ||
Database transactions in [...]OnBeforeRunWhseActivityPost is committed to database prior to calling standard "Whse.-Activity-Post" function. Your customized code must be structured accordingly. You may subscribe to standard posting events to ensure rollback of your database transactions or trigger events on-after posting, if this is required for your code. |
Template
...
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Put Away", 'OnPostPutAwayOrder_OnBeforePostWarehouseActivityOrder', '', true, true)]
procedure OnPostPutAwayOrder_OnBeforeRunWhseActivityRegister(var _OrderValues: Record "MOB Common Element"; var _WhseActivityHeader: Record "Warehouse Activity Header")
begin
end;
See also:
How-to: Subscribe to standard events in BC base app
Example:
...
TODO
Version History
Version | Changes |
---|---|
MOB5.13 | Introduced |
...