Here's what I do
TOratable1, tablename LUMaster (LookupID, Name)
TOraTable2, tablename LUDetails (LookupID, ID, Name)
TDatasource1, connected to LUMaster
Set IndexFieldNames of LUDetails to LookupID;ID
Set MasterFieldNames of LUDetails to LookupID
Set Mastersource of LUDetails to tDatasource1
Do I need to enter SQL for this? I was actually hoping the smart table would generate it's own master/detail parametered query.
UPDATE
Regards - Hans