I have a requirement to build data capture flow for partner community users. The flow is launching from a quick action. It will contain a screen component "Upload image". This is working in FSL mobile app. but it is not working in community portal. Do you have any solution?
#Flow #Salesforce Flow
Hi Satabdi,
Good info — since it's Aura, not LWR, the fix path is different. Since this fails for the partner user but works for FSL (internal), the likely gap is permissions/sharing on the record, not the component itself.
Check:
1. Partner Community profile/permission set has Create access on Files (ContentVersion) — this can be missing by default on external license types.
2. The partner user has at least Edit-level access to the Work Order record the quick action launches from — File Upload needs to create a ContentDocumentLink to it.
3. Log in/impersonate as the partner user (or Debug the flow as them) to see if it's an upload error vs. a silent link failure.
If both check out and it still fails, try the File Upload Improved component (UnofficialSF) — it uses server-side Apex to handle the upload/link, which sidesteps community-specific quirks in the standard component.
Reference:
https://unofficialsf.com/from-josh-dayment-improved-file-upload-in-flow-screens/