Probelm in printing tabspace in barcode thro smartforms

Hi Friends,
I want to print the Barcode label thro smartforms. My code is as follows,
I want to use TABSPACE separation in between fields instead of SPACE how do i do this pls guide me for the same. I  am using SAP ECC 5.0 version. So i tried using SEPARATED BY cl_abap_char_utilities=>HORIZONTAL_TAB but i am getting ' # ' sign in it. so pls help how to do it?
DATA: GT_LINES  TYPE STANDARD TABLE OF TLINE,
GS_LINES  LIKE LINE OF GT_LINES,
NAME      LIKE THEAD-TDNAME.
GS_HD_GEN = IS_BIL_INVOICE-HD_GEN.
NAME = GS_HD_GEN-BIL_NUMBER.
CALL FUNCTION 'READ_TEXT'
  EXPORTING
    CLIENT   = SY-MANDT
    ID       = 'ZFOR'
    LANGUAGE = 'E'
    NAME     = NAME
    OBJECT   = 'VBBK'
  TABLES
    LINES    = GT_LINES.
IF SY-SUBRC = 0.
  LOOP AT GT_LINES INTO GS_LINES.
    IF SY-TABIX = 1.
      TDLINE = GS_LINES-TDLINE.
      G_STR4 = TDLINE."GS_LINES-TDLINE.
    ELSEIF SY-TABIX = 2.
      G_STR4 = TDLINE."GS_LINES-TDLINE.
    ELSEIF SY-TABIX = 3.
      G_STR4 = TDLINE."GS_LINES-TDLINE.
    ELSEIF SY-TABIX = 4.
      G_STR4 = TDLINE."GS_LINES-TDLINE.
    ENDIF.
    CLEAR GS_LINES.
  ENDLOOP.
ENDIF.
DATA  LV_DEPEXNUM LIKE J_1IRG23D-DEPEXNUM.
GS_HD_REF = IS_BIL_INVOICE-HD_REF.
SELECT SINGLE DEPEXNUM FROM
J_1IRG23D INTO LV_DEPEXNUM
WHERE VBELN EQ GS_HD_REF-DELIV_NUMB.
DATA: GV_DATE(10).
WRITE GS_HD_GEN-BIL_DATE TO GV_DATE mm/dd/yyyy.
DATA : LV_STR(15)." LIKE IS_BIL_INVOICE-HD_GEN-DPEND.
read condition header data
gs_hd_kond = is_bil_invoice-hd_kond.
*reading excise data
CLEAR: GS_HD_REF, GS_HD_GEN.
READ TABLE gs_hd_kond INTO gs_hd_kond_w WITH KEY kschl = 'JEXT'.
LV_STR = IS_BIL_INVOICE-HD_GEN-DPEND.
read ref data
GS_HD_REF = IS_BIL_INVOICE-HD_REF.
read gen data
GS_HD_GEN = IS_BIL_INVOICE-HD_GEN.
clear: g_str, g_str1, g_str2, g_str3.
concatenate
IS_BIL_INVOICE-HD_REF-PURCH_NO
LV_DEPEXNUM
*GS_HD_GEN-BIL_DATE
GV_DATE
G_STR4
LV_STR
into g_str SEPARATED BY SPACE.
clear: g_str1, g_str2, g_str3.
LOOP AT IS_BIL_INVOICE-IT_GEN INTO GS_IT_GEN.
  IF SY-TABIX < 10.
    CLEAR G_STR1.
    g_str1 = GS_IT_GEN-FKIMG.
    concatenate g_str
    GS_IT_GEN-CUST_MAT   " AR ++ 29.07
              GS_IT_GEN-SHORT_TEXT " AR -- 29.07
    g_str1
    into g_str separated by SPACE.
  ELSEIF SY-TABIX < 9.
    CLEAR G_STR1.
    g_str1 = GS_IT_GEN-FKIMG.
    concatenate g_str
    GS_IT_GEN-CUST_MAT    " AR ++ 29.07
              GS_IT_GEN-SHORT_TEXT  " AR -- 29.07
    g_str1
    into g_str separated by SPACE.
  ELSE.
    CLEAR G_STR1.
    g_str1 = GS_IT_GEN-FKIMG.
    concatenate g_str
    GS_IT_GEN-CUST_MAT    " AR ++ 29.07
              GS_IT_GEN-SHORT_TEXT  " AR -- 29.07
    g_str1
    into g_str separated by SPACE.
  ENDIF.
