Problem with Input Validation – Mandatory field
What I want is when WAREHOUSE is selected, the failure message (“You must select Import or Domestic”) doesn’t get displayed. This message should only gets displayed when INBOUND DELIVERY is selected.
1st Field Name: TypeOfAdj - Radio Button - Editable
Choices: INBOUND DELIVERY and WAREHOUSE
Input Validation: @If(TypeOfAdj!=“” ; @Success; @Failure(“You must enter Type of Adjustment”))
2nd Field Name: TypeOfAdj1 - Check Box - Editable
Choices: Import and Domestic
Input Validation: @If(TypeOfAdj1=“Import”; @Success; @Failure(“You must select Import or Domestic”))
Hide Paragraph = TypeOfAdj !=“INBOUND DELIVERY”
Any help will be appreciated.
Marion