PDF report with bar code

Hello.
I am creating a PDF report using the Oracle Reports 6i running on Oracle Concurrent Manager.
The PDF report has a bar code.
The report finish with success but it is visualized without the bar code.
Into the output report the bar code name is small font (mw6code39mt) always.
I can visualize the output report when I manually alter the bar code name from small font to large font (MW6 Code39MT) only. I do it in my Unix server using the text editor.
The bar code name installed in my PC is large font (MW6 Code39MT)
I am experiencing problem when visualizing or printing the output report.
Has somebody experience about it or some idea about how can I to configure the Unix server or Oracle to solve the problem?
Thank you.
Edson

Hi Julie,
Sorry my english.
I will try to explain in more details the problem.
I have identified that the bar code name into the PDF output is lowercase (mw6code39mt).
I only visualize or print the PDF output with the bar code when I manually alter that bar code name from lowercase to uppercase (MW6Code39MT).
I do that in my Unix server using the vi editor.
Please, see what I need to alter in the PDF output file on Unix server:
<</Type /Font
/Name /F1
/Subtype /Type1
/Encoding /WinAnsiEncoding
/BaseFont /mw6code39mt ====> alter to MW6Code39MT
/FirstChar 24
/LastChar 255
/Widths 9 0 R
/FontDescriptor 10 0 R
>>
endobj
Thank you.
Edson

