Have module A and module B and a link module to keep track of the links between the two.
In module A, I want a column that shows (for each object in module A) the object text, of the object it is linked to in object B.
i used the analysis Wizard and am having a problem - it only is finding NEW links created after the column is added. However, there ARE existing links but they are not showing up.
string linkModName = fullName(linkModItem) //verified linkModItem is valid
for l in all(o->linkModName) do {
// dump object text - only displaying links created after?
}
Only seems to work for links added after this column is created.
However - if I change the above to for l in all(o->"*")
it will bring in the per-exisitng links.
Any point in the right direction is appreciated.