ADDRUDFS
Returns the specified Registration User Defined Field.
Reporting Area(s)
Registrations
This function can also be used on ACEweb templates where the name ID AND course code are available. Contact your ACEware technician for more information.
Required Parameters
- Course # (i.e. cocrse, rgcrse, pycrse) + Name ID (i.e. nmid, rgid, pyid)
- Field from the Registration UDF field to return (i.e. "rudfn1", "rudfc1", "rudfl2")
Optional Parameters
None
Example(s)
ADDRUDFS(rgcrse+rgid,"rudfc2") returns the value of registration user defined character field 2
ACEweb Examples
The VFP version uses the rgcrse+rgid value. Rgcrse must be padded to 12 characters.
##addrudfs(padr(tCard.cocrse,12," ")+tPerson.nmid,"rudfc1")##
The SQL version uses the rgoid value.
##addrudfs(rgoid,"rudfc1")##
Notes
Course # and Name ID are passed as one parameter and must be combined with plus sign (+).