[LWC QUICK ACTION]s.invoke is not a function Exception in Salesforce Lightning Web Component

[LWC QUICK ACTION]s.invoke is not a function Exception in Salesforce Lightning Web Component

[LWC QUICK ACTION]s.invoke is not a function Exception occurs in Salesforce Lightning Web Component when Action is used instead of ScreenAction in the actionType.

To fix the exception, use the correct actionType.

Sample Code:

<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
    <apiVersion>54.0</apiVersion>
    <isExposed>true</isExposed>
    <targets>
        <target>lightning__RecordAction</target>
        <target>lightning__RecordPage</target>
    </targets>
    <targetConfigs>
        <targetConfig targets="lightning__RecordAction">
            <actionType>ScreenAction</actionType>
            <objects>
                <object>Account</object>
            </objects>
        </targetConfig>
    </targetConfigs>
</LightningComponentBundle>

Leave a Reply