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
Juston LindseyJuston Lindsey 

Validation Error : FIELD_CUSTOM_VALIDATION_EXCEPTION: Vendors can only select a status of "Completed" or "Scheduled." Process Builder: File Request Update Related Records

Receiving an error uploading via DocuVault as a Community User
VinayVinay (Salesforce Developers) 
Hi Justin,

Can you check if you have any existing validation rule which is triggering when you try to update related record using process builder.

Kindly check the existing validation rule criteria.

Please mark as Best Answer if above information was helpful.

Thanks,
mukesh guptamukesh gupta
Hi Juston,

This is validation error, it's not allowing to update record by community user.

if you want to allow this updation by community user then you need to bypass community user profile in validation rule

if you need any assistanse, Please let me know!!

Kindly mark my solution as the best answer if it helps you.

Thanks
Mukesh
Ranjith PinnamaneniRanjith Pinnamaneni
Hii Juston,

It is due to an existing validation rule, if there is a validation rule defined on an object and the validation error conditions are met, a flow fails and throws a rolled_back error to a user. 

Try these
1. Go to the validation rule and in the formula bar add either 
             $Profile.Name != "CommunityUser" 
                                         or 
             $Profile.Name != "CustomerCommunityUser"

2. Required fields data might be missing. This means that Salesforce has rejected the Insert / Update because a required field on the object is not populated. For this, go to the validation rule and check if there are any required/mandatory fields and change them accordingly.

Hope this helps you out.
Juston LindseyJuston Lindsey
Thanks All. I give it a try and let you guys know the outcome!