Report format (DESFORMAT)
Hi,
We have a form (10g) that produces a label using RUN_REPORT_OBJECT.
The report produced is in a .esp format (encapsulated post script).
This report is sent to a label printer attached to the machine producing the report.
-- 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_DESTYPE,PRINTER);
SET_REPORT_OBJECT_PROPERTY(v_report,REPORT_SERVER,:global.ServerName);
SET_REPORT_OBJECT_PROPERTY(v_report,REPORT_OTHER,'paramform=no');
--SET_REPORT_OBJECT_PROPERTY(v_report,REPORT_DESNAME,'\\'||vPc_Name||'\'||p_def_lab_prin);
We have a form (10g) that produces a label using RUN_REPORT_OBJECT.
The report produced is in a .esp format (encapsulated post script).
This report is sent to a label printer attached to the machine producing the report.
-- 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_DESTYPE,PRINTER);
SET_REPORT_OBJECT_PROPERTY(v_report,REPORT_SERVER,:global.ServerName);
SET_REPORT_OBJECT_PROPERTY(v_report,REPORT_OTHER,'paramform=no');
--SET_REPORT_OBJECT_PROPERTY(v_report,REPORT_DESNAME,'\\'||vPc_Name||'\'||p_def_lab_prin);
0