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
san5augsan5aug 

Flow deployment fail with flows/AccountRecordDataFlow.flow -- Error: CreateVendorCmp (Screen Component) - We can't find an extension called "c:CreateVendorAccountRecordData"

When we deploy a flow with a screen component, its failing. This screen component is using a Lightning component backed by apex controller. We are using APIversion 44. 

Lightning component
<aura:component implements="force:lightningQuickAction,lightning:availableForFlowScreens,lightning:actionOverride,flexipage:availableForRecordHome"  access="global"  controller="CreateVendorAccountCtrl">
</aura:component>
CreateVendorAccountCtrl
public class CreateVendorAccountCtrl {
}

 
Danish HodaDanish Hoda
Check if your lightning component or flow is calling another lightning cmp - CreateVendorAccountRecordData.
san5augsan5aug
@Danish: My Flow is using 3 lightning components (CreateVendorAccountRecordData. CreteContact, CreateProduct). But no lightning component is calling another lightning component. Each lightning component has its apex controller. 
Danish HodaDanish Hoda
hi,
Please check if you added all the three components with their controllers in the changeset along with the fow you are deploying.