Iterating over any table
问题 I just started new job where they use dynamics ax 2009. I am new to this technology. Is there a way in x++ to iterate over any table? I don't know where the data comes from, it's lenght nor field count. What I mean by that is I need a function that would behave like this void convert(Table anyTable) { int i=0; int k=0; ; for(i; i < anyTable.Lenght; i++) { for(k; k < anyTable[i].Count; k++) { //some xml processing } } } (By Table i mean some kind of parent of all tables). And that basically is