Subform Columns From JOIN
Posted: Thu Apr 29, 2021 2:20 pm
I am converting my v3 to v4.5 and stuck at converting a subform which pulls in extra info from another table.
The subform is based on table paying_in, and the browse SQL is:
Problem is none of the fields from ticket_summary (capitalized names - from another system) are displayed. Any ideas?
The subform is based on table paying_in, and the browse SQL is:
Code: Select all
select pay_cash_tendered, DriverID, Driver, Duty, CashAmt, AnnulAmt
from paying_in
join cash_date on (cash_date_id = pay_cash_date_id)
join ticket_summary on (cdt_date = SchedDate and pay_emp_driverno = DriverID and pay_duty_id = Duty)
order by Driver asc