johnf wrote: > We could remove the aggregate bizobj and make a direct sql call. But what > you > are saying is I can't use a table twice.
You can use a table as many times as you want. You can instantiate as many instances of the same bizobj as you like. You can even add these redundant bizobjs to the form using addBizobj() if you want, but you have to give each one a unique DataSource so the form can differentiate between them. first = biz.Customers(conn, DataSource="Customers") second = biz.Customers(conn, DataSource="Customers1") Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
