One or two pages reports

What is the best one to create a report containing one or two pages of information with some tabular data perhaps. The report should look like an Invoice, Bill or Certificate of Analysis

The best what?

What have you tried?

I am trying to create something like this:

Header and detail

I have explored using memory tags and script module with all parameters as public static properties.

Now thinking of using UDT to hold everything in one object.

That is basically what I would like to do.

Where is the data coming from? e.g., SQL queries, ...

You really should not. This is a job for a database, with normalized tables for the four items in your diagram.

For this, I would create a database table with the columns for each (ndx, test parameter, specification and result, t_stamp) using a transaction group to do this and use that database/Query in the report as DataSource.

Thanks pturmel. Very helpful.

Thanks prashants