We have data that is stored in an attribute with multiple values and up to two sub-values per value. Using an I-type dictionary, I have found that I can only extract specific sub-values if any sub-value marks are converted to another character first.
For instance, the following will not work for attribute 2 (formula) in the dictionary to retrieve the first sub-value:
FIELDS( @RECORD<77>, @SM, 1, 1 )
Instead, we have resorted to using the following:
CONVERT( @SM, "`", @RECORD<77> ); FIELDS( @1, "`", 1, 1 )
Just curious if this is an expected behavior or if anyone has found a more elegant solution.
Thanks!
------------------------------
Jeff Teter
Woodforest National Bank
The Woodlands, TX
------------------------------




