How can I suppress the check character for Code 39 Barcode in Oracle Reports Builder
How can I suppress the check character for Code 39 Barcode in Oracle Reports Builder |
---|
I created a barcode in Oracle Reports Builder that contains a Subinventory field, carriage return, line feed and Locator field. I used Code 39 in EBS 12.2.10. The only problem with the barcode is the additional check character at the end of the Locator field. The view for the report has the following SQL for the barcode field: |
NVL (rqmnts.supply_subinventory, 'PROD') |
|| '$M$J' |
|| NVL (mil.SEGMENT1, 'PROD') |
|| '-' |
|| NVL (mil.SEGMENT2, 'NO') |
|| '-' |
|| NVL (MIL.SEGMENT3, 'LOC') |
supply_locator, |
Is there some code I can add/modify to the code below to eliminate the check character from the barcode for Code 39 barcodes? |