Similar Messages

  • Help! Generating paper report with Bar code for web

    Now I am using Oracle 9i AS Release 2 + Report 9i and I try to run the demo paper report "ShippingManifest.rdf" which includes Bar Code inside. But I cannot launch the report successfully. The problem seems the report service cannot call build in package ORA_JAVA. Btw, with the same report, I can run this report on the report bulider without any problem on the same machine.
    Actaully, can I launch this demo report from web? If so, how can I includes classpath for the bulid in package?
    or I must use JSP report instead?
    Thanks & Regards
    Louis Lei

    tnx. i resolved the problem.
    now i have anoyher one:
    my report has a CF formula --- OLE2--- some file.doc (Word) (one page :))
    in reports 6i it works just fine...
    but in oracle apps i can only see the header and not the word doc....
    i tried to convert the doc to pdf (because i have pdf as output for my report...) but i still have the same problem....
    the word doc is a paramater :p_link : d:\scan\pag1.doc
    what should i do to see this in application....
    ???

  • Report with bar codes for Oracle Inventory

    Hye!
    I have this sql: (reports 6i):
    select
    b.inventory_item_id,
    B.SEGMENT1,
    G.SCHEDULED_START_DATE,
    G.START_QUANTITY,
    T.WIP_ENTITY_NAME,
    '!'||to_char(T.WIP_ENTITY_ID)||'!' entity_id,
    xxx.max_revizie revizie
    from wip_ENTITIES t,
    MTL_SYSTEM_ITEMS_B B,
    WIP_DISCRETE_JOBS G,
    (select t.inventory_item_id item_id,max(t.revision) max_revizie
    from inv.mtl_item_revisions_b t
    where t.organization_id=87
    group by t.inventory_item_id) xxx
    WHERE T.PRIMARY_ITEM_ID=B.INVENTORY_ITEM_ID
    AND T.ORGANIZATION_ID=B.ORGANIZATION_ID
    AND T.WIP_ENTITY_ID=G.WIP_ENTITY_ID
    AND T.WIP_ENTITY_NAME BETWEEN :P_JOB_DELA AND :P_JOB_PANALA
    and xxx.item_id=b.inventory_item_id
    where entity_id is the bar code....
    What should i do to see the report in Oracle Inventory.... to see the bar codes???
    tnx

    tnx. i resolved the problem.
    now i have anoyher one:
    my report has a CF formula --- OLE2--- some file.doc (Word) (one page :))
    in reports 6i it works just fine...
    but in oracle apps i can only see the header and not the word doc....
    i tried to convert the doc to pdf (because i have pdf as output for my report...) but i still have the same problem....
    the word doc is a paramater :p_link : d:\scan\pag1.doc
    what should i do to see this in application....
    ???

  • Generate a new pdf report with itens on my pdf form

    Hi! My name is Heitor.
    I have Adobe Forms Central and Adobe Acrobat XI Pro installed on my machine.
    I would like to know if its possible to make a pdf report.
    Example: Clicking in a button "print" on my already open and filled pdf form, and gathering all my 30 itens (see that i am only showing 5 itens on my form. but on my form exists a "Add" button to add itens on variables) on a dropdown list and generating a new pdf report with all these itens listed.
    Thanks!
    Heitor Teixeira
    www.heitorteixeira.com

    Hi! My name is Heitor.
    I have Adobe Forms Central and Adobe Acrobat XI Pro installed on my machine.
    I would like to know if its possible to make a pdf report.
    Example: Clicking in a button "print" on my already open and filled pdf form, and gathering all my 30 itens (see that i am only showing 5 itens on my form. but on my form exists a "Add" button to add itens on variables) on a dropdown list and generating a new pdf report with all these itens listed.
    Thanks!
    Heitor Teixeira
    www.heitorteixeira.com

  • How to call PDF Report with parameters in jdeveloper 10.1.3

    Hi all,
    how to call PDF Report with parameters in jdeveloper 10.1.3
    for example I have Report name is repdept.pdf with parameter as deptno
    and I want call this Report from JSP page ?
    thanks
    frank

    Hi all,
    how to call PDF Report with parameters in jdeveloper 10.1.3
    for example I have Report name is repdept.pdf with parameter as deptno
    and I want call this Report from JSP page ?
    thanks
    frank

  • Problem in printing pdf document with java code

    Hi All
    I want to print a pdf document with java code i have used PDFRenderer.jar to compile my code.
    Code:
    File f = new File("C:/Documents and Settings/123/Desktop/1241422767.pdf");
    FileInputStream fis = new FileInputStream(f);
    FileChannel fc = fis.getChannel();
    ByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
    PDFFile pdfFile = new PDFFile(bb); // Create PDF Print Page
    PDFPrintPage pages = new PDFPrintPage(pdfFile);
    // Create Print Job
    PrinterJob pjob = PrinterJob.getPrinterJob();
    PageFormat pf = PrinterJob.getPrinterJob().defaultPage();
    pjob.setJobName(f.getName());
    Book book = new Book();
    book.append(pages, pf, pdfFile.getNumPages());
    pjob.setPageable(book);
    // System.out.println(pjob.getPrintService());
    // Send print job to default printer
    pjob.print();
    but when i am running my program i am getting error
    Exception in thread "main" java.awt.print.PrinterException: Invalid name of PrintService.
    Please anybody, knows the solution for this error?
    Thanks In Advance
    Indira

    It seems that either there is no default printer setup or you have too many printers or no printer setup at all. Try running the following code. It should print the list of available print services.
    import java.awt.print.*;
    import javax.print.*;
    public class PrintServiceNames{
         public static void main(String args[]) throws Exception {
              PrintService[] printServices = PrinterJob.lookupPrintServices();
              int i;
              for (i = 0; i < printServices.length; i++) {
                   System.out.println("P: " + printServices);
    }From the list pick one of the print service names and set it explicitly like "printerJob.setPrintService(printServices);" and then try running the program.

  • PDF Report with MS word document attchments in Shared Drive

    Hello,
    I need PDF report with attachments. the attachments ( could be image , word document) are stored in a shared drive made accessible from apps server.
    Please let me know if this is doable using xml publisher and what is the approach.
    thanks
    Arun

    Check this out
    http://blogs.oracle.com/xmlpublisher/2008/07/file_attachments.html
    Tim

  • ArchiveLink Late storing with bar code in Records Management

    I want first to archive a document with the scenario Late storing with bar code over archive link (function module ARCHIV_BARCODE_GLOBAL) and right away adding the barcode document to a record in records management.
    For both i need a business object (expample DOCUMENT or RECORD). When i want to add a archived document to a record i do need a DOCUMENT_ID to create a POID. But i do get the poid only after the document is scanned and finally archived. At the time where I insert the barcode with the function module archive_barcode_global, I don't get back a document_id. This is the first problem. The second problem is, that I can't use the business objects from Records Management (document or record) for the barcode scenario since there the business object ID is expected and the business object id for the business objects document or record is the document id.
    The only way seems to create two business objects. one for the storing with barcode and one for the connection to records management. and i seem only to be able to create a record and inserting the archived document after the document is really scanned and archived.
    My question now is, does anybody knows a way where i can use the archive link scenario late storing with barcode and being able to add the future archived document right away to a record? I want to do both in one step and only want to use one business object. Is this possible?
    Thank you very much.
    Martin

    I am trying to do the same and would a appreciate a response to this question.

  • Standard Reports with T codes.

    Hi All,
               How to get all the Standard reports with T-codes as a list in MM functionality.

    U can get reports from MC01 Transaction also.
    Copy the reports from following link,
    http://www.sap-img.com/materials/list-of-standard-reports-in-mm.htm
    Edited by: Anand K on Apr 17, 2008 12:28 PM

  • Get Windows message "Terminate 5-1" after printing pdf reports with Orarrp

    Hi,
    I get error message "Terminate 5-1" on clients machine after pdf report is printed with Orarrp.
    The clients is Windows XP with acrobat reader 5.
    I test on acrobat reader 6 and get the same result.
    This occur for all pdf reports and all clients.
    However this message just shows when perform printing, if I cancel printing from print dialog box then this message does not show.
    How can I avoid this message?
    Thanks in advance
    Tawatchai R.
    ===================
    Hi,
    I have same error message(Message Title: TerminateProcess Value; Message Body: 5-1) showing up when using Orarrp to print directly to printer on WEB using Oracle Forms. On my pc it shows when I have adobe acrobat reader opened up already and on others it may shows even if adobe acrobat is not already opened. However document gets printed but this is very annoying for the user to see this message.
    Client Environments:
    1. Windows XP, HP LaserJet 5P and HP LaserJet 4100 Series PCL, Adobe Acrobat 6.0
    2. Windows 2000 Professional, HP LaserJet 4000 Series PCL, Adobe Acrobat 5.0 and 6.0
    Thanks
    Kulwinder Sidhu

    Hi Kulwinder,
    We are getting this problem whenever we go through the following steps:
    - Generate a PDF report without an ORARRP file extension on a dedicated reports server. Preview the report by opening in Adobe Reader using WEB.SHOW_DOCUMENT.
    - Generate a PDF report with a ORARRP file extension of rrpa on a dedicated reports server. Directly print the report without a print dialog box using WEB.SHOW_DOCUMENT to invoke ORARRP.
    After printing the Terminate Process 5-1 message appears and Adobe is left running. If the first step is missed out then printing occurs without error and Adobe closes automatically.
    Please could you give more information on how you solved the problem. I am using Windows XP and Adobe 7.
    Thanks,
    Pete

  • Report and bar code directly on the PDF

    Hello,
    I'am doing a report with XML / Publisher, the report must contain a bar code and have a PDF output since OEBS.
    The bar code must appear on the PDF.
    How can I do that ?
    I need to install a font on the Unix server?
    If yes, how ? And how to ensure that XML / Publisher integratess it ?
    Thanks

    Tim,
    Please help.
    The 'Employee W-2 PDF' generates only blank pdf documents. I have check all I know, template, log files, output post processor. Everything looks fine. And my other customized PO printing program woks fine.
    Is there any configuration that I am missing? I am new to BI Publisher.
    We are using 11.5.10.2, 10.2, and 5.6.3.
    Sorry to ask quesiton, here. But I frustrated and nervous for this is our only way for producing W-2s. Thanks

  • Generation PDF Report with Graph 6i

    Hello all of u,
    I have a problem to Generate 6i report with pie Graph in PDF format ,,
    Report run well and at the bottom show the pie graph with different color
    But when I Generate a PDF file, graph did not show and only back circle show
    What is the problem with the oracle graph and why color did not shown?
    Please help me
    Thanks to all

    Hi Julie,
    Sorry my english.
    I will try to explain in more details the problem.
    I have identified that the bar code name into the PDF output is lowercase (mw6code39mt).
    I only visualize or print the PDF output with the bar code when I manually alter that bar code name from lowercase to uppercase (MW6Code39MT).
    I do that in my Unix server using the vi editor.
    Please, see what I need to alter in the PDF output file on Unix server:
    <</Type /Font
    /Name /F1
    /Subtype /Type1
    /Encoding /WinAnsiEncoding
    /BaseFont /mw6code39mt ====> alter to MW6Code39MT
    /FirstChar 24
    /LastChar 255
    /Widths 9 0 R
    /FontDescriptor 10 0 R
    >>
    endobj
    Thank you.
    Edson

  • Create PDF report with APEX and Oracle 11g doesn't work

    Hi everyone,
    I have a problem with the downloading of PDF reports from APEX with Oracle 11g.
    When I try to download a PDF, Acrobat Reader says it can not open the file.
    I have done the same test in an environment with APEX and Oracle 10g and it works perfectly.
    Does anyone know if there is a known bug for version 11g.
    Thank you very much.

    Hi Munky,
    I open the generated file the Notepad++ I can read the next message:
    *<HTML><HEAD><TITLE>500 Internal Server Error</TITLE></HEAD><BODY><H1>500 Internal Server Error</H1>OracleJSP:*
    An error occurred. Consult your application/system administrator for support. Programmers should consider setting the init-param <code>debug_mode</code> to "true" to see the complete exception message.</BODY></HTML>
    I have not idea can I solve the problem.
    Have you got any solution for this problem??
    Thank you so much.
    Victor Muñoz.

  • Failed to Open FR report With Error code 500 - 'unable to process request'

    I am running a load test against PBCS service. The service is load-balanced with 2 managed servers : EPMServer0 and EPMServer1
    When I put the loads with 60 VUs -- all visiting FR reports, the service runs without error. But when the VU# increased to 90, it began to respond with Error code 500  - 'unable to process request'.
    I tried to correlate the FRLogging logs to the errors, and found during the time those error happens, there are logs like this:
    >>>>>>>>>>>>>>>>>>>>>>>>>>
    [2013-09-27T05:21:29.325+00:00] [EPMServer0] [WARNING] [00365] [oracle.EPMFR.core] [tid: [ACTIVE].ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: sysname50134114.PerfUser0439] [ecid: 004tpQ^VFHT7m3RLIYDCif0007a30002bD,0:2:1:1] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_CLASS: com.hyperion.reporting.connection.UserConnection] [SRC_METHOD: openConnection] User authentication information is invalid. Unable to connect to datasource.[[
    com.hyperion.reporting.util.HyperionReportException: Error connecting to database connection Vision:Plan1: Failed to sync with user provisioning.com.hyperion.planning.HspRuntimeException
            at com.hyperion.reporting.connection.UserConnection.openConnection(Unknown Source)
            at com.hyperion.reporting.connection.UserConnection.openConnection(Unknown Source)
            at com.hyperion.reporting.connection.UserConnection.<init>(Unknown Source)
            at com.hyperion.reporting.connection.ConnectionManager.getConnection(Unknown Source)
            at com.hyperion.reporting.connection.ConnectionManager.getCube(Unknown Source)
            at com.hyperion.reporting.connection.ConnectionManager.getCube(Unknown Source)
            at com.hyperion.reporting.webviewer.WebDynamicReport.validateDatasources(Unknown Source)
        at jsp_servlet._modules._com._hyperion._reporting._web._reportviewer.__hrhtmlreport._jspService(__hrhtmlreport.java:1999)
            at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
            at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
            at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
            at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
            at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at com.hyperion.reporting.webviewer.HRSecurePagesFilter.needAuthentication(Unknown Source)
            at com.hyperion.reporting.webviewer.HRSecurePagesFilter.doFilter(Unknown Source)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at com.hyperion.reporting.webviewer.FRClusterHelper.doFilter(Unknown Source)
    >>>>>>>>>>>>>>>>>>>>>>>>>
    It looks like the servlet failed to open the datasource connection while handling the FR requests. But there are several data sources. My questions are:
    1) Which datasource is corresponding to the issue? Is it EPMSystemRegistry?
    2) What is the recommended configuration for the connection pool max capacity setting? -- current setting for EPMSystemRegistry is 30
    3) Whether it could be a connection leak problem as only 90 concurrent end user is visiting and it failed to connect?
    Thanks,
    Ellick Lu
    Type
    JNDI Name
    Targets
    aif_datasource
    Generic
    jdbc/aif_datasource
    EPMServer
    calc_datasource
    Generic
    jdbc/calc_datasource
    EPMServer
    EPMSystemRegistry
    Generic
    jdbc/EPMSystemRegistry
    EPMServer
    odiMasterRepository
    Generic
    jdbc/odiMasterRepository
    EPMServer
    planning_datasource
    Generic
    jdbc/planning_datasource
    EPMServer
    raframework_datasource
    Generic
    jdbc/raframework_datasource
    EPMServer

    It is checking for Database connection in Workspace. Check Editing Database Connections
    Can those users login to Planning? Do they have correct security setup (I guess not)
    Regards
    Celvin
    http://www.orahyplabs.com

  • How to set up a pdf embeded with different code so that people can get different excess code after they paid on-line?

    For example, I want to set up a pdf embeded with code, and send it on-line. People who want it should pay for it first and get the access code. I need to set different access code in order to avoid people A give the access to people B.

    Unless you use a very expensive DRM protection measure, I don't see how it's possible. How can you prevent someone from sending a file with the password to someone else?

Maybe you are looking for

  • Itunes 8.2 won't open and gives weird message

    I tried downloading iTunes 8.2... it seems to download fine but when I select to open iTunes after it is finished installing, it gives me this message (that I can't read!!!): http://img198.imageshack.us/img198/3920/zz25.jpg When I try to open iTunes

  • Unable to debug the Data Template Error in the Log file

    Hi, I am unable to debug the log file error message Please can anybody explain me in detail where the error lies and how to solve the error.The log file shows the following message. XDO Data Engine ver 1.0 Resp: 50554 Org ID : 204 Request ID: 2865643

  • How to use a label inclined with angle

    I am in need for using an inclined text in a drawing g2d or g . ie to use with drawString.. or any other way. Please explain to me or refer me to where I can find something on that

  • RAID level for Redo

    Hi, My storage admin created RAID10 and RAID5 for database, I would like to know which RAID Level is best for keeping the REDO logs. Can someone tell me what's best for REDO? Thanks

  • Investment Mgt

    Hi All, Could you pls provide me the related documentation for the entire process flow as well as the Configuration Document for the Investment Management for my mail ID : [email protected] Request you to sent me atleast the Process Flow/User Documen