Static fields

Hi there,

I want to create a report from table. But I need new static field for report example: Company name, static text info…
How can I add static text field(not database field) in my report…

thanks

I code reports, don’t use as is, but the most easy way for me is to use PDF macros:
http://www.scriptcase.net/docs/en_us…df-layout/code

Doc is not updated. Macros take the same params than TCPDF. Just look the method on TCPDF docs.
An example.


sc_pdf_set_xy(165,12,false);
sc_pdf_write(10,"Date:",'',false,'',false, 0, false, true, 0, 0, '');

Thanks Giu

Thank you very much Giu, first time I have to deal with pdf reports, and you sample is very useful for starting.