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
Amit Singh 1Amit Singh 1 

Error: No Lightning Component Quick Actions are available for your organization.

Hello Developers,

I am getting "Error: No Lightning Component Quick Actions are available for your organization." Error while trying to create Quick Action into Lightning. I am using below code into my component.
 
<aura:component controller="testPackage1122.caseMergeController"
                implements="force:lightningQuickAction,force:hasRecordId" access="global">
	<aura:handler name="init" value="{!this}" action="{!c.doInit}"/>
    
    <!--Attributes-->
    <aura:attribute name="OriginalCase" type="Case"/>
    <aura:attribute name="SubjectCriteria" type="String[]" default="Contains,Equals"/>
    <aura:attribute name="CaseOrigin" type="String[]" default=""/>
    <aura:attribute name="CaseStatus" type="String[]" default=""/>
    <aura:attribute name="CasePriority" type="String[]" default=""/>
    <aura:attribute name="NumberOfCases" type="String[]" default="2,3,4,5,6,7,8,9,10"/>
    <aura:attribute name="DuplicateCaseList"
                    type="testPackage1122.commonWrapperClass"/>
    <aura:attribute name="DuplicateCaseList1"
                    type="testPackage1122.commonWrapperClass.duplicateCaseListDisplay[]"/>
</aura:component>

I noticed that Error is because of below line.
<aura:attribute name="DuplicateCaseList1"
                    type="testPackage1122.commonWrapperClass.duplicateCaseListDisplay[]"/>

In my code "testPackage1122" in my Org namespace and I need to include this namespace because my component is going to be part of managed package.
 
Any Idea what and where I am doing wrong.
 
Any help or suggestion will be greatly appreciated.
 
Thanks,
Amit Singh
Best Answer chosen by Amit Singh 1
Amit Singh 1Amit Singh 1
Got it, a silly mistake was there.

All Answers

Amit Singh 1Amit Singh 1
Got it, a silly mistake was there.
This was selected as the best answer
Raphael Mazouz 6Raphael Mazouz 6
Hi ,

I don't undestand how did you fix the problem ? what is the commonWrapperClass ? how can I do the samething ?

Thank you
Raphael Mazouz 6Raphael Mazouz 6
???
Amit Singh 1Amit Singh 1
Are you getting the same Error?

commonWrapperClass  is a Wrapper class and duplicateCaseListDisplay class is inside commonWrapperClass   class means inner class.
 
Raphael Mazouz 6Raphael Mazouz 6
Hi Amit Singh 1 , my problem is described here 
https://developer.salesforce.com/forums/ForumsMain?id=9060G000000Ua7nQAC

Could you help me ?
Raphael
Raphael Mazouz 6Raphael Mazouz 6
?
Hassaan Siddiqui 8Hassaan Siddiqui 8

I am trying to create  Lightning Action for my auar component but getting "Error: No Lightning Component Quick Actions are available for your organization" this error message. How I can resolve this?
 

<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,force:lightningQuickActionWithoutHeader,force:hasRecordId" access="global" >
    <c:uISF_Validate_and_Split_Action />
</aura:component>