I am using Code 39(3 of 9) Barcode font for my report. Every thing seems to be fine and barcode seems to be displayed correctly, but not recognized by the barcode reader/gun?
For code 39 barcode fonts asterisk(*) is used as a start and end delimeter. So any text which is displayed as barcode should have * at the start and end.
E.g. 12345 should be displayed as *12345*
Search This Blog
Friday, May 8, 2009
Using 3 of 9 Barcodes in XML Publisher
Posted by Suresh Vaishya at 10:10 AM 29 comments
Labels: Oracle Reports/Forms, XML Publisher
Thursday, May 7, 2009
How to query/find discoverer reports in Oracle using APPS Schema
The table to store discoverer is stored in the EUL Schema. For e.g. if the name of EUL is EUL4_US then a schema with that name will be created in oracle database. Run following query to know the name of table
SELECT owner,table_name
FROM all_tables
WHERE owner = 'EUL4_US' AND table_name LIKE '%DOCUMENT%'
The above query in this case will list table_name EUL4_DOCUMENTS
All the discoverer report names are stored in this table, so
SELECT * FROM EUL4_US.EUL4_DOCUMENTSshould display name, owner etc of discoverer reports
Posted by Suresh Vaishya at 10:15 PM 4 comments
Labels: Discoverer
Sunday, May 3, 2009
Preserve Timestamp, mode, owner while using copy command in Unix
In Unix, Sometimes when we need to take a backup of the file we generally add timestamp along with the file and create a backup, however the new file created has the creation date as system date.
This can be avoided using preserve option in unix.
For e.g. I will copy ARXSGPO.rdf from $AR_TOP/reports/US directory. The file signature looks like
-rw-r--r-- 1 applmgr oracle 647168 Apr 21 13:31 ARXSGPO.rdf
Now the following files are created using preserve and no preserve option
cp ARXSGPO.rdf ARXSGPO_np.rdf # without preserve option
cp -p ARXSGPO.rdf ARXSGPO_p.rdf # with preserve option
This is how the signature of file looks like
-rw-r--r-- 1 applmgr oracle 647168 Apr 21 13:31 ARXSGPO.rdf
-rw-r--r-- 1 applmgr oracle 647168 Apr 21 13:31 ARXSGPO_p.rdf
-rw-r--r-- 1 applmgr oracle 647168 May 3 23:43 ARXSGPO_np.rdf
It can be noted that ARXSGPO_np.rdf has timestamp as May 3, whereas file ARXSGPO_p.rdf created using preserve mode has timestamp as Apr 21. So using preserve option we can save the original information of the file from where the file is copied.
Posted by Suresh Vaishya at 11:28 PM 1 comments
Labels: Unix

