|
|
|
|
|
- Overview
- Principle for printing in an iPhone/iPad application or in Universal Windows App mode
- Limitations
Print report (iPhone/iPad or Android)
When creating a report, the test of this report can be run from the report editor. You also have the ability to include this report in your applications. The user will have the ability to print the report from a button or from a menu option for example. In the iPhone or iPad applications or in the applications in Universal Windows App mode, the report can be printed in PDF format only. Then, this PDF file can be printed, viewed, emailed, ... Principle for printing in an iPhone/iPad application or in Universal Windows App mode The principle of printing a report is very simple: a PDF file is created when the report is printed.. Then, all you have to do is open this PDF file in the appropriate software and print it on the printer configured for the computer used. Regardless of the type of report to print, the principle for printing a report is as follows: - Specify the print mode of report (generation of a PDF file) with iDestination.
- Start the print job in PDF format with iPrintReport.
- Then, you will have the ability to:
- display the generated file on the user computer (ShellExecute).
  print the generated PDF file via the iOS print system (iPrintPDF). - ...
Caution: Check the following points: - You must have the rights to write into the directory where the document will be generated.
If you generate a report in PDF format, this file can be saved in the data directory (path returned by fDataDir). - Use a specific name for each generated document. Otherwise, several simultaneous prints would overwrite the prints already performed.
This principle must be adapted according to the data source used in each report. Example:
FileName = fDataDir() + [fSep()] + StringBuild("ORF_%1.PDF", OrderNumber)
iDestination(iGenericPDF, FileName)
iPrintReport(RPT_OrderForm, OrderNumber, OrderNumber)
IF fFileExist(FileName) = False THEN
Error("The PDF file was not generated")
RETURN
END
IF YesNo(Yes, "Display the generated order form (PDF format)?") = Yes THEN
ShellExecute(FileName)
ELSE
iPrintPDF(FileName)
END
The following paragraphs show how to: The following limitations apply to reports created with the report editor in applications for iPhone/iPad or Universal Windows Apps: - RTF is not supported: no fields in RTF format, ...
- Only the Chart controls created from version 17 are available.
- The following controls are not available:
- Edit controls.
- HTML controls.
- Spreadsheet controls.
- Signature controls.
- Organizer and Scheduler controls.
- Gantt Chart controls.
- Pivot Table controls.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|