Home SALESFORCEAPEX How to Save a record Without the ValidationRule fire on the Visualforce Page?

How to Save a record Without the ValidationRule fire on the Visualforce Page?

normally if we have the validation rules, then the conditions meet true as per the validation rules then the below error occors while saving using visualforce page:

Insert failed. The first exception on row 0; first error: FIELD_CUSTOM_VALIDATION_EXCEPTION, You must review the preferences section before you can save this record.

so if we need to save without the validation fire on the Visualforce Page, then use the immediate=”true” in your command button and see the code below for your kind reference.

<apex:commandButton value=”Save” immediate=”true” action=”{!save}”/>

Refer the link CustomButton

You may also like

Leave a Comment