Printing address bar codes in Appleworks

I use the database function in Appleworks to make a custom invoice system. Each 8.5" by 11" database "card" is an invoice. Prints out very nice, and I spaced things so it fits perfectly in a #9 Window envelope.
Problem is I would like to make more professional invoices, with a return slip. I really would like to be able to print those mailing barcodes you see on invoices from the big companies. I know Microsoft word's label printer supports this.
I have a feeling this could be possible. What I need to know is what font is the bar code (I've seen barcode fonts for Mac), and what do you type to be compatible with the USPS?
-John

Hi essenz,
"What I need to know is what font is the bar code (I've seen barcode fonts for Mac), and what do you type to be compatible with the USPS?"
'Ay, there's the rub,' to quote the Prince of Denmark.
Generating barcodes isn't a simple matter of substituting a barcode font for one showing arabic digits. You'll find some the details in the USPS POSTNET™ Barcode Certification, and more detailed specifications for one type of barcode in the USPS Confirmation Services Technical Guide.
A google search on 'usps barcode specifications' will bring up a number of suppliers ready to provide the software and equipment,
Regards,
Barry

Similar Messages

  • ) how can we print the bar code in SAP_SCRIPTS?

    ) how can we print the bar code in SAP_SCRIPTS?

    hi Pavan,
    barcodes wil be generated in the printer itself, if you give <BC>&HD_GEN-MATERIAL_NUMBER&<> then you have a value for "Barcode" .
    Adding Your Own Bar Code:-
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a94fc51ea11d189570000e829fbbd/content.htm
    barcodes in SAP
    http://help.sap.com/saphelp_nw04/helpdata/en/68/4a0d5b74110d44b1b88d9b6aa1315b/content.htm
    Print Unique Indicator as a Barcode
    The printing of unique indicators of elements (reference numbers of records, case indicators, or document numbers) as barcodes is controlled by SAPscript forms.
    SAP delivers a common SAPscript form based on the SAP barcode type AUFNR for records, cases, documents and incoming post items.
    To create another SAP barcode type, you can copy the SAPscript form RMPS_BARCODE and then adjust it to your own requirements. Then you have to define the new form using the following attribute names in the table SCMGPARAM:
    From within a SAPscript form, a subroutine GET_BARCODE in the ABAP program QCJPERFO is called. Then the simple barcode contained there (‘First page’, ‘Next page’, ‘Last page’) is printed as local variable symbol.
    Definition in the SAPscript form:
    /: PERFORM GET_BARCODE IN PROGRAM QCJPERFO
    /: USING &PAGE&
    /: USING &NEXTPAGE&
    /: CHANGING &BARCODE&
    /: ENDPERFORM
    / &BARCODE&
    Coding of the calling ABAP program:
    REPORT QCJPERFO.
    FORM GET_BARCODE TABLES IN_PAR STUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA: PAGNUM LIKE SY-TABIX, "page number
    NEXTPAGE LIKE SY-TABIX. "number of next page
    READ TABLE IN_PAR WITH KEY ‘PAGE’.
    CHECK SY-SUBRC = 0.
    PAGNUM = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY ‘NEXTPAGE’.
    CHECK SY-SUBRC = 0.
    NEXTPAGE = IN_PAR-VALUE.
    READ TABLE OUT_PAR WITH KEY ‘BARCODE’.
    CHECK SY-SUBRC = 0.
    IF PAGNUM = 1.
    OUT_PAR-VALUE = ‘|’. "First page
    ELSE.
    OUT_PAR-VALUE = ‘||’. "Next page
    ENDIF.
    IF NEXTPAGE = 0.
    OUT_PAR-VALUE+2 = ‘L’. "Flag: last page
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    hope this helps you
    Regards,
    Jayant

  • Printing scannable Bar Codes on PDF file?

    Hi:
    I am working a PO report (standard) and designing using RTF template to print as PDF output.
    I need to print the item as bar code that needs to be scanned. I downloaded a free font 39 and registered in Admin tab of XML Publisher responsibility. I also installed the font in my local machine and added it in my template.
    When I run the report and view the output, the bar code appears on PDF. When I try to scan the bar code, its not scanning the bar code.
    What is the step that I am missing? Please help ASAP.

    As a first step make sure you're using the correct start/stop characters for your barcode.
    In this case for Code 39 you would need an asterisk * at the start and end of the barcode, make sure to apply the barcode to the asterisk as well.
    sampledatafield
    Edit: If you got the free font from a vendor check the terms of use on it. Some vendors will give you a font that will show you how it should look but it will not be scanable.
    Message was edited by:
    dclarke27

  • How can I print the bar code in the page?

    Hi,
    I can see the bar code in the print preview but that bar code was not printed in the paper. Can any one help me How can I print in the paper.

    HI.
    if you are not able to see the barcode on paper,you need to do some printer settings..
    refer the following link.
    Hope it helps you.
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/903c3cf0344e4de10000000a11402f/content.htm
    Thanks,
    rashmi

  • How to print bar codes in sap script and smartform

    bar code sheet to print for particular customer when the
    transfer order is created.

    Hi,
       You create a bar code or change a bar code in the font maintenance transaction (transaction SE73). To do this, proceed as follows:
    &#9675; Start transaction SE73, and choose System Bar Codes ® Change.
    &#9675; If you create a bar code, the system asks whether you want to use the new bar code technology or traditional system bar codes. Choose New.
    You can enter a name and a description for the bar code. Note that the name must begin with a Zto avoid conflict between your bar codes and the standard bar codes.
    2. If you have created a new bar code, you must now add this to a Smart Style as a character format. For information about this, see the section Maintenance of Styles with the Style Builder and its subsections in the Smart Forms documentation.
    If you have only changed the bar code, continue with the next step.
    3. You can now select text in Smart Forms and choose the corresponding style with the bar code as the character format for this text.
    4. You can then print the bar code.
    Refer
    https://forums.sdn.sap.com/click.jspa?searchID=10581664&messageID=3321556
    Check the pdf below..
    http://www.sap-press.com/downloads/h955_preview.pdf
    Regards
    Kiran

  • Can I print Bar Code Text autoamatically under the bar code  in smartform.

    Hi All,
    Currently I am printing the Bar Code for MARA-EANNR value .My requirement is to print the MARA-EANNR value under the bar code .Currently I am hardcoding and it is working fine.I want to know is there any possible way I can print the value of MARA-EANNR under the bar code with out hard coding.
    Thnaks,
    Suresh.

    Hi,
    B1 - BARCODE CHARACTER FORMAT
    A1- DEFAULT CHARACTER FORMAT.
    In smart form define a template with two rows,
    in first row u pass barcode value( mat no ) with barcode character fomat.
    <B1>&MATNO&</>
    in second row define  barcode value(mat no ) in ordinary charcter format.
    <A1>&MATNO&</>
    Rgds
    Siva
    Edited by: siva prasad on Sep 1, 2009 1:53 PM

  • Bar Codes printing in SAPscript form

    Hello everyone,
    Please help me with barcodes printing problem:
    We are using ECC 6.0, and printer HPLJ 2300 series PCL 6
    I have installed BARCODE.DLL, and it is located in my local PC, in folder SAPgui\SAPlpd, i.e. where SAPlpd.exe file is locating.
    I printed assets bar code labels using tc S_ALR_87010137, and using script form FIAA_0003, but in print preview there were just solid boxes and after print-out there were no boxes at all, just text! Then I created new script form and assigned new barcode type, but printed barcodes were still invisible on the paper list.
    Where is the problem?

    Just do the following check items-
    1) try to print any standard form ( PO, SO etc.) from SAP printer but not through local printer. ( Spool should not be generated; check it in sp02.)
    2) If it printed perfectly, then it is supposed to print the barcode too. You cannot print the barcodes using the local printers. Usually it required special printers
    ( zebra etc..).
    else if it is not printing properly tell the basis that they havenot configured the printer properly.
    we are doing presently printing of barcodes using both zebra & sap printers.
    Let me know, when you are through this basic check list.

  • Regarding Bar Code Printing in SMART FORMS

    Hi All,
    I need to print a Bar Code in the output for Material Field on Header Data.
    For this in smart styles:
    I have decalred a style Character Format: BM by choosing Bar Code Name: RUECKNR
    Then in Layout set code of Smartform i have decalred the same in following way:
    <b>Material No: &G_MAT_NO& <BM>&G_MAT_NO&</></b>
    But in output it is showing as below:
    <b>Material No: 60000001 <BM>60000001</></b>
    It is not showing any barcode for Material Number!
    Can anybody solve this issue!
    Thanks,
    Deep.

    Hi,
    Choose the style name in output options of the text.
    Click the field list on/off button.From the list of the fields displayed,drag G_MAT_NO[don't type manually] from there to text element. Then select Text editor and then in that go to -> change editor.
    Insert the character created in style ( Say BM) in that change editor. That will display the barcode for date.
    Material No: &G_MAT_NO& <BM>&G_MAT_NO&</>

  • Print Bar code for inspection report

    Dear all,
    I have a requirement for printing bar code in the inspection report. Normally, we use QGA3 print inspection report which based on the script form. Now as I would like to add bar code, as I know, I have to use smart form to realize. but it can just enter Form in the standard way. So could anyone give me some useful suggestion to realize this requirement?
    Thanks a lot.
    Best regards,
    Benny.

    Hi,
    Identify corresponding form.In the character format we have to define the bar code and assign that one infornt of which we need the bar code.
    eg:
    SE71 screen if you go the character
    there below you will get the bar code
    specify one character for that bar code and
    in place of which u want to print place it.
    for eg u have character specified as bb,
    and in place of Inspection lot (w_lot) you want to have bar code
    the just type.
    <bb>w_lot</>, this will print the bar code for instead of inspection lot
    Regards,
    Krishna Mohan
    Edited by: Krishna Mohan N on Jan 22, 2008 7:26 AM

  • Printing boarding passes, bar code coupons, and more

    Please, I could really use some help,I never had this problem with my other pc's and printers. When I print a bar code coupon from my email only the restraunts logo prints, when printing a boarding pass the basic info is blank, when trying to print a statement from a hotel I downloaded only the logo prints-not the information. Map quest prints, seems like only more secure info doesn't. This is the first time I tried printing using this hp printer and a hp notebook pc . 

    Sorry that you all are having a problem printing barcodes. You can try to download an alternative driver to see if that will help. 
    (Shane_R) has a great post on how to download different drivers. Try the Deskjet 990c. 
    http://h30434.www3.hp.com/t5/Printer-All-in-One-Software-Drivers-e-g-Windows-8/How-to-Assign-Alterna...
    Let me know if this helps. 
    **Click the KUDOS star on the left to say 'Thanks'**
    Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.

  • Printing bar code to LOCL printer

    I have created a smartform to print a bar code using bar code BC_CD39.  I call the smartform function in an ABAP program and then display it in PDF form using function:
    call function 'SSFCOMP_PDF_PREVIEW'
         EXPORTING
              i_otf                    = otfdata
         EXCEPTIONS
              convert_otf_to_pdf_error = 1
              cntl_error               = 2
              others                   = 3.
    The bar code does show on the PDF, but it is just showing as repeating bars of the same size. Like this:  
    And when I print to LOCL printer, it prints out the same.  Why is it not printing/displaying the true bar code?

    Hi
    Which printer are you using? To print the Barcodes you need a separate Barcode printer see the following
    To Create a Bar code prefix:
    1) Go to T-code - SPAD -> Full Administration -> Click on Device Type -> Double click the device for which you wish to create the print control -> Click on Print Control tab ->Click on change mode -> Click the plus sign to add a row or prefix say SBP99 (Prefix must start with SBP) -> save you changes , it will ask for request -> create request and save
    2) Now when you go to SE73 if you enter SBP00 for you device it will add the newly created Prefix
    Create a character format C1.Assign a barcode to the character format.Check the check box for the barcode.
    The place where you are using the field value use like this
    <C1> &itab-field& </C1>.
    You will get the field value in the form of barcode.
    Which barcode printer are you using ? Can you download this file and see.
    http://www.servopack.de/Files/HB/ZPLcommands.pdf.
    It will give an idea about barcode commands.
    Check this link:
    http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm
    Check this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a94c851ea11d189570000e829fbbd/content.htm
    Hope this link ll be useful..
    http://help.sap.com/saphelp_nw04/helpdata/en/66/1b45c136639542a83663072a74a21c/content.htm
    go through these links and cose u r previous threads,
    http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm
    smartform - barcode
    http://www.erpgenie.com/abap/smartforms.htm
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/print-barcode-with-smartform-634396
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/printing-barcode-733550
    Detailed information about SAP Barcodes
    A barcode solution consists of the following:
    - a barcode printer
    - a barcode reader
    - a mobile data collection application/program
    A barcode label is a special symbology to represent human readable information such as a material number or batch number
    in machine readable format.
    There are different symbologies for different applications and different industries. Luckily, you need not worry to much about that as the logistics supply chain has mostly standardized on 3 of 9 and 128 barcode symbologies - which all barcode readers support and which SAP support natively in it's printing protocols.
    You can print barcodes from SAP by modifying an existing output form.
    Behind every output form is a print program that collects all the data and then pass it to the form. The form contains the layout as well as the font, line and paragraph formats. These forms are designed using SAPScript (a very easy but frustratingly simplistic form format language) or SmartForms that is more of a graphical form design tool.
    Barcodes are nothing more than a font definition and is part of the style sheet associated with a particular SAPScript form. The most important aspect is to place a parameter in the line of the form that points to the data element that you want to represent as barcode on the form, i.e. material number. Next you need to set the font for that parameter value to one of the supported barcode symbologies.
    Regards
    Anji

  • Bar code not printed properly

    Hi,
    I am facing a strange problem. I have to print one bar code in a form window but what happens is that in a specific window the bar code is not printed.  If i try to print the same field as a bar code in another window the bar code is printed.
    I try the same paragraph formats before i wrote this message and the result is the same, in that window i can not print the bar code.
    There are some optiosn that made impossible the bar code print in a specific windows
    Thanks in advance.
    <removed_by_moderator>
                         Best Regards
                                  João Fernandes
    Edited by: Julius Bussche on Sep 10, 2008 11:18 AM

    Hi,
    Create the barcode and include the barcode in the paragraph format in smartstyle.Include this smartstyle in the smartforms
    after that create the text node for the barcode in your mainwindow and below this text node create one more text node and drag and drop the required fields.
    Regards,
    Sravanthi

  • Print Bar code in Smart form

    Hi,
      Can you pls tell me how to print bar code in smart form?

    Hi,
    You create a bar code or change a bar code in the font maintenance transaction (transaction SE73). To do this, proceed as follows:
    &#9675; Start transaction SE73, and choose System Bar Codes ® Change.
    &#9675; If you create a bar code, the system asks whether you want to use the new bar code technology or traditional system bar codes. Choose New.
    You can enter a name and a description for the bar code. Note that the name must begin with a Zto avoid conflict between your bar codes and the standard bar codes.
    2. If you have created a new bar code, you must now add this to a Smart Style as a character format. For information about this, see the section Maintenance of Styles with the Style Builder and its subsections in the Smart Forms documentation.
    If you have only changed the bar code, continue with the next step.
    3. You can now select text in Smart Forms and choose the corresponding style with the bar code as the character format for this text.
    4. You can then print the bar code.
    Refer
    https://forums.sdn.sap.com/click.jspa?searchID=10581664&messageID=3321556
    Check the pdf below..
    http://www.sap-press.com/downloads/h955_preview.pdf
    Regards
    Kiran
    Edited by: Kiran Sure(skk) on Apr 10, 2008 11:01 AM

  • Why does the bar code look "chubby" when I save to PDF?

    Hi, I'm designing a book cover for a client in Illustrator, and it has a bar code on the back of it. When I save the file as an .ai or a .png or .jpeg, it appears fine. But when I save the file as a .pdf (which my client will be viewing, and for print), the bar code looks like the lines have gotten bigger or run together! It's really weird...no matter which preset I use, it appears like this (I've attached a screenshot). I've also tried the "flatten transparency" and converting the numbers to outlines, but they still tend to distort when the pdf is viewed.
    Any suggestions on how to fix this, or why this might be happening? It scares the client when they see it....
    The lines in the picture are MUCH thicker than the actual bar code, and some appear to have blended together.

    Hi Mike,
    In the Preferences area of Adobe Reader, go to the Page Display tab, and
    make sure that "Enhance thin lines" is unchecked. That seemed to solve
    most of my problems with the type! Hope that works for you too!
    Laci Morgan

  • Generate bar codes in mail forms

    Hi,
    I know how to insert Bar codes in smartforms, but I need to print the bar codes in Mail Forms, is that possible?
    Thanks a lot,
    Nuno Moreira

    Hi Gregor,
    What I need to do is:
    I have several mail forms treated as a standard response in ICWC. We are using the e-mail view (in ICWC) mainly to print the forms, via smartforms or in “online” mode without smartforms.
    So, at the moment, I have two questions:
    1) If I use a smartform to print the mail form, even if I create the form in plain text and create the bar code into mail form, when I print the “number” it is not converted in a bar code;
    2) If I generate the bar code in a mail form and I try to print it in ICWC e-mail view the number is not printed as a bar code too;
    Thanks a lot for your help and interest,
    Best Regards,
    Nuno

Maybe you are looking for

  • What are the rules for connecting clusters?

    Hello,   I am using Labview 8.2 and I am havings difficulty connecting clusters. I have a sub-vi that analyzes data and creates a 24 element cluster that is a output(indicator) that I want to insert into a larger cluster for the main vi. The main vi

  • Can't open opml files anymore

    All of a sudden i couldn't open opml files in programs like MindNode Pro, Tree (outliner) and Neo (outliner). Though I still can import opml into Neo via the import option, i can't open a opml file directly in the Open dialog. Also in MindNode Pro an

  • New error messages related to OHW - filling up error logs.

    We've recently received a new delivery of help files (new helpset), but there have also been many other changes to our base software system in the interim.  This makes it hard to nail down the culprit. That said, we are now seeing two messages in the

  • Reports in Background JOb

    Hi All,     I have a report executes in background.    Report when generated in background does not display ICONS in the report instead they display some characters for those icons. eg:- RED icon, Yellow Icon, Green ICons. i have not used ALV report

  • OSB: JMS Transport URL for cluster

    Hi, I am trying to configure OSB JMS Transport business service. I have 3 JMS servers in my cluster and I am trying to understand how to configure my business service URI. Can I use all three uri's in my business service? If we configure multiple URI