Info | ||
---|---|---|
| ||
|
Use this event to
Excerpt |
---|
Interrupt Item Journal Batch posting and add extra steps (“Header Steps”) based on values already collected. |
Description
Interrupt posting and add extra steps (“Header Steps”) based on values already collected.
...
Steps with no "conditions" are better created using the OnGetCountOrderLines_OnAddStepsToAnyHeader-event.
See also: OnPostPhysInvtRecordingOrder_OnAddStepsToAnyBatch
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnPostCountOrder_OnAddStepsToItemJournalBatch', '', true, true)]
local procedure OnPostCountOrder_OnAddStepsToItemJournalBatch(var _OrderValues: Record "MOB Common Element"; _ItemJnlBatch: Record "Item Journal Batch"; var _StepsElement: Record "MOB Steps Element")
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnPostCountOrder_OnAddStepsToItemJournalBatch', '', true, true)]
local procedure MyOnPostCountOrder_OnAddStepsToItemJournalBatch(var _OrderValues: Record "MOB Common Element"; _ItemJnlBatch: Record "Item Journal Batch"; var _StepsElement: Record "MOB Steps Element")
begin
// Break if some condition to include news step(s) is not met
// if .... then
// exit;
// Break if new datestep is already collected to prevent infinite loop
if _OrderValues.HasValue('MyPostingDate') then
exit;
// Create a new date step for manually selecting Posting Date
_StepsElement.Create_DateStep(10000, 'MyPostingDate');
_StepsElement.Set_header('Posting Date');
_StepsElement.Set_minDate(Today() - 10);
_StepsElement.Set_maxDate(Today());
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Version History
Version | Changes |
---|---|
MOB5.27 | Introduced |