Hi Everyone, Sorry if the subject was too vague. What i am trying to do is this:
<field name="A"/> <field name="B"/> <field name="C" multiValued="true"/> <field name="D" /> <field name="E" multiValued="true"/> <copyField source="A" dest="C"/> <copyField source="B" dest="C"/> <copyField source="D" dest="E"/> <copyField source="C" dest="E"/> So basically i am trying to copy one of the destination fields of a copy field to another field. The question i have is whether the field E will get populated properly ie., by the time E is getting constructed would the field C have all the relevant values? Thanks