Urgent!! Printing Barcode using smartforms

req: need to print barcode using smartforms.
【Settings】
The following settings are made already
1.  Style ( paragraph, character type(Syatem Barcode ) )is created and activated (T-code:Smartforms)
2.  In the smartform I used the above style to print barcode  .
※TEXTTYPE = TEXT ELEMENT.
【Execution】
1.  I run the smartform in test mode with setting any print parameters
2.  Trigger print preview
【Problem】
1. I am getting only BAR's no barcodes.
The bracodes are not displayed properly.
If I test the same system barcode in SE73 it displayed properly.
Is there anyother settings are necessory?
Plz help me in solving the peoblem

Hi
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
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.
Reward points for useful Answers
Regards
Anji

Similar Messages

  • *BARCODE USING SMARTFORMS*

    hi experts,
    i need examples on barcodes using smartforms......
    in smartform dev(wht are the fields to take)
    rewards points will be there....
    thanks and regards
    fareeda

    Hi Fareeda,
    To print a barcode in a smart form,you need to create a character format for the barcode.
    TO create a character format,you need to do it in SMARTSTYLES tcode.
    Follow these steps:
    Go to the SMARTSTYLES tcode.
    Give a name to your style and create it.
    Give a description and save it.
    On the left hand side of the window,you will find character formats.
    Click on it and press F5.
    Give a name to the character format and select OK.
    Give a description for the character format and save it.
    There you will find a tab by name General Settings.In that Tab you will find BarCode.
    Select any one of the style for the barcode as per your requirement.This is the name of the barcode.
    Now save the character format and activate the samrtstyle.
    To use the bar code in the form,follow these steps:
    now in the window,you will find a tab by name OUTPUT OPTIONS.Ther give the name of the style same as the name that you have created in the SMARTSTYLES.
    In the text element window,Select the character format that you have created in the smartstyles.
    Now in  the text elements of the window, type the field name for which you want to print the bar code in the following way to print the bar code:
    &<work area/table name >-<field name>&
    Regards,
    Kaushik

  • What r the steps to print barcode in smartforms

    hi experts,
    can anybody tell me what r the steps to print barcode in smartforms.
    with examples is appreciated.
    points will be rewarded if helpful.

    /people/javier.perez-ullivarri/blog/2007/12/03/create-barcode-in-abap-conversion-to-pdf
    Creating Bar code:
    -->From trans 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
    --> 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.
    SAP Barcodes
    -->Barcode solution consists of the following:
    barcode printer
    barcode reader
    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.
    for your reference check the below links:
    http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a94c851ea11d189570000e829fbbd/content.htm
    for smart, please check the below link:
    http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm
    See the below program forbarcode in sapscript for your reference:
    DATA: BAR_CODE1(16) VALUE `ABC01230123A01'
    NEW-PAGE PRINT ON IMMEDIATELY `X'.
    FORMAT COLOR OFF INTENSIFIED OFF.
    If the barcode is the first element on the page, the following Write
    statement is needed (otherwise you get a date in the first print
    control.
    WRITE:/
    Turn on the barcode font, print the data, and switch back to the
    printer's default font. Be sure to use NO-GAP to avoid unwanted
    characters or CR/LF.
    PRINT-CONTROL FUNCTION `BCPFX'
    WRITE: BAR_CODE1 NO-GAP
    PRINT-CONTROL FUNCTION `BCSFX'
    Add a Write statement to prevent insertion of CR/LF into the barcode.
    WRITE:/
    Sample SAPSCRIPT
    Variable BAR_CODE1 contains the barcode data, including asterisks.
    The & is needed to avoid unwanted spaces or CR/LF characters
    /E LINE
    /: PRINT-CONTROL BCPFX
    = &BAR_CODE1&
    /: PRINT-CONTROL BCSFX

  • How to print Barcode using SAPscript?

    hello, everyone.
    I have some questions.
    now, I have to print some doc. that described by barcode in sapscript form.
    so, try to test in t-code so10
    input value SAPSCRIP-BARCODETEST, ST, EN.
    and click 'print-preview'
    result is correctly output in pint privew.
    but when I print dis priviewed doc. disappeared barcode image.
    is this O.K??
    I have to do something?? (Add DLL file, barcode font or etc....)
    I don't know how to print barcode using SAPScript. anybody solve this problem.please.
    p.s this system is SAP ECC 6.0 only ABAP.
    printer setting is front-end print.

    hello, everyone.
    I have some questions.
    now, I have to print some doc. that described by barcode in sapscript form.
    so, try to test in t-code so10
    input value SAPSCRIP-BARCODETEST, ST, EN.
    and click 'print-preview'
    result is correctly output in pint privew.
    but when I print dis priviewed doc. disappeared barcode image.
    is this O.K??
    I have to do something?? (Add DLL file, barcode font or etc....)
    I don't know how to print barcode using SAPScript. anybody solve this problem.please.
    p.s this system is SAP ECC 6.0 only ABAP.
    printer setting is front-end print.

  • Printing Barcodes using ABAP

    Hi Abapers,
       I Want to Print Barcode using ABAP Write statement. Is it Possible?
       Please suggest me.
    Thanks,
    Kishore

    Printing Barcodes with ABAP or SAPSCRIPT
    hope u will get some idea.
    We are now ready to print barcodes using an ABAP report program or a SAPSCRIPT form. In these examples we are using Code 39 barcodes which require very little formatting (all we have to do is add asterisks before and after the data).
    Sample ABAP Program:
    DATA: BAR_CODE1(16) VALUE `ABC01230123A01'
    NEW-PAGE PRINT ON IMMEDIATELY `X'.
    FORMAT COLOR OFF INTENSIFIED OFF.
    If the barcode is the first element on the page, the following Write
    statement is needed (otherwise you get a date in the first print
    control.
    WRITE:/
    Turn on the barcode font, print the data, and switch back to the
    printer's default font. Be sure to use NO-GAP to avoid unwanted
    characters or CR/LF.
    PRINT-CONTROL FUNCTION `BCPFX'
    WRITE: BAR_CODE1 NO-GAP
    PRINT-CONTROL FUNCTION `BCSFX'
    Add a Write statement to prevent insertion of CR/LF into the barcode.
    WRITE:/

  • Printing barcodes in smartforms

    How to print barcodes in smartfroms

    hey Ganesh,
    welcome to <b>SDN</b>,
    check the below extra info addition to above one
    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://help.sap.com/saphelp_nw04/helpdata/en/d9/4a94c851ea11d189570000e829fbbd/content.htm
    Details 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.
    The next part of the equation can be a bit tricky as you will need to get a printer to print that barcode font. Regular laser printers does not normally print barcode fonts, only specialized industrial printers that is specifically designed to support that protocol and that uses specialized label media and heat transfer (resin) ribbon to create the sharp image required for barcodes.
    Not to fear though, there are two ways to get around this:
    - You can have your IT department do some research -
    most laser printers can accept a font cartridge/dimm chip (similar to computer memory), called a BarDIMM that will allow a laser printer to support the printing of barcodes.
    - Secondly, you can buy software that you can upload in your SAP print Server that will convert the barcode symbology as an image that will print on a regular laser printer. I found that this option results in less sharper barcodes. This option is really if you need to convert a large quantity of printers (>10) to support barcodes.
    - Thirdly, you can buy a third party software like Barcode.dll and install on your frontend PC connected to the laser printer.
    Now you have a barcode printed - what next?
    Well there are two options, depending on your business requirements:
    - You can use an existing SAP transaction on a regular workstation and get a barcode wedge reader to hook up between the keyboard and the PC. These wedge readers comes in a wand or scanner format. There are even wireless wedge scanners available that allows you to roam a few yards from the workstation to scan a label. This approach is mostly used where you want to prevent human errors in typing in long material, batch or serial numbers in receiving or issuing of material. The problem is that it's just replacing the keyboard input and you are basically locked down in one location and have to bring all the material to that location to process.
    - Another solution is to use SAPConsole transactions
    or write your own ABAP Dialog programs that will fit onto a barcode enabled wireless handheld terminal and that will follow the business logic as executed on the shop floor.
    These programs are highly complex exercises in industrial engineering and ergonomics because of the limited screen sizes and limited ability to accept keyboard input. The user is instructed step-by-step and only scan and push F-keys to interact with the SAP system. Scan, scan, beep, beep, enter - highly automated.
    Barcode Standard
    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
    if u find it useful plz mark the points on the left side
    Regards,
    Naveen

  • Printing Barcode using DI API

    Hello Gurus,
    I want to create an Addon which can print a barcode using UI and DI API.  Can this be possible?  I will not use the Print Layout design.  Please help..

    Hi Gilbert,
    You can send the XML through a middleware application like Loftware to most printer types.  More info avail. at www.loftware.com or e-mail me [email protected]
    Thanks,
    Joel

  • Print PO using Smartforms?

    Hi Gurus,
    I'm new to smart forms.
    Can smart forms used to print PO(using Transaction ME23N)?
    As I know, the PO is print using SAP Script, can it be done using smartforms?
    thanks in advance.
    Hikaruno

    Hi
    YES, PO can be printed using Smartform also.
    see the related forms and program
    PUCHASE ORDER
    Output type         : NEU
    ScriptForm Name     : MEDRUCK
    Driver Program Name : SAPMF06P
    smartform name      : /SMB40/MMPO_L
    SF creation
    How to create a New smartfrom, it is having step by step procedure
    http://sap.niraj.tripod.com/id67.html
    Here is the procedure
    1. Create a new smartforms
    Transaction code SMARTFORMS
    Create new smartforms call ZSMART
    2. Define looping process for internal table
    Pages and windows
    First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
    Here, you can specify your title and page numbering
    &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
    Main windows -> TABLE -> DATA
    In the Loop section, tick Internal table and fill in
    ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
    3. Define table in smartforms
    Global settings :
    Form interface
    Variable name Type assignment Reference type
    ITAB1 TYPE Table Structure
    Global definitions
    Variable name Type assignment Reference type
    ITAB2 TYPE Table Structure
    4. To display the data in the form
    Make used of the Table Painter and declare the Line Type in Tabstrips Table
    e.g. HD_GEN for printing header details,
    IT_GEN for printing data details.
    You have to specify the Line Type in your Text elements in the Tabstrips Output options.
    Tick the New Line and specify the Line Type for outputting the data.
    Declare your output fields in Text elements
    Tabstrips - Output Options
    For different fonts use this Style : IDWTCERTSTYLE
    For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
    5. Calling SMARTFORMS from your ABAP program
    REPORT ZSMARTFORM.
    Calling SMARTFORMS from your ABAP program.
    Collecting all the table data in your program, and pass once to SMARTFORMS
    SMARTFORMS
    Declare your table type in :-
    Global Settings -> Form Interface
    Global Definintions -> Global Data
    Main Window -> Table -> DATA
    Written by : SAP Hints and Tips on Configuration and ABAP/4 Programming
    http://sapr3.tripod.com
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
    INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
    MOVE-CORRESPONDING MKPF TO INT_MKPF.
    APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZSMARTFORM'
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    FM_NAME = FM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    if sy-subrc <> 0.
    WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS =
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    GS_MKPF = INT_MKPF
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    check this:
    http://help.sap.com/saphelp_nw04s/helpdata/en/a5/de6838abce021ae10000009b38f842/content.htm
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/SMARTFORMS_tutorial.html
    check this linkls------>
    https://www.sdn.sap.com/irj/sdn/collaboration
    http://help.sap.com/saphelp_erp2004/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Printing barcode using oracle graphics

    Hello Folks,
    I am trying to create bar codes using reports & graphics. The
    report documentation (chapter 06) does have guidance but which
    is not clear on the graphics side.
    Is some one can elaborate little more on this?
    Regards.
    null

    Spencer is correct...
    but, watch out for the DEVICE you are reading the
    bar code with...the wand, bar gun...etc.
    what we had to do ( my team )
    was to put and "*" before the bar code
    and a "*" after the bar code for our gun to read
    the code...then is worked...
    patrick
    from the 3of8.ttf
    go to the control panel
    find FONTS and click on it
    once the program displays all your FONTS
    click on the menu FILE and then click on
    INSTALL. this will ask you where the 3of9.tff is located
    ..find the location,
    then install.
    in your oracle report,
    click on the FONT to install 3of9...blah..blah
    good luck
    Spencer Tabbert (guest) wrote:
    : Its really quite simple to print barcodes. Essentially a
    : barcode is no more then a different font which needs to be
    : installed on your pc. Dev 6.0 does ship a sample barcode font
    : which you can install if you would like. Do a search for the
    : font named 3of9.ttf then copy this file into your fonts folder
    : which is located in your control panel. When wanting to print
    : the barcode out just change the font type for a particular item
    : on your report to the barcode font.
    : Spencer Tabbert
    : mjs (guest) wrote:
    : : Hello Folks,
    : : I am trying to create bar codes using reports & graphics.
    The
    : : report documentation (chapter 06) does have guidance but
    which
    : : is not clear on the graphics side.
    : : Is some one can elaborate little more on this?
    : : Regards.
    null

  • F110 - To print checks using smartforms in 4.6c version

    Hi All,
    Please help me on below queries.
    1.Client requirement is to upgrade the SCRIPT to SMARTFORMS in 4.6C.
    2.They were config script name in the company code level for PAYMENT method in FBZP, based on Checks were print  using standard program RFFOUS_C  in Transaction code F110, If we develop the SMARTFORM in 4.6C, we can not keep the Z<smartform> in config FBZP.
    Is there is any standard driver program for smart forms in 4.6c or ECC 6.0?,if it is there please give me the standard program.
    There is a PDF option in ECC6.0 using T.code: FBZP.
    Please tell me, That PDF option is supports the smart forms or others?
    Thanks & regards,
    Bala.

    Hie Bala
    I also have the same requirement where we have to do away with all SAP scripts and make use of Smartforms however you cannot maintain a smartform in TCODE FBZP. I am in the process of customizing program RFFOUS_C which i copied and making my modifications to.
    I have done away with the dynamic call for ZFORN which is called in program
    RFFORI01
    *Replaced the following code with call to FM for Smartform
            CALL FUNCTION 'OPEN_FORM'
                 EXPORTING
                      archive_index  = toa_dara
                      archive_params = arc_params
                      form           = t042e-zforn
                      device         = 'PRINTER'
                      language       = t001-spras
                      options        = itcpo
                      dialog         = flg_dialog
                 IMPORTING
                      RESULT         = itcpp
                 EXCEPTIONS
                      form           = 1.
    in line 355. 
    i have not yet completed my coding but i hope this information will guide you.
    regards
    Isaac Prince

  • Printing Barcode in Smartform

    Hi All,
    When i am previewing the smartform, i was able to see the barcode.
    When i am printing the Smartform i am seeing the Order number instead of Barcode.
    This is happening from my client side also. (You might think that, my printer is not supported for the barcode. But the client printer is barcode enabled printer)
    When the client is printing the SAP Script for the same which i have converted to Smartform is printing the Barcode correctly.
    Do i need to do any settings? Please let me know.
    Thanks,
    Lin

    Hi,
    All you need to check is
    1. Whether the printer supports Barcode. If it does not support barcode, then you will need to buy a DIMM card or barcode.dll file. You can get a demo file from net.
    2. You need to install DIMM Card to your printer. or You need to install Barcode.dll file in SAPLpd directory in the front end PC.
    or
    3. You can buy software that you can upload in your SAP print Server that will convert the barcode symbology as an image that will print on a regular laser printer. But option results in less sharper barcodes. This option is really if you need to convert a large quantity of printers (>10) to support barcodes.
    For complete information always you can go to SAP Help.
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a94c851ea11d189570000e829fbbd/content.htm
    Feel free to revert back.
    --Ragu

  • Print barcode in matrix printer (IBM6500) by smartforms

    People,
                  somebody already try to print barcode using smartforms in matrix printer ??
    Regards  Suzuki
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Jan 13, 2010 1:23 PM

    Hi,
    Does the alignment look correct in te print preview? There are some problems with dot matrix printers due to limitations of the ESC/P printer lamguage.(see SAP note #19807)
    Try printing via windows and a windows device type like SAPWIN or SWINCF. The result should be better.
    Regards,
    Aidan

  • Check printing using smartform

    Hi All ,
    I have urgent requirement that to convert standard check
    printing program to our custmized check printing program using smartform .
    Please suggest the way , how we can do that?
    Regards
    Mohit Bansal

    Hi,
    For Creating custom check printing you need to do following steps.
    1. Create Custom page format using SPAD.
    2. Created smartform layout using custom page format.

  • How to print BARCODE in DATAMAX Printer using SAP Script?

    Hi,
    Can anybody guide me how to print BARCODE using DATAMAX Printer?
    I need to develop a SAP Script, through which i need to print the BARCODE.
    Pls. let me know the parameters for Script and how to print using print program.....
    Regards,
    Hemant

    make one form in sapscript with one main window: like this
    /E           ETIKETT
    /*           Format = '57x19', Printer = 'Bradyprinter Model 1344'
    /           ~f350
    /           ~n
    /           ~M0500
    /           ~O0220
    /           ~SG
    /           ~s
    /           ~c0000
    /           ~e
    /           ^D
    /           ~L
    /           D11
    /           H20
    /           PC
    /           pC
    /           SC
    /           A2
    /           1911A1200400005&knmt-kdmat&
    /           1911A0800300005&knmt-postx&
    /           1911A0800100005VS-Nr   :         &KNMT-MATNR&
    /           1911A0800000005Datum   :         &date&
    /           Q0001
    /           E
    in this script   &mseg-matnr&    and    &mseg-charg&    are 2D Barcodes
    /E           ETIKETT
    /*           Format = '57x19', Printer = 'Bradyprinter Model 1344'
    /           ~f350
    /           ~n
    /           ~M0500
    /           ~O0220
    /           ~SG
    /           ~s
    /           ~c0000
    /           ~e
    /           ^D
    /           ~L
    /           D11
    /           H20
    /           PC
    /           pC
    /           SC
    /           A2
    /           1Wc99000001400082000012012&mseg-matnr&
    /           ySPM
    /           1911A1000380055&mseg-matnr&
    /           1Wc99000001501702000012012&mseg-charg&
    /           1911A0800260055&mkpf-budat&
    /           1911A0800140055&mseg-mblnr&
    /           1911A0600020008&makt-maktx&
    /           Q0001
    /           E
    then you need your own printprogram and everything is fine. with open_form ;  start_form ; write_form;  end_form
    you can communicate direct with the Datamax Programming Language  from SAPScript to the Barcode printer.
    i also have the datamax programmers manual as pdf if you want i could send it to you. let me know by PM.
    also have look into HW 490295  the bartender Solution works fine for me to create the SO10 text's
    greetz
    tony
    Edited by: Tony Wienhold on Jul 17, 2009 4:37 PM

  • Problem with printing barcode..

    I am given only the barcode dimension and content to print it using smartforms..how do i go about it..? Do i have to start from SPAD transaction or se73.. kindly let me know links which may give step by step guideline to my problem..and in SE73 i dont know which barcode symbology i need to assign..
    Also, why do we have to go for TCode SPAD?

    Hi
    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
    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.
    Reward points for useful Answers
    Regards
    Anji

Maybe you are looking for

  • Create Smart Object /Frame Layer from open file in PSE8?

    I'm loving the trial version of PSE 8.  Several features that I don't want to live without! One thing that I find more difficult is creating a Smart Object or a Frame Layer (did those get replaced?) from an open file.  Because I digital scrapbook in

  • Nokia 5800 will not turn on

    Hi Can anyone help me? I have had my Nokia 5800 for about 6 months and the battery life has always been fairly poor. Suddenly, though, over the last couple of days my phone would run out of charge within about 4 hours, without even being used. Today

  • How to get credit card number.

    Hi everybody, I'm trying to get a customer credit card number for use it on a form that is generated from a reversed document created when a credit card payment fails or if the card is declined. I found the credit card information on table VCNUM but

  • Why iDVD6 cannot find files?

    After I make a slide show DVD from pictures, burn it and put it away, if later on I try to open it from the computer a window pops up saying "The following files could not be found". The names of the files are something like this:/users/my name/iPhot

  • Problem with i5 Macbook Pro making full HD in iMovie

    My late 2011 Macbook pro (i5 2.4 GHz,4 GB Ram,intel HD3000,5400 rpm 500 gb hard disk)tells me "⚠choosing full size on this computer may result in degraded video playback" in  'video' pane of iMovie preferences if i want the option "import hd videos a