|
Use field display
format
FVS
|
Database field
name
or
Field display name
|
FVS returns (converts) the database field
value as a string using the field’s “editable” or “reparsable” string format
as specified by the database field properties. This is the same as the FV type, but
converted into a string.
Example:
FVS:BirthDate
Returns:
08+December+48+A.D.+00-00-00-AM
(08 December 48
A.D. 00-00-00-AM, assuming the display format is dd MMMM yy gg HH-mm-ss-tt)
FVS may be
prefixed by NoUrlEncode to indicate that the value will not be URL
encoded. (E.g., slashes will not be
converted to %2f.) However, the value
will be HTML encoded. (E.g., spaces are
converted to %20.)
Example:
NoUrlEncode:FVS:BirthDate
Returns:
08%20December%2048%20A.D.%2000-00-00-AM
|
|
Use reparsable
display format
FDV
|
Database field
name
or
Field display name
|
FDV returns (converts) the database field
value as a string using the field’s display format, as specified by the
database field properties, but the string may not be reparsable. The display string may be different than
the database field name because you may have selected a different display
format.
For example, FDV
converts field values to an expanded “display foreign key as” (DFKA) string
for DFKA-enabled fields. For most
field types, this is the same as FVS if there is no DFKA configured. However, FDV will convert Password values
to "*****" and Credit Card Number values to the "masked"
format (e.g. "XXXX-XXXX-XXXX-0000").
Example:
FVS:BirthDate
Returns:
08+December+48+A.D.+00-00-00-AM
(08 December 48
A.D. 00-00-00-AM, assuming the display format is dd MMMM yy gg HH-mm-ss-tt)
FDV may be
prefixed by NoUrlEncode to indicate that the value will not be URL
encoded. (E.g., spaces will not be
converted to %20.) However, the value
will be HTML encoded. (E.g., spaces
are converted to %20.)
Example:
NoUrlEncode:FDV:Birth Date
Returns:
08%20December%2048%20A.D.%2000-00-00-AM
|