ENDLOOP.

Hi,
There are two types are barcode existing in sap like system barcode and printer barcode. Use Tcode SE73 to create any of those.
If you want to create your own customized barcode then you have to opt system barcode. Here while creating barcode it will ask whether to create new barocde or copy of existing barcode.
However by taking into consideration your requirement, you have to create system bar code.
Goto SE73->System barcode->change-> create new barcode->New barcode technology.
Here you have to mention barcode name and short text. then supported barcode symbology like C39,C128, code93 etc.
After selecting any of the symbology, you have to choose Bar Code Alignment: like normal. inverted, etc. Then specify other barcode parameters like height,width, barcode ratio etc.
Then try to print any text element with this customized barcode as per your requirement.
Like you can print text element with smartform style, here you can include your customized created barcode in character format. While creating charactor format, give name of your customized barcode in standard setting->name.
Then print text element by using smartform style.
Hope this works for you.
Thanks.......

Similar Messages

  • Printing QR-Code barcodes in SAP smartforms

    Hi,
    Is it possible to print QR-Code barcodes in SAP smartforms using system barcode font? Can anybody please let me know the font settings for QR-Code in SE73 font maintenance?
    A sample QR-Code lablel can be found [here|http://images.orkut.com/orkut/albums2/ATUAAADhaahG5MxsqQ66lcSO9oHRWD3X8zh7yv1kEakKwMtVHchChN1WfZlM__2D0_o8H7AS4_UaTTCymQQtvXHb9-q3AJtU9VCWnzkZ4gC1sVnCekVuQ90qmhzeMw.jpg].
    Regards,
    Milan

    Hi Milan,
    I'll blog in SDN about my research that I presented at TechEd during session CD119 (blog) but I'll begin sharing with you some ideas.
    Basically, without relay on any printer specific driver I would propose to follow the following steps:
    1.Generate the QR Code image file (.PNG) with one of the methods presented in the following pages
    2.Upload the image into the SAP system
    2.1 Convert the generated file (file.png) to TIFF using SAP IGS class CL_IGS_IMAGE_CONVERTER (see GRAPHICS_IGS_IMGCONV_DEMO)
    2.2.Upload. Use report RSTXLDMC to upload the image into SE78
    3.Include the image into the Form:
    3.1.SAPScript/:INCLUDE ZHEX-MARCO-name OBJECT TEXT ID ST
    If everything is clear, the missing point should now be the first one. To generate the PNG from ABAP I found some options if you like, the better I think is presented in my open source project called abap2qrcode published here http://code.google.com/p/abap2qrcode/.
    I know it's not trivial and I'm curious to know what do you think about it.
    Sergio

  • Urgent!! Printing Barcode using smartforms

    req: need to print barcode using smartforms.
    &#12304;Settings&#12305;
    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  .
    &#8251;TEXTTYPE = TEXT ELEMENT.
    &#12304;Execution&#12305;
    1.  I run the smartform in test mode with setting any print parameters
    2.  Trigger print preview
    &#12304;Problem&#12305;
    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

  • 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

  • Smartform to Print a 2D barcode.

    Hi,
    We are developing a smartform, though which we have to print a 2D barcode. The barcode format required in PDF417, and will be based on data fed into this barcode.
    Problem we are facing is: PDF417 Barcode format is not available in SAP 4.6C. We came across one OSS note which suggests upgrading Kernel Patch to 1615 (4.6D). Client is far behind the current patch level and this is not the workable solution
    Can anyone please suggest an alternate solution for the above problem.
    Thanks in Advance
    Nikhil

    Hi,
    we used SAP Add-on that generates the barcode DMC.
    http://www.suchymips.de/de/rbarc_datamatrix.htm
    I then created the corresponding print programs and Smart Forms.
    Kind regards
    Dietmar Blome
    www.xing.com/profile/Dietmar_Blome

  • How to print three different Barcodes in the same line

    I am trying to print Barcodes for three different fields in a single line, it is taking the combined one & printing only one barcode for  all those three fields.
       When I tested it by printing them in diff lines, it is working fine. But the requirement is to  print all fields in the same line

    Hi
    Look at this , may be useful
    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.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • *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

  • Random generated number along with barcode in smartforms

    Hi All,
    Is it possible to add some random generated number by system to add along with the end of the barcode in smartforms. (what could be the field) If so how it can be done. Tanks in advance
    Regards
    GK

    Hi Tankx man 4 the valuable reply,
         I am able to get that, but what my problem is,
    Eg: In my GR a item with 10 qty, so i made the qty as input and based upon that i am printing 10 labels. for ur ref the code is below"
    menge = TRUNC( is_mseg-menge ).
    DO menge TIMES.
    header-slno = header-slno + 1.
    APPEND header TO itab.
    the complete program is like as follows;
    menge = TRUNC( is_mseg-menge ).
    DO menge TIMES.
    header-slno = header-slno + 1.
    APPEND header TO itab.
    CALL FUNCTION 'QF05_RANDOM_INTEGER'
    EXPORTING
    RAN_INT_MAX   = '999999999'
    RAN_INT_MIN   = '100000000'
    IMPORTING
    RAN_INT       = RANINT
    EXCEPTIONS
    INVALID_INPUT = 1
    OTHERS        = 2.
    IF SY-SUBRC EQ 0.
    ENDIF.
    WRITE :/ RANINT.
    ENDDO.
    but in my barcode all the label has the same random number, can u say how to solve this.

  • Barcode in SmartForm - how to creat SmartStyle

    Hello,
    I have created a new barcode using SE73.  I then included it in a SmartStyle and used that SmartStyle in my SmartForm.  However the style doesn't seem to be working because it still displays as the delivery number and not a barcode (when printing and previewing it).  I then tried using the style S_TEST (SAP supplied style for testing barcodes) and it acts the same way.
    Both of the styles don't do anything except move the delivery number from its original position within the text node.
    Regards,
    Davis
    Message was edited by:
            Davis

    Davis,
    <b>
    PR <BC>&VBLKK-VBELN&< / ></b>
    did u provide this code in editor or in command prompt editor.
    If not: click on editor button left side of general attributes TAB. above syntax check button.
    Now u get like ABAP Editor screen.
    go to menuitem GO TO --> Change Editor
    on left side u can provide command as paragraph format i.e. PR ( in small box).
    and <b><BC>&VBLKK-VBELN&< / ></b> right to it.
    Then also it is not working then check the smartstyles is ur style is activated or not and also check the paragraph format and character format and assigned barcode style in it.
    last option: try with another barcode type C128 type for testing... if it prints then there is something wrong ur Barcode type like printer support or barcode assignment..
    Regards
    SAB

  • Printing 2-D barcodes

    hi folks,
              i have two doubts reagsrding barcodes.
    1. what is the difference between single dimension barcode and two dimesional barcode.
    2. can we print 2-D barcodes on SAP Scripts/smartforms on a data matrix printer.
    printer deatils are as follows.
            Printer: Intermec 4440
            Barcode Symbology: Codematrix
            SAP version 4.6c SP54
    if we can print, will the data matrix printer pritn it directly or do we need any software to do so. please help me regarding this..
                thns in advance,
                 santosh.

    Hi the correct use ist like this:
    = <MC>&BARCODEFIELD1&&BARCODEFIELD2&</>
    it works fine.

  • Barcoding in smartform(urgent)

    Hi folks,
      i am printing <b>2D barcode</b> in smartform by using PDF 417.it's somewhat large in size. but my customer wants the data matrix format for barcoding so that the barcode can be display in a smaller size.
      does SAP supports <b><u>DATA MATRIX</u></b> barcode ?? plz advice me , how to do this
    data matrix barcoding in SAP???
    Thanks & Regards
      madhu

    Hi
    see this link you will get idea of what is barcodes and use
    http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm
    Steps to implement bar code in the smart form:
    1. Create a Smart Style: Use the transaction code smart style. Give a suitable name .Choose Create.
    2. Create a Character Node: In change mode of the Smart Style select the Character Formats Node and choose Create. In the Character format field enter a two-character key. Click Continue.
    3. Select desired attributes of Bar Code: Select the desired attributes of the Bar Code on the tab Standard Settings.
    4. Choose Activate.
    5. Use the Smart style in the Smart form: Assign the character format to the field or character string in the smart form.
    6. Activate the smart form.
    7. Test the same.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/68/4a0d5b74110d44b1b88d9b6aa1315b/content.htm
    Reward if usefull

  • Re: Barcoding in Smartforms

    Hi All,
    This is regarding printing of Barcode in Smartforms , I want to print VBELN ( Invoice NO ) through Barcodes  and Barcode type is ( EAM ).
    How can I do that.
    Thanks in Advance,
    Regards,
    Rashmi.

    Hi,
    create charater formate in the smart style ur using in the smart form.
    in the character format mention the bar code type ur using.
    after creating the chatacter format,give this character format in the smart form for VBELN.
    regards,
    Sunil.K

  • HI Need help ob Barcode in smartform

    Hi All,
    I need help on how to create and print a barcode in smartforms ? explain step by step how to do ?
    Thanks,

    Hi,
    THIS IS TO CREATE THE BARCODES.
    1.CREATE THE PARAGRAPH AND CHARACTER FORMATS BY USING THE u201CSMARTSTYLEu201D TCODE R SELECT THE u201CSTYLEu201D RADIOBUTTON IN u201CSMARTFORMSu201D TCODE(WHICH IS CREATED FOR SMARTFORMS).
    GIVE u201CP1u201D AS PARAGRAPH FORMAT
    CLICK THE u201CFONTu201D TAB,THEN ENTER THE FOLLOWING
    CREATE THE NODE FOR CHARACTER FORMAT
    SELECT THE BAR CODE NAME AS u201CBC_EAN8u201D
    CLICK THE u201CFONTu201D TAB AND CHANGE THE OPTIONS WHICH U WANT.
    Enter the details in u201CHeader Datau201D.
    SAVE,AND ACTIVATE IT.
    CREATE THE SMARTFORM AS u201CZCS_FORM6u201D.
    Click on u201Coutput optionsu201D tab in which text node u want to add the barcode, select the style as u201CZCS_STYLE6u201D and go back to u201Cgeneral attributesu201D.
    Use Line editor to add the barcode in Text node
    After come BACK FROM THE LINE EDITOR.(ABOVE SCREEN),THEN U CAN C THE FOLLOWING SCREEN FOR DATE FIELD.
    Regards,
    Chandu

  • How can I  printout  Datamatrix barcode  with smartform .

    hello dear.
    I want to print out  datamatrix barcode type with smartform. so first i used se73  , but there is not exist
    datamatrix type. so i can't create barcode type in se73 .
    someone . if respond  about this issue , appreciate of your  help.

    Hi,
    Use Tcode Smartforms, , Create Style--> Create Character, in that character u can give Zbarcode, Which is created through SE73
    Regards
    Jana
    Edited by: Janardhan Reddy on Sep 8, 2008 12:59 PM

  • How to print a tickbox in SAP smartform

    Dear All,
    Can anyone help as to how to print a tickbox in the smartform.
    A tickbox is a blank checkbox with a tick in between.
    The symbols <697>(Crossed checkbox) and <727>(Blank Checkbox) do not serve my user requirement.
    Regards,
    Rijuraj

    Dear Deepak,
    Thanks.This is the closest solution we could get to
    [<709>].
    With the same line of thinking we can also have,
    [<769>]
    or
    [<799>].
    We can also highlight the square brackets to "Bold" if required.
    Best Regards,
    Rijuraj
    Edited by: Rijuraj Raju on Sep 21, 2011 1:00 PM

Maybe you are looking for