AW Computing の採用担当チームは、求人アプリケーションのカスタム オブジェクトで候補者の採用と採用日をキャプチャします。候補者が採用担当者の求人を受け入れたら、採用日を入力し、その後の cecord 編集では変更しないでください。 アプリビルダーはどの検証式を使用する必要がありますか?
正解:A
NOT(ISBLANK(Job_Accepted__c)) && ISCHANGED(Hire_Date__c) is the validation formula that the app builder should use to meet the requirement of preventing changes to Hire Date after Job Accepted is entered. This formula will return TRUE if Job Accepted is not blank and Hire Date is changed, which will display an error message and prevent saving the record. The other formulas are not correct or valid.