Is List Entry Applicable hook
Use this hook to indicate whether a certain list constant is applicable. If the list constant is not applicable it is not displayed in the field's drop down list box, so the end-user cannot select it.
The constant names to be used in the hooks are the constants that are defined in the CDF Lists (ttadv4592m000) session. If a standard enum domain is used for the CDF, instead of a List, the constant names can be found in the Domains (ttadv4500m000) session, Enum/Set data.
Example:
function extern boolean tdsls400.cdf_brsn.export.is.applicable(long mode)
{
if tdsls400.orno(1;3) = "EXP" or
tdsls400.orno(1;3) = "SLE" then
return(true)
endif
return(false)
}