Table of Content
HAL Forum
procedure StartReportJob (
string repname)
Description:
starts report with header. It is always used together with EndHeader and EndJob
Parameters:
repname report name
global
procedure TestRn(record RcVc RepSpec)
begin
  StartReportJob("Test");
//header ouput
  EndHeader;
//data output
  EndJob;
  return;
end;
Related topics:
««