Creting report for TfrxReportServer
Hello,
following docs I am creating an application that use TfrxReportServer component.
I understood the report should be created with internal data so I am using the report designer to create .fr3 files.
Now I should create a master-details relationship but I don't know how to proceed cause in the designer of the Fast-Report VCL Enterprise I didnot find any way to create a relation between two tables.
I always created master-detail relation in delphi datamodule to use in my application reports but how can I get the same result inside a standalone report I can use through a HTTP call to a TfrxReportServer?
Thank you, Davide
Comments
Detail query:
select * from orders
where CustNo := CustNo -- CustNo is a field name from master dataset
Set DetailQuery.Master = MasterDataset
think it must be
where CustNo = :CustNo
Yes, of course