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
Newmom40Newmom40 

Custom Fields and Relationships

I may have done things out of order, but I am stuck at trying to figure out how to make the participants status dependent upon several other fields that must be satisfied before they can be eligible i.e.. Age, proof of residency, employment status, etc.

RakeshistomRakeshistom

you can use field dependency

Jia HuJia Hu
You may check the Workbook first, there are examples,...

Tutorial #2: Adding Relationships
http://www.salesforce.com/us/developer/docs/workbook/Content/relationships_intro.htm
kevindotcarkevindotcar

Hi

 

This is really just a point of discussion, but the typical problem I've found with form entry validation is when the form is built out with a lot of dependencies, field validation becomes  circular.

 

Ie,  

A depends on B

B depends on C

C depends on A

 

Assuming that's all thought out- I'd go with Validation rules, as Field dependencies are limited (AFAIK) to picklists.