I have documents that I’m diplaying in the web from the mail-in database. sometimes the body field has more items than it can contain thus resulting in the split to eg(Dup Item ID: 0), Dup Item ID: 1, Dup Item ID: 3. How do I manipulate the body field that I exclude some info on it. lets say in case it has got 3 Dup Item IDs, I only want to display the Dup Item ID: 0 and Dup Item ID: 2.
Plz help
Subject: Manipulate the body Field
The mail Body field is a rich text field.
RIch text fields will be stored in sucessive “fields” as they grow, but you have to treat them as one, single big field. To my knowledge you can’t just work with one instance of the body field.
If you have a form on the web and it has the body field on the form, that field will display the whole rich text field, regardless of how it is stored in the backend.
If you need to work with specific portion of the data, perhaps you need to run an agent and some script to analyse the content of the field, find the data you need and copy it to usable non-RTF fields.