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
gajawada vaishnavigajawada vaishnavi 

Flow is not found or doesn't have an active version. Contact your admin for more information.

we have created a Managed Package where we added our flows in to the package and uploaded,we are using that flow in internal app and community.
when it is installed in new org it is working for internal app but when we create a community with a lightning template which is there in the package and
it has the flows which we want.
we are able to see the flows and they are active in new org where we have installed managed package  but when we access them from the community we are getting the above mentioned error.
Your help will be highly appreciated.
Thanks

Error
Flow Api Name
AnudeepAnudeep (Salesforce Developers) 
I have seen a similar issue in the past. The same error occurred while installing the package. The following was the resolution

Once a VF page/component references a flow by its name, and then namespace is enabled, the Apex code still only has the flow name without the namespace.
This causes an error when installing a managed package, since the namespace is absent in the code, and the installer can't find the flow that's referenced.
A workaround is going back to the apex code and adding the namespace to the flow name before uploading or upload again after.