I added this to the init method in the view datasource, but still not pulling data from company that I switch to:
public void init()
{
QueryBuildDataSource qbdsLedgerJournalTableView;
super();
qbdsLedgerJournalTableView=this.query().dataSourceTable(tableNum(LedgerJournalTableView));
//Make sure the view pulls from current company
qbdsLedgerJournalTableView.addRange(fieldNum(LedgerJournalTableView,DataAreaId)).value(curExt());
}
any ideas?