hi all ,
i am doing SSRS report , i am using UI Builder for lookup of Parameters.
One parameter i having like CustId , in that parameter i need to give id with name , but only CustId is displaying there. I have written this code
public void custIdLookup(FormStringControl _control)
{
Query query = new Query();
QueryBuildDataSource qbds;
container conCustId;
SysTableLookup stl;
SysLookupMultiSelect slms;
query = new Query(queryStr(OGS_CustomerBackLogReport));
stl = SysTableLookup::newParameters(tableNum(CustTable),_control);
stl.addLookupField(fieldNum(CustTable, AccountNum));
stl.addLookupField(fieldNum(DirPartyTable, Name));
stl.parmQuery(query);
stl.performFormLookup();
}
Please tell guys whats the problem here.
thanks
*This post is locked for comments