Versions Compared

Key

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

Use this event to

...

  • If the Mobile UserID starts TimeTracking for an operation only that same mobile user can stop that "counter" for the operation.
  • Also, the TimeTracking "counter" is only visible on (and can only be stopped onfrom) the same device that originally started the "counter".
  • This allows multiple users to share the same Mobile UserID as long as they are using separate devices.

...

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB Time Tracking Management", 'OnAfterFilterTimeTrackingEntry''', true, true)]
    local procedure OnAfterFilterTimeTrackingEntry(var _MobTimeTrackingEntry: Record "MOB Time Tracking Entry");
    begin
    end;

Example

    // [Example]  Override existing filter in order to allow the MobileUserID to start/stop time on any devices
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB Time Tracking Management", 'OnAfterFilterTimeTrackingEntry''', true, true)]
    local procedure MyOnAfterFilterTimeTrackingEntry(var _MobTimeTrackingEntry: Record "MOB Time Tracking Entry");
    begin
        _MobTimeTrackingEntry.SetRange("Device ID");
    end;



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

...