ulrich.fuchs
25th October 2005, 16:35
I am trying to read records from a non-referred-table using a query extension: There is a table storing some additional data to some items, and I want to display that data in the item base data session. So I'm modifying the items (tcibd0501)/item (tcibd0101) session scripts with:


declaration:
table xymmm001 | my additional table, indexed by a field of tcitem domain
before.program:
query.extend.select("xymmm001.*")
query.extend.from("xymmm001")
query.extend.where("tcibd001._index1 refers to xymmm001._index1 unref clear")


and add my fields from xymmm001 to the dynamic form.

This works perfectly fine for the single occurence form tcibd0101. However, applied to the multi-occurence tcibd0501 my additional fields stay empty.

Am I missing something? Is it probably a bug?

Uli