function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sumant KuchipudiSumant Kuchipudi 

how to give access a lightning component to end user?

I have a request that end user open a page and process multiple records (with check boxes) with single shot. For this I have built lightning component and made it working. I used Lightning App to test the component. Do I have to create a new App and give the link to them (https://mydomain.lightning.force.com/c/ProcessApp.app) or create a Visualforce and embed the component and give the VF link (https://../apex/ProcessPage) to them? which one is best? Please advice.

Thanks
Abdul KhatriAbdul Khatri
Please go to any record to which that component belongs too and go to Edit Page as shown in the screen shot below

User-added image

You component must appear if the left panel as shown in the screen shot below. You might need to scroll down. Make sure you have specified (in bold) the following in your component
<aura:component description="Test" implements="flexipage:availableForRecordHome,force:hasRecordId">
User-added image
You can drag that component on the page wherever you needed

I hope this help you.
 
Sumant KuchipudiSumant Kuchipudi
Hi Abdul,
Thanks for your reply. Actually this component is not belonging to any record, this should be an independant and should give direct access to the users.
Rahul BoinepallyRahul Boinepally
Create it as a new lightning component tab within existing application (if your end users use lightning currently) 
Abdul KhatriAbdul Khatri
That is fine as long as you have attribute that I have mentioned above in your componet, it will show up regardless where you are. Did you try adding the attribute and the location I have referenced above.
Abdul KhatriAbdul Khatri
Were you able to resolve this? Was my answer helpful