Barcode label printing - 2 copies required

Hi,
The barcode label for TO is printing automatically but the user requires 2 copies instead of one. We have assigned the Spool code for 2copies in the print table in config  (OMLV). But still only one copy is getting printed.
Please advise.
Regards,
Pratap

Hi Pratap,
Check the default settings for "no of copies" during executing the print command. If it shows 1 then you need to make it as 2. To make it as 2,
during the print command,
Go to Properties-->Specifications----->In field name select "No of copies", change the default value to 2 and click on "Copy settings".
Edited by: Naidu Raghav on Aug 27, 2010 1:09 PM

Similar Messages

  • Barcode label printing in LV7.1

    Hi,
    I'm currently implementing a barcode label printing function to a final test program of our products. I want high control of image placement etc. on the labels. Therefore I've made a .vi interface where the barcodes are printed with true type fonts. The front panel is then printed on our label printer. However, the output is no good since the string indicators changes the appearance of the fonts compared to the output from other programs. The spacings are a bit larger and the font looks a bit bolder -- the result is that the scanners have problems reading the barcodes.
    I want to save my self some time by asking if anybody has any suggestions on how to print barcode labels?
    I'm currently considering using the report tool since this prints the font correctly (I'm making test versions as I'm writing). However, gaining full control of the final layout seems a bit more troublesome. Another method could be generating images from LV and then print and dispose after creation -- this solution is however clumsy since it e.g. requires a set of images corresponding to the character table.
    I'm using LV7.1 Dev suite and Code128B barcodes.
    - Martin

    COM, DCOM, ActiveX potAto, pOtato... I've been studying a bit this afternoon. COM came in '93 and was succeeded by DCOM. ActiveX is a kind COM (actually a modified Visual Basic VBX).... Today the names are used more or less interchangely...
    I've tried everything. I think the only solution is a new version of cocreate.dll.
    However, I've made it work in another way... I run a VB script by issuing e.g.:
    wscript \"pathtovbscript\vbscript.vbs" Text Serial0123
    with the command execution vi (wscipt should be in all newer version of windows). And vbscript.vbs looking like:
    set Args = Wscript.Arguments
    textField = Args(0)
    barcodeField = Args(1)
    ' Print using the template
    DoPrint("C:\path\template.lbl")
    Sub DoPrint(strFilePath)
    Set ObjDoc = CreateObject("BrssCom.Document")
    bRet = ObjDoc.Open(strFilePath)
    If (bRet <> False) Then
    ObjDoc.SetText 0, textField
    ObjDoc.SetBarcodeData 0, barcodeField
    ObjDoc.DoPrint 0, "0"
    End If
    Set ObjDoc = Nothing
    End Sub
    Not very elegant but it's quite fast and it's working
    - Martin

  • BarTender for Zebra Barcode Label printing using Smartform

    HI Experts,
    Does anyone know how to use BarTender 7.10 software to create barcode labels for Zebra printer?
    I have to include a jpg Logo into the Label using BarTender.
    But when I test using the Zebra printer - the logo/picture won't print out.
    Any idea?
    Thank You.
    Best Regards,
    CW

    Hi There,
    I had problems with using Bartender when I tried to print a logo onto my labels, but I contacted a [labelling company |www.iidsolutions.net] who specialise in barcode label printing and the bartender software,  they sorted out my problem but then after a chat with them I decided it would be easier to get them to print the labels for me as I had loads of changes and they were quite cheap.  See if they can help you. :~)
    Good luck.
    Dave.

  • Barcode Label Printing

    Dear Experts,
    is it possible to print barcodes on labels using the SAPSprint service ?
    The labels are defined as Sapscripts and Smartforms.
    Thanks a lot for any help.
    Regards,
    Marc
    Edited by: Marc Reinhardt on Jan 6, 2009 2:53 PM
    One more remark: Is it necessary to use an external BARCODE.DLL for barcode generation or can it be done by the label printer as well ?

    Hello Pranay,
    I did some research on that SAP note "25344 - Interface SAPSprint (SAPFprint) Barcode DLL (details)" states the following:
    u201EAn external barcode DLL is to be added to the SAPSprint or SAPFprint.u201C
    u201EThe SAPSprint or SAPFprint delegates the task of printing barcodes to an external DLL. SAP does not provide a barcode DLL. The DLL must meet certain requirements so that it can be used.u201C
         u201Eu2026u201C
         u201EThe following list is of suppliers known to us that manufacturer compatible barcode DLL:
         1) e-bizco.com GmbH, Up'n Hoff 1, D-22927 Großhansdorf, Germany
         2) TEC-IT Datenverarbeitung GmbH, Wagnerstr. 6, A-4400 Steyr, Austria
         3) MW6 Technologies, Inc.u201C
    This means to me that if we print barcodes with SAPSprint we must have this barcode.dll even if the printer would be able to interpret it.
    Cheers,
    Marc

  • SAP Configuration for Barcode label printing

    Hi Guys,
    We have storage bin label with information like ware house number and storage bin in free text area
    and need to interpret the barcode based on Application identifiers and print the same on label layout.
    Plz help ..Do we need to configure any output determination for this or how do we do this...since I dont have any clue on this requirement.
    your inputs are helpful.
    Naveen

    Hi Pratap,
    Check the default settings for "no of copies" during executing the print command. If it shows 1 then you need to make it as 2. To make it as 2,
    during the print command,
    Go to Properties-->Specifications----->In field name select "No of copies", change the default value to 2 and click on "Copy settings".
    Edited by: Naidu Raghav on Aug 27, 2010 1:09 PM

  • Have problem in label printing program while printing continuously

    Dear Gurus,
       i am working on a label Printing program. my requirement is that to print label as below in one page continuously :
         Label 1      Label 2
         Label 3      Label 4
         Label 5      label 6
      but i am unable to do , please tell me how to do this . i v already did like this:
         Label 1      Label 1
         Label 2      Label 2
         Label 3     label 3
    please reply.

    Imagine you have a list (itab1) with one field only (matnr). To achieve what you need, you must create an itab2, with 2 fields (matnr1 and matnr2).
    In your print program do something like:
    DATA: l_mod TYPE i,
          l_line TYPE i.
    CLEAR: l_mod, l_line.
    LOOP AT itab1 INTO wa1.
      ADD 1 TO l_line.
      l_mod = l_line MOD 2.
      IF l_mod NE 0. "position1
        wa2-matnr1 = wa1-matnr.
      ELSE. "position2
        wa2-matnr2 = wa1-matnr.
        APPEND wa2 TO itab2.
        CLEAR wa2.
      ENDIF.
    ENDLOOP.
    Verify is this code should predict some exceptions (last line or something).
    Edit: last line:
    ENDLOOP.
    IF l_mod NE 0. "position1 was not appended
      APPEND wa2 TO itab2.
    ENDIF.
    Regards.
    Valter Oliveira.
    Edited by: Valter Oliveira on Sep 11, 2008 1:08 PM

  • Intermec Strengthens Printer Portfolio with New Mid-Range Label Printer

    Last Thursday, we were excited to announce the PM23c, a new 2”mid-range industrial printing solution and an extension of Intermec’s PM43 and PM43c printers.
    Launching at the "Future Technology Experience" show in Las Vegas, the PM23c is an all-metal barcode label printer primed for mission critical markets and applications such as airline passenger services, manufacturing, and retail, including product labeling and food traceability, where maximizing productivity drives results.
    Read on for more.

    I like my Canon Pixma MX850. It is a network all-in-one, so it will work with any router, and it scans through the network as well as prints. The only slight hitch in setup is that it needs an initial USB connection to set up the network connection, but there has been no problems since then. I prefer a network printer to a USB printer, because it is made to work natively with a network connection, and you do not need to worry about compatibility with the print server, such as the one built into the Airport Express.
    The only problem with it is that the price keeps going down since I bought it! However, you can save yourself a lot of grief if you stop shopping after you buy something.

  • How to set the BARCODE width and length for label printing..

    Hi All,
    How to set the Code 39 barcode label format in the sizxe of 0.20" * 1.4". By default while printing barcode size exceeds my current requirement. Please let me know to customize the size of barcode labels.
    Thanks.

    I don't know what you mean by "Code 39" because my Output Designer software doesn't offer that barcode (or do you mean "code 3 of 9?). In any case, are you trying to control the size of the text (which is what I think of when you refer to "label")? If you are, then just change the font & size. If you are wanting to modify the physical characteristics of the barcode itself (height & length for a certain number of characters) then you are probably out of luck. Or at least in for some trial & error.
    There are a series of "barcode.xxx" files in the 'config' folder where Output Designer was installed to. These are text files that contain the physical characteristics of the various barcodes for various printers. The parameters that you would be interested in is the height and width of the bars (black & white). For example, a barcode might be defined as .400 high with narrow bars 3 "dots" wide, wide bars 9 "dots" wide and white space the same or different. Presumably changing these values would affect the generated barcode. For example, in this example the wide bars are 3 times the width of the narrow bars so I would assume that relationship would have to remain. To make the resulting barcode shorter you would then use 2 for the narrow and 6 for the wide.
    You would have to make the change in the file(s) that would be used for your printer(s).
    There are four width values for each of the parameters. Most of the barcodes only use 2 but some have 4. I'm assuming that when there are 4, like in "4 8 12 16", that the barcode definition has 4 different widths of bars and/or spaces.
    There is no guarantee that the scanning hardware & software will "see" and interpret the resulting barcode correctly.

  • Print Prog-Auto Print Barcode Label for Goods Receipt(MIGO) using Smartform

    Hi Guru's
    I have created a smartform that prints barcodes on a label.
    My tests print successfully to the Printronix thermal label printer.
    Is there perhaps a SAP Standard print program that i can use in my output type that will call my smartform upon goods receipt(MIGO)?
    please bear in mind that i am looking for a print program that calls a SMARTFORM. not a sapscript.
    /SMB40/M07DR does not exist on my system. and I am going to use output type WEE1 - for LABEL Printing
    Awaiting your feedback.
    Thanks in advance geniuses!

    Good luck dude,
    In that same program I noticed We01 that will print a smartform GR. I think if you use form entry_we01 in your output control you should do well.

  • Avery Barcode labels does not align properly when printed from Adobe Reader 11.0.0

    Hi,
    I have barcode labels in a PDF (Version 1.4, Acrobat 5.x). PDF producer is PPAlambic(Distiller). When I try to print the PDF on to Avery 5160 sheet containing 30 labels (10 rows; 3 labels in a row), always the barcodes on the first column goes beyond the left margins and hence does not print the full barcode. PDF size is 8.5" * 11" .I have tried following options in Print dialog box:
    1. Actual Size + Portrait + Letter size
    2. Shrink oversized pages + Portrait + Letter size
    3. Fit + Portrait + Letter size
    None of the above options resolved my issue.
    When I open the same PDF in Adobe Reader 11.0.07, it prints perfectly. Does someone help me understand if this is a known defect in Adobe 11.0.0 and is there any workaround in 11.0.0 itself to adjust the alignment?
    Note: PDF is not editable as it comes from a third party vendor. Please help.

    Hi,
    I have barcode labels in a PDF (Version 1.4, Acrobat 5.x). PDF producer is PPAlambic(Distiller). When I try to print the PDF on to Avery 5160 sheet containing 30 labels (10 rows; 3 labels in a row), always the barcodes on the first column goes beyond the left margins and hence does not print the full barcode. PDF size is 8.5" * 11" .I have tried following options in Print dialog box:
    1. Actual Size + Portrait + Letter size
    2. Shrink oversized pages + Portrait + Letter size
    3. Fit + Portrait + Letter size
    None of the above options resolved my issue.
    When I open the same PDF in Adobe Reader 11.0.07, it prints perfectly. Does someone help me understand if this is a known defect in Adobe 11.0.0 and is there any workaround in 11.0.0 itself to adjust the alignment?
    Note: PDF is not editable as it comes from a third party vendor. Please help.

  • How can I print multiple copies of a label based on a field?

    Post Author: lgayosso
    CA Forum: General
    Hello all,
    I have a report that prints labels where each label is a contained in detail line. I have a field on such label (Number Of Copies), on the same detail line, that specifies the number of copies to generate of such label, how can I generate such multiple copies of the label?
    I have tried adding multiple detail lines (all identical so that they reproduce the label) but I do not know in advance how many copies will be needed; that is, some detail lines include a Number Of Copies = 3, therefore I would need details A, B, and C sections to print the three copies but other labels might have a value of Number Of Copies = 10 therefore I would need detail sections A, B, through J to generate the 10 labels.
    How can I solve this issue?
    Any help is appreciated,
    Lucio Gayosso
    [email protected]

    Post Author: lgayosso
    CA Forum: General
    Hello all,
    I have a report that prints labels where each label is a contained in detail line. I have a field on such label (Number Of Copies), on the same detail line, that specifies the number of copies to generate of such label, how can I generate such multiple copies of the label?
    I have tried adding multiple detail lines (all identical so that they reproduce the label) but I do not know in advance how many copies will be needed; that is, some detail lines include a Number Of Copies = 3, therefore I would need details A, B, and C sections to print the three copies but other labels might have a value of Number Of Copies = 10 therefore I would need detail sections A, B, through J to generate the 10 labels.
    How can I solve this issue?
    Any help is appreciated,
    Lucio Gayosso
    [email protected]

  • Print barcode label from sato printer

    hi everybody,
    i am trying to print barcode label from sato printer (CL408e) in code 128 or code 39 format. the length of my data is 32 characters and my data contains alphanumeric. but i have no printout or the printout is not proper. i think my command structure is not correct.
    can you help me to solve this problem.
    thanks everybody.

    Hi Mohit
    Look for the similar kind of thread
    Printing barcode labels with SAP ECC 5.0
    Regards
    Sachin

  • Unable to print number of copies on label printer

    Hi Everyone,
    I am able to print smartform any number of copies on standard printer.
    But when I change from standard printer name to Label printer name and execute the smartform with number of copies ( greater than 1 ).
    For label printer I am able to print only one copy, irrespective of number of copies specified. However I can able to number of copies specified for standard printer.
    Can anyone help me what could be the reason? Is that any settings should be done for label printer ?
    Thanks.
    From
    Reddy

    Paddy,
    Welcome to Apple Discussions.
    The problem might be a corrupt preference. Does this problem occur with all applications? If not, which application?
    Try Repair Disk Permissions using Disk Utility.

  • Printing Multiple Copies of Same Image on Multiple Pages

    I have Photoshop Elements 11 on a Windows 8 platform.  I can NOT get it to print multiple copies of the same file on multiple pages.  I need one file printed on one page multiple times.  I have tried the CTRL-ALT-SHIFT and nothing changes.  It still just prints one and is done.
    I use this for label printing, so I need it to print more than one copy at a time.  It also is not saving the settings, so everytime I hit print, I have to readjust the print requirements.  This just is not going to work when you need to print a few hundred copies at a time.

    You can create your own picture package, if none of the options in the PSE print window>Type of Print work for you. Just make a blank file, copy/paste your image and alt drag it to make multiple copies. You can use the move tool to position things as you want them.
    Generally speaking, though, for something like label printing, it's simplest to use PSE to create the image, then use your word processing/desktop publishing program to print the actual labels.

  • Standard Smartform for label printing for packages - pls advice

    Hi All,
    I need help in changing a print program ie Standard Smartform for label printing for packages ?
    Standard Driver program: SDPACKDR
    Please provide me with the detailed steps for editing the Std Smartform according to any requirement.
    Points will be rewarded promptly.
    Thanks.

    hi,
    1. The smartform name is SD_PACK_ETIK.
    2.Just copy the standard program into Zprogram and make chanes and assign in NACE with the form.
    3.But,in smartform lable printing is not possible.
    4.you can print barcodes.
    Regards,
    Kumar(Reward if helpful).

Maybe you are looking for