Тема: Filter By Field
Показать сообщение отдельно
Старый 25.10.2007, 18:57   #5  
ist is offline
ist
Участник
 
60 / 10 (1) +
Регистрация: 29.07.2007
Цитата:
Сообщение от 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