Play Games

Search This Blog

Showing posts with label How to know the user who created or modified the Aura component salesforce. Show all posts
Showing posts with label How to know the user who created or modified the Aura component salesforce. Show all posts

Saturday, May 1, 2021

How to know the user who created or modified the Aura component salesforce - Salesforce Globe For You

 How to know the user who created or modified the Aura component salesforce  - Salesforce Globe For You 

Solution: Use SOQL Query below

SELECT Id, DeveloperName, CreatedBy.Name, LastModifiedBy.Name,CreatedDate, LastModifiedDate FROM AuraDefinitionBundle where DeveloperName ='MultipleTabs' 

where MultipleTabs is the name of the component.



Output:



Note: Keep the tooling API checkbox to true in developer console while executing the query.