Skip to main content

Barcode Report in XML Publisher

XML Publisher 5.6 has a new tab: Administration. This replaces the xdo.cfg configuration file. Now fonts can be uploaded and stored in the database instead of stored on the file system.

Under the Administration tab are sub tabs: Configuration, Font Mappings and Font Files and Currencies.


Download 3of9-barcode font.

To install a font requires only a few steps.

  • Font Family is the exact same name you see in Word under Fonts.
  • If you don't use the same name the font will not be picked up at run time.



Log in as XML Publisher Administrator.





Navigate to Administration->Font Files->Create Font File



Fields are Font Name and File.





Fields are Font Name and File.
For Font Name choose any descriptive name like below.






Navigate to Font Mappings->Create Font Mapping Set


Mapping name is the name you will give to a set of fonts.



Mapping code is the internal name you will give to this set.

Font Family is the exact same name you see in Word under Fonts.


Navigate to Configuration General-> FO Processing->Font Mapping Set. 






In RTF 

Select the font and upload your layout.



Comments

Popular posts from this blog

API to Create & Update Price Adjustment and Order Lines

Important Tables: select header_id from oe_order_headers_all; select line_id from oe_order_lines_all; select list_header_id from qp_list_headers_all; select list_line_id from qp_list_lines; CREATE OR REPLACE PROCEDURE apps.xxapply_discount (p_header_id number) IS    v_api_version_number           number := 1;    v_return_status                varchar2 (2000);    v_msg_count                    number;    v_msg_data                     varchar2 (2000);    -- in variables --    v_header_rec                   oe_order_pub.header_rec_type;    v_line_tbl                     oe_order_pub.line_tbl_type;    v_action_request_tbl   ...

Uninvoiced Receipts Query Oracle r12

Uninvoiced Receipts: SELECT   pha.segment1 po_number,          TO_CHAR (pha.creation_date, 'DD-MON-RRRR') po_date,          (SELECT   vendor_name             FROM   ap_suppliers ap            WHERE   ap.vendor_id = pha.vendor_id)             supplier_name,          pla.quantity,          pla.unit_price,          pla.quantity * pla.unit_price AS line_amount,          (SELECT   concatenated_segments             FROM   gl_code_combinations_kfv gcc            WHERE   gcc.code_combination_id = pda.code_combination_id)             charge_account,          rsh...