2 个回答
@Yissochor EisenbergThere are three other objects: LoginEvent, LoginGeo and LoginIp.But the field Application is never filterable par SOQL. So the only trivial workarounds are the export of the login history (csv+java./python) ( Setup > Login History ) or to use a filter on another field like the logintime.
A batch can also read the LoginHistory object regularly and load a new custom object where the new field Application__c is now filterable (or by using dataloader reloading the exported csv file).select id, userid, logintime, application from loginhistory where logintime = THIS_MONTH