Цитата:
Сообщение от
EVGL
Maybe you cannot.

Try to look if a range exists on your field.
When it is filtering with "Filter By Field" strange why executeQuery did not invoke.
X++:
public void executeQuery()
{
QueryBuildRange qbr;
Query query = this.query();
;
qbr = this.query().dataSourceTable(tableNum(ExtCodeValueTable)).findRange(fieldNum(ExtCodeValueTable, ExtCodeValue));
if(qbr)
{
query.dataSourceTable(tableNum(ExtCodeValueTable)).joinMode(JoinMode::InnerJoin);
}
super();
}
The debuger does not stop on the breakpoint