This is just one of many examples I have.
I have a field that has up to three codes separated by a space that identifies Problem categories. I need to break this field apart to:
a) Look up the category name from the category
file
b) Use the information found to write out to
separate subcategory and producttype records.
On the original category field, I had the following postmap instructions:
: $category=category in $axces.target
: $junk=strpadr($category, 10)
: $category1=substr($category, 1, 2)
: $category2=substr($category, 4, 2)
: $category3=substr($category, 7, 2)
OK, the next part is how to:
a) verify that the categories have been
calculated correctly?
b) Use the value calculated instead of the
full category value
Thanks!!
Kim


Reply With Quote
Bookmarks