i have 2 tables header and line.
filter line grid 'InventTable' record by if any header exist without executequery relation(exists or NotExist).
so i used below code.
container con having header values like 'ItemId'
for(i = 1; i <= conLen(con); i++)
{
info(strFmt("ItemId inside execqry: %1", conPeek(con, i)));
qbr = qbds.addRange(fieldNum(InventTable, ItemId));
qbr.value(SysQuery::valueNot(conPeek(con, i)));
}
above code havn't any error but didnt get expected result.
these filtered only last record.
Anybody help.....
Thanks in advance.
*This post is locked for comments
I have the same question (0)