Changes

Visibility Permissions

693 bytes added, 17:15, 21 July 2014
Examples of Visibility Logic
===Examples of Visibility Logic===
 
* True if the Level 1 status is 'Draft':
'@opportunity.status@'='Draft'
or
'@opportunity.status@' In ('Draft')
 
 
* True unless the Level 1 status is 'Draft' or 'Open':
'@opportunity.status@' Not In ('Draft','Open')
 
* For a visibility permission based on the '''startdate''' or '''enddate''' [[standard field]]s:
::* Use ''''@fullstartdate@'''' rather than ''''@startdate@'''' and ''''@fullenddate@'''' rather than ''''@enddate@''''.
:''This will format the stored date as yyyy-mm-dd so it can be compared using < and >.''
'@fullstartdate@' >= '2009-05-01'
 
 
* True if today's date is after the Start Date:
now()>'@fullstartdate@'
 
 
* Never True
1=0
 
 
* Always True
1=1
==UTA-level Visibility Permissions==
8,849
edits