Find Field Access and Object Access to User or User Profile and Query Lightning Flexipage
Know Aparticular user have acces on Field
Select SObjectType, Field, Parent.name, PermissionsRead, PermissionsEdit from FieldPermissions where SObjectType = 'Account' and Field in ('Account.Phone')
Know Aparticular user have acces on Object
SELECT Id,SObjectType ,PermissionsRead, PermissionsCreate, PermissionsEdit, PermissionsDelete, Parent.Profile.Name FROM ObjectPermissions WHERE SObjectType = 'Account' AND Parent.Profile.Name = 'System Administrator'
Know Aparticular user have acces
SELECT RecordId, MaxAccessLevel, HasAllAccess, HasDeleteAccess, HasEditAccess, HasReadAccess, HasTransferAccess FROM UserRecordAccess WHERE UserId = '005Bm00000EYrt3' AND RecordId = '069OZ00000637zBYAQ'
Retrive : Lighting Record Pages
SELECT Id, DeveloperName, MasterLabel, LastModifiedDate, Type, EntityDefinitionId FROM FlexiPage WHERE Type= 'RecordPage' AND EntityDefinitionId= 'Case' Order By LastModifiedDate DESC
String cronExp = '0 20 11 * * ?'; // Runs every day at 11:20 AM
System.schedule('LeadOneToolJob1', cronExp, new LeadOneToolScheduler());
Comments
Post a Comment