Поставил точку останова на выполнение. выкидывает на PrologSection в Classes\InventJournalReport_Loss_RU вот сдесь.:
X++:
public void executeSection()
{
XMLNodeListIterator it = new XMLNodeListIterator(xmlNodeListProlog);
XMLNamedNodeMap nodeMap;
XMLElement elt;
XMLAttribute attr;
ReportTextControl ctrl;
Int idx;
;
elt = it.value();
nodeMap = elt.attributes();
for (idx = 0; idx < nodeMap.length(); idx++)
{
attr = nodeMap.item(idx);
ctrl = this.controlName(attr.name());
[B][COLOR="Red"] ctrl.text(attr.value());[/COLOR][/B]
}
super();
}