Exit 1Z0-419 Implementation Application Development Framework
Question 2 of 5
0% complete
Q2 Single choice

View the Exhibit

You have defined a compare validation rule on the CommissionPct attnbute of the Employees entity object such that Commission must be greater than zero.
How would you define that the validation rule applies only to those with the Jobld "SA_MAN" using the declarative features of ADF Business Components?
(Choose the best answer.)

  • A

    Remove the current validator and, instead, write a method validator in Java and use an if statement to check the value of JoblD.

  • B

    Remove the current validator and, instead, write a script validator using Groovy and use an if statement to check the value of JoblD.

  • C

    Remove the current validator and, instead, write a regular expression validator to check the value of JobID

  • D

    The entity object has a Validation Execution tab and you use this to set a conditional execution
    expression Jobld = "SA_MAN".

  • E

    Change the literal value in the current validation rule to be if Jobld = SA_MAN then return 0.1 else return null.