How to Send report to printer using CUPS on LINUX
HI,
In the process of moving reports from Microsoft to Linux (Centos 5).
I have read Document I.D:1063798.1 "CUPS Printing Support for Reports Server on Linux And Unix Platforms"
I have installed CUPS and it works when using : lpr test.pdf, my labels are printed.
I have updated report.sh as advised in the doc as well.
When I call my report from a form using the following:
-- create parameters to call the report
v_report := FIND_REPORT_OBJECT('STR03450');
SET_REPORT_OBJECT_PROPERTY(v_report,REPORT_COMM_MODE,ASYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(v_report,REPORT_SERVER,:global.ServerName);
In the process of moving reports from Microsoft to Linux (Centos 5).
I have read Document I.D:1063798.1 "CUPS Printing Support for Reports Server on Linux And Unix Platforms"
I have installed CUPS and it works when using : lpr test.pdf, my labels are printed.
I have updated report.sh as advised in the doc as well.
When I call my report from a form using the following:
-- create parameters to call the report
v_report := FIND_REPORT_OBJECT('STR03450');
SET_REPORT_OBJECT_PROPERTY(v_report,REPORT_COMM_MODE,ASYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(v_report,REPORT_SERVER,:global.ServerName);
0