Barcode in smart from

Hi Gurus.
Can anybody plz tell me how to print bar code in smartform, actually my requirement is to print postal barcode in smartfrom.
plz reply.
mahesh.

Hi,
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. 
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.
Regards,
Bhaskar

Similar Messages

  • How to print 4 copies of smart from in a single print

    Dear All,
      i have one smartform. i have attached my smart form to an output type. if  i am printing through that output type, it has to print 4 copies of smartform. Hoe to do this?
    i have 6 windows in my smart from in different different place. i have used main window for my table data inthe middle of the smart from.
    How can i print  4 copies of smart from in a single print ?
    Thanks In advance.

    Hi Vishnu,
    I hope you have used a print program which will be triggered from the output type.   In your print program where you are calling your smartform, just include that piece of code inside DO 4 times.
                                                                                    ........... Write the code here to call your smartform.
                                                                                    ENDDO.
    I hope by doing this you will be able to achieve your requirement.
    BR,
    Vinit

  • Dynamic Insertion of graphics in Smart from

    Hi guys,
    I want to insert a dynamic graphic image from the presentation server into smart from its possible?
    Reg,
    Hriharan

    Hi Mohd,
    here's how to do it.
    I presume you have alredy done charting in general with the cl_gui_chart_engine. You need the data and the customizing XML strings of that chart to print it out.
    Follow this coding:
        DATA: l_igs_viewer TYPE REF TO cl_igs_chart_engine,
              i_igs_image_converter TYPE REF TO cl_igs_image_converter.
    * Generate an Internet Graphics Server Chart Engine
        CREATE OBJECT l_igs_viewer
          EXPORTING
            destination = 'GFW_ITS_RFC_DEST'.  "IGS must exist, destination be installed
    * IGS gets data and customizing
        CALL METHOD l_igs_viewer->set_data( data_doc = l_ixml_doc ).
        CALL METHOD l_igs_viewer->set_customizing(
          custom_doc = l_ixml_custom_doc ).
    * and now renders the chart.
        CALL METHOD l_igs_viewer->execute
          EXCEPTIONS
            communication_error = 1
            internal_error      = 2
            external_error      = 3
            OTHERS              = 4.
    * Next step ist to convert the image to an MS-BMP.
          DATA:
            l_image TYPE  w3mimetabtype,
            l_image_size  TYPE  w3param-cont_len,
            l_image_type  TYPE  w3param-cont_type.
    * get your image
          CALL METHOD l_igs_viewer->get_image
            IMPORTING
              image      = l_image
              image_size = l_image_size
              image_type = l_image_type.
    * Create an image converter on the IGS
          CREATE OBJECT i_igs_image_converter
            EXPORTING
              destination = 'GFW_ITS_RFC_DEST'.
          i_igs_image_converter->input = 'image/gif'.
          i_igs_image_converter->output = 'image/x-ms-bmp'. " !!!!
    * Hand the image over
          CALL METHOD i_igs_image_converter->set_image
            EXPORTING
              blob      = l_image
              blob_size = l_image_size.
    * and convert it to a BMP
          CALL METHOD i_igs_image_converter->execute
            EXCEPTIONS
              communication_error = 1
              internal_error      = 2
              external_error      = 3
              OTHERS              = 4.
          IF sy-subrc = 0.
    * if OK, get that image.
            CALL METHOD i_igs_image_converter->get_image
              IMPORTING
                blob      = l_image
                blob_size = l_image_size
                blob_type = l_image_type.
          ENDIF.
        ENDIF.
    At this point, we have a BMP-24, and we are ready to save it to the SE78 BDS graphics system.
    This is by far the slowest part of the story. Not applicable for mass printing, the conversion of a bitmap can take up to 1 minute!
        DATA: l_docid TYPE stxbitmaps-docid.
        PERFORM save_bitmap_bds
                USING    'TEMP_CHART0181'
                         'GRAPHICS' 'BMAP' 'BCOL' 'BMP'
                         'Temporäre Grafik Chart 0181'(i16)
                         con_blank
                         con_x
                         con_x
                CHANGING
                         l_image_size
                         l_image
                         l_docid.
    The next part ist the form that converts and saves the BMP to BDS.
    FORM save_bitmap_bds
        USING    p_name           TYPE stxbitmaps-tdname
                 p_object         TYPE stxbitmaps-tdobject
                 p_id             TYPE stxbitmaps-tdid
                 p_btype          TYPE stxbitmaps-tdbtype
                 p_format         TYPE c
                 p_title          TYPE bapisignat-prop_value
                 p_resident       TYPE stxbitmaps-resident
                 p_autoheight     TYPE stxbitmaps-autoheight
                 p_bmcomp         TYPE stxbitmaps-bmcomp
        CHANGING
                 p_image_size     TYPE i
                 p_image          TYPE w3mimetabtype
                 p_docid          TYPE stxbitmaps-docid.
      DATA: l_object_key      TYPE sbdst_object_key.
      DATA: l_tab             TYPE ddobjname.
      DATA: l_filename        TYPE string,
            l_bytecount       TYPE i,
            l_error           TYPE c.
      DATA: l_color(1)        TYPE c.
      DATA: l_bds_object      TYPE REF TO cl_bds_document_set,
            l_bds_content     TYPE sbdst_content,
            l_bds_components  TYPE sbdst_components,
            l_dpi             TYPE  stxbitmaps-resolution,
            wa_bds_components TYPE LINE OF sbdst_components,
            l_bds_signature   TYPE sbdst_signature,
            wa_bds_signature  TYPE LINE OF sbdst_signature,
            l_bds_properties  TYPE sbdst_properties,
            wa_bds_properties TYPE LINE OF sbdst_properties.
      DATA  wa_stxbitmaps TYPE stxbitmaps.
      DATA:
        l_width_tw TYPE  stxbitmaps-widthtw,
        l_height_tw TYPE  stxbitmaps-heighttw,
        l_width_pix TYPE  stxbitmaps-widthpix,
        l_height_pix TYPE  stxbitmaps-heightpix,
        l_bds_bytecount TYPE  i,
        l_docid TYPE stxbitmaps-docid.
      CALL FUNCTION 'SAPSCRIPT_CONVERT_BITMAP_BDS'
        EXPORTING
          color                     = 'X'
          format                    = 'BMP'
          bitmap_bytecount          = p_image_size
          compress_bitmap           = 'X'
        IMPORTING
          width_tw                  = l_width_tw
          height_tw                 = l_height_tw
          width_pix                 = l_width_pix
          height_pix                = l_height_pix
          dpi                       = l_dpi
          bds_bytecount             = l_bds_bytecount
        TABLES
          bitmap_file               = p_image
          bitmap_file_bds           = l_bds_content
        EXCEPTIONS
          format_not_supported      = 1
          no_bmp_file               = 2
          bmperr_invalid_format     = 3
          bmperr_no_colortable      = 4
          bmperr_unsup_compression  = 5
          bmperr_corrupt_rle_data   = 6
          tifferr_invalid_format    = 7
          tifferr_no_colortable     = 8
          tifferr_unsup_compression = 9
          bmperr_eof                = 10
          OTHERS                    = 11.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    * Enqueue
      PERFORM enqueue_graphic USING p_object
                                    p_name
                                    p_id
                                    p_btype
                              CHANGING l_error.
      CHECK l_error EQ con_blank.
      SELECT SINGLE docid INTO p_docid
        FROM stxbitmaps
        WHERE tdobject = p_object
          AND   tdname   = p_name
          AND   tdid     = p_id
          AND   tdbtype  = p_btype.
      IF sy-subrc NE 0.
        CLEAR p_docid.
      ENDIF.
      IF p_btype = c_bmon.
        l_color = con_blank.
      ELSE.
        l_color = con_x.
      ENDIF.
    * Save bitmap in BDS
      CREATE OBJECT l_bds_object.
      wa_bds_components-doc_count  = '1'.
      wa_bds_components-comp_count = '1'.
      wa_bds_components-mimetype   = c_bds_mimetype.
      wa_bds_components-comp_size  = l_bds_bytecount.
      APPEND wa_bds_components TO l_bds_components.
      IF p_docid IS INITIAL.          " graphic is new
        wa_bds_signature-doc_count = '1'.
        APPEND wa_bds_signature TO l_bds_signature.
        CALL METHOD l_bds_object->create_with_table
          EXPORTING
            classname  = c_bds_classname
            classtype  = c_bds_classtype
            components = l_bds_components
            content    = l_bds_content
          CHANGING
            signature  = l_bds_signature
            object_key = l_object_key
          EXCEPTIONS
            OTHERS     = 1.
        IF sy-subrc <> 0.
          PERFORM dequeue_graphic USING p_object
                                        p_name
                                        p_id
                                        p_btype.
          MESSAGE e012 WITH p_name  'BDS'.
        ENDIF.
        READ TABLE l_bds_signature INDEX 1 INTO wa_bds_signature
        TRANSPORTING doc_id.
        IF sy-subrc = 0.
          p_docid = wa_bds_signature-doc_id.
        ELSE.
          PERFORM dequeue_graphic USING p_object
                                        p_name
                                        p_id
                                        p_btype.
          MESSAGE e012 WITH p_name 'BDS'.
        ENDIF.
      ELSE.                " graphic already exists
    ********* read object_key for faster access *****
        CLEAR l_object_key.
        SELECT SINGLE * FROM stxbitmaps INTO wa_stxbitmaps
            WHERE tdobject = p_object
              AND tdid     = p_id
              AND tdname   = p_name
              AND tdbtype  = p_btype.
        SELECT SINGLE tabname FROM bds_locl INTO l_tab
           WHERE classname = c_bds_classname
              AND classtype = c_bds_classtype.
        IF sy-subrc = 0.
          SELECT SINGLE object_key FROM (l_tab) INTO l_object_key
            WHERE loio_id = wa_stxbitmaps-docid+10(32)
              AND classname = c_bds_classname
                AND classtype = c_bds_classtype.
        ENDIF.
    ******** read object_key end ********************
        CALL METHOD l_bds_object->update_with_table
          EXPORTING
            classname     = c_bds_classname
            classtype     = c_bds_classtype
            object_key    = l_object_key
            doc_id        = p_docid
            doc_ver_no    = '1'
            doc_var_id    = '1'
          CHANGING
            components    = l_bds_components
            content       = l_bds_content
          EXCEPTIONS
            nothing_found = 1
            OTHERS        = 2.
        IF sy-subrc = 1.   " inconsistency STXBITMAPS - BDS; repeat check in
          wa_bds_signature-doc_count = '1'.
          APPEND wa_bds_signature TO l_bds_signature.
          CALL METHOD l_bds_object->create_with_table
            EXPORTING
              classname  = c_bds_classname
              classtype  = c_bds_classtype
              components = l_bds_components
              content    = l_bds_content
            CHANGING
              signature  = l_bds_signature
              object_key = l_object_key
            EXCEPTIONS
              OTHERS     = 1.
          IF sy-subrc <> 0.
            PERFORM dequeue_graphic USING p_object
                                          p_name
                                          p_id
                                          p_btype.
            MESSAGE e012 WITH p_name 'BDS'.
          ENDIF.
          READ TABLE l_bds_signature INDEX 1 INTO wa_bds_signature
          TRANSPORTING doc_id.
          IF sy-subrc = 0.
            p_docid = wa_bds_signature-doc_id.
          ELSE.
            PERFORM dequeue_graphic USING p_object
                                          p_name
                                          p_id
                                          p_btype.
            MESSAGE e012 WITH p_name 'BDS'.
          ENDIF.
        ELSEIF sy-subrc = 2.
          PERFORM dequeue_graphic USING p_object
                                        p_name
                                        p_id
                                        p_btype.
          MESSAGE e012 WITH p_name 'BDS'.
        ENDIF.
      ENDIF.
    * Save bitmap header in STXBITPMAPS
      wa_stxbitmaps-tdname     = p_name.
      wa_stxbitmaps-tdobject   = p_object.
      wa_stxbitmaps-tdid       = p_id.
      wa_stxbitmaps-tdbtype    = p_btype.
      wa_stxbitmaps-docid      = p_docid.
      wa_stxbitmaps-widthpix   = l_width_pix.
      wa_stxbitmaps-heightpix  = l_height_pix.
      wa_stxbitmaps-widthtw    = l_width_tw.
      wa_stxbitmaps-heighttw   = l_height_tw.
      wa_stxbitmaps-resolution = l_dpi.
      wa_stxbitmaps-resident   = p_resident.
      wa_stxbitmaps-autoheight = p_autoheight.
      wa_stxbitmaps-bmcomp     = p_bmcomp.
      INSERT INTO stxbitmaps VALUES wa_stxbitmaps.
      IF sy-subrc <> 0.
        UPDATE stxbitmaps FROM wa_stxbitmaps.
        IF sy-subrc <> 0.
          MESSAGE e012 WITH p_name 'STXBITMAPS'.
        ENDIF.
      ENDIF.
    * Set description in BDS attributes
      wa_bds_properties-prop_name  = 'DESCRIPTION'.
      wa_bds_properties-prop_value = p_title.
      APPEND wa_bds_properties TO l_bds_properties.
      CALL METHOD l_bds_object->change_properties
        EXPORTING
          classname  = c_bds_classname
          classtype  = c_bds_classtype
          object_key = l_object_key
          doc_id     = p_docid
          doc_ver_no = '1'
          doc_var_id = '1'
        CHANGING
          properties = l_bds_properties
        EXCEPTIONS
          OTHERS     = 1.
      PERFORM dequeue_graphic USING p_object
                                    p_name
                                    p_id
                                    p_btype.
    ENDFORM.                    "save_bitmap_bds
    Your final part will now be to print out the graphic using a SmartForm. The method I showed above, saves the graphics always with the same name, in this case TEMP_CHART0181. So this method is not qualified for concurrent use by multiple users.
    Try it out and see how slow this works unfortunately.
    I hope SAP will provide a performant way soon to print charts with smartforms better than that above.
    One last hint concerning size and resolution of the bitmap. Take a low resolution of say 50 dpi to gain higher performance but lower print quality. I never tried high resolutions of like 300dpi, it just became too slow for me and I qualified that as simply unpracticable.
    I hope the coding snippets can help you.
    Kind Regards
    Ernst

  • Tell me how i can read barcode in smart form

    hi all,
                  pls tell me how i can read the  barcode in smart form.
               Any body give  me  some idea.
                     how i can program to read that.
        regards
          vikas saini.

    Hi
    if u mean my creating barcode format ..then in smartforms...create a character format.......in that there is a radio button ...barcode select that and select a particular barcode format.
    save and activate this character format.
    call this character format where u want the barcode .
    <c1>it_kna1-kunnr<c1>

  • Step by step procedure for smart froms

    Please send me some link about smart from creation procedure.
    My requirememnt is to print the vbak-header details on below header window n vbap-item details,total quantity per page,total amount on page, on main window tec.
    Thanks & regards
    santhosh kumar

    Hi,
    Check these step-by-step links
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/ccab6730-0501-0010-ee84-de050a6cc287
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Regards,
    Priyanka.

  • How to create barcode in Smart Forms with MS Word as Editor?

    Hi,
    I created a character format for a barcode in a smart style.
    The problem is that I do not know how to assign it to the text in Smart Form because the Editor is MS Word and not the normal Editor.
    Any suggestion or idea.
    Thanks & best regards
    Viktoria

    Hi and thanks for the fast reply,
    I have created a smartstyle and also a characterformat for the barcode. This is not the problem.
    I call the layout via HRFORMS. The Form Builder for Smart Forms is called and the Editor for the text nodes is preset and is the MS Word editor. This cannot be changed. I tried different things also in the settings. The normal text editor cannot be called.
    I choose and enter the field that I want to convert into the barcode &wa_barcode&. I do not work with standard texts (SO10). The text field is a normal text node in Smart Forms. The character format that applies converts the number in the variable field into the barcode.
    In the MS word editor I have only formats that are in the office environment (arial, ...) I do not see the formats that I created in smartstyle also when I assign it in the output options of the text node.
    So maybe I have to work like this for now. Swich between HRFORMS and SMARTFORMS when working with barcodes. In the Smart Forms transaction it is the normal editor where I can see the paragraph/ character formats from smartstyle.
    Thanks and best regards
    Viktoria

  • Need Help with SSCC-18 Barcode in Smart Forms...

    Hi...
    Using new Smart Forms barcode...
    Need to create a SSCC-18 Serial Container Shipping Code format barcode...
    It is currently printing OK as a UCC-128 format... but... when it it is read by a scanner... they say it is missing the SSCC-18 "Start code Start A character and Function code 1"... that identify it as an SSCC-18 format...
    Suggestions ?
    Thank you,
    Dave...

    Issue is resolved...
    In the System Bar Code being used...
    ...changed the Code128 Mode parameter to a 'U' from an 'A'
    The scanner now recognizes the bar code as an SSCC-18 format.
    Dave T.

  • Fonts in smart froms

    how do u change fonts in smart forms?

    Hi,
    You can change fonts by creating paragraph formats in smartstyles and assigning it to the smartform....you can choose the font you need from the dropdown option while creating the paragraph format..
    Tcode : SMARTSTYLES
    Rgds,
    Ajith
    Reward  pts if helpful..

  • Convert the smart from in to zebra programming language?

    i have doubt just clarify this, the smart form should be converted in to Zebra programinnig languege how it will do?
    just give me the explanation?
    thanQ.

    follow this link which will give u the details
    [zebra programming in detail|http://www.quad.de/ftp/data/zebra/zplmanual.pdf]
    [Zebra programming- part1|ftp://ftp.tallygenicom.com/pub/genicom/docs/mobile/mtp4x/ZPL%20Vol1.pdf]
    [Zebar programing-part2|http://www.servopack.de/support/zebra/ZPLmanual_two.pdf]
    this will give u details of
    1. printer setting
    2. printer program
    3.about ZPL
    4.LAbel printing *** barcode printing
    hope this help u
    regards,
    Arunprasad
    Edited by: arun prasad on Jul 18, 2008 6:00 AM

  • Unable to print barcode in smart forms in zebra 420 printer.

    Hi,
    Can anyone please help me out with the following issue.
    1. I am unable to print the barcode using a zebra barcode printer from SAP. I use C128A format.
    2. But this issue doesn't come when I print the same form using a Laser printer. The scanner also detects the same correctly.
    3. The same barcode printer prints  my earlier forms with the same settings correctly.
    May I please know where the issue exactly is?
    Regards,
    Krishna

    Hi,
    Please check the size of the barcode in the styles and check ur printer settings.
    The paper layout of the printer also needs to be checked.
    Regards,
    Krishna

  • How to use different font sizes in smart from?

    Hi Gurus,
         I'm creating a form and i am trying to place a title with font size around 50, and i tried creating a paragraph type with a font of this size in smart styles, the problem is when i am editing the text node, the font size appears to be right, but when i print it, the font gets much smaller, can anyone help on this?
    I have created SMART STYLE as YSMART.
    Header---- H4 ( For Main Headings)
    Paragraph -
    H1 (Table Headings)
    H2 ( Label Headings)
    H3 ( Label Values)
    H4 ( Main Headings)
    I have given H4 as Header font in smart style.  
    Thanks In Advance..!
    Edited by: sreelakshmi.B on Jun 25, 2010 10:07 AM

    HI ,
    Just check with your smart styles with assigned  paragraph  allignment   .
    Try to create character style  with your required  font ,size and  Allignment  .
    Hope u this will solve your issue  .
    Let me know if any concerns......
    Regards,
    Lokesh

  • Removing blank line in smart from nested loop

    hi,
              I have been using table in the smart forms for printing purchase order (services) material under a single material  and in my table control I have been using two to three loops on different rows according to the requirements. in the last loop I have been getting blank lines after each row is printing. Can someone one tell me how to control that blank line.
    Regards,
    Zahid Hameed.

    HI ,
                  I HAVE TWO LOOPS RUNNING UNDER THE TABLE TOTAL OF THREE UNDER FIRST LOOP I HAVE BEEN PRINTING THE 6 COLS THAT IS "SNO, material description,qty/unit,rate and amount and yes under the material description I HAVE BEEN PRINTING THE LONG TEXT AFTER THIS THE SECOND LOOP STARTS WHICH PRINTS FOR ME THE SUB MATERIAL DESCRIPTION AMOUNT AND UNIT/QTY,AND IN THE THIRD LOOP I HAVE BEEN PRINTING CONDITION NAME UNDER THE MATERIAL DESCRIPTION AND AMOUNT IN THE NEXT FIELD. THIS IS HOW THE WHOLE SCENARIO IS RUNNING THE FIRST TWO LOOPS R WORKING PROPERLY BUT WHEN CONTROL COMES TO THE THIRD LOOP IT PRINT LIKE THIS.
    GROSS PRICE                                                                               
    . 1100.000
    DISCOUNT                                                                               
    . 100.00-
    ABSOLUTE VALUE
                                                                                    . 400.00
    FOR BOTH THE VALUES I HAVE BEEN USING THE DIFFERENT COLOUMNS BUT AND BOTH THE COLOMNS HAVE   ALOT OF SPACE I HAVE IMPLEMENTED UR SAID CONDITIONS ON MY UPPER LOOP START WORK FINE. BUT THE THIRD ONE HAS THE SAME EFFECT AS I HAVE MENTIONED ABOVE.
    REGARDS,
    ZAHID HAMEED.
    Edited by: ZAHID HAMEED on Jul 3, 2010 10:12 PM
    Moderator message: Please do not use all upper case in the future.
    Edited by: Thomas Zloch on Jul 5, 2010 11:30 AM

  • Assigning  of   smart from  to print  Service Order using Tcode IW32

    Hi  Gurus
    i have  developed a Z smart form  to print shop papers  using IW32 how how to assign the  Zprint program and Z smartforn  to print  shop papers using iw32
    thanks in advance.
    Edited by: jvp111 on Jun 11, 2010 4:20 PM

    In config, under Plant Maintenance & Customer Service -> Maintenance & Service Processing -> Maintenance & Service Orders -> Print Control -> Define Shop Papers you can assign you own Shop Paper number , Form Routine, Form name. The SAP standard  is a Sapscript but I have used a Smartform. Note that you will have to give a shorter name for your Smartform to fit in the Form section in config.

  • EAN13 barcodes not printing from viewer

    I have designed a Crystal report and have set the printer as the Zebra, and the font as the printer font. While the font display oddly in the designer preview, it prints fine to the Zebra printer.
    When importing the report into SAP Business One and running from the viewer, the codes' numeric value displays on screen and that is what prints from the printer. Have tried this on the same machine where the designer is installed and from a different machine.
    I am using CR2008, which is the latest which is compatible with the customers SAP install.
    A truetype font I have installed does not print at all
    Any way to resolve this?

    Hi Michael,
    We purchased one from Azalea in the end. I found a free one which did work, but doesn't conform to GS1 standards - it was not tall enough.
    While I now have the Azalea one printing, I haven't yet got it to pass GS1.
    This is a nightmare project, something that should be easy has take 3 months and counting!.
    Printer fonts won't work from the Crystal Viewer, but will from the designer, that is a known issue.

  • Japanese Characters in a smart from

    Hi!  I'm creating a smart form that needs to be in Japanese and all I get are little boxes as output.  I'm using the font JPMINCHO.  Any ideas on what I could be doing wrong? 
    Thank you!

    Sara,
    I believe if you need to CHANGE any Japanese texts - you have to have Locale set to Japan in your windows, you need to have in your windows Japanese fonts, and you need to activate I18N in the OPTIONS for your system (on the first logon screen - press Alt-F12 then choose options, then activate multibyte functions).
    To display texts correctly, you need to :
    - have Japan fonts installed on your PC (windows, control panel, regional settings)
    - activate I18N
    - close saplogon, start again - select same icon (the right one on the top) or press Alt-F12 on the logon screen for your system - you'll see Character Set in the menu now, where you can select Japanese).
    Hopefully you'll be able to see texts correctly after that without logging in JA language.

Maybe you are looking for

  • Can I use airport express from my Ipad?

    I believe it is not possible, but does anyone know if it is in the roadmap? It would be a lovely addition, how is it possible that Apple does not allow this?

  • Using iSetup for day-to-day change management

    We are an existing 11.5.10.2 e-business shop with many instances and many release flows. We've done a little bit of foundation object automation with fndload (just conc programs and request sets). We're contemplating using iSetup for day-to-day migra

  • Acrobat 9 is slower?

    hi,                  We have an application(plug-in) in that user can extract all Annotations/Bookmarks from pdf files and display them in a User interface, it is working fine, but from the performance point of view when we load same plug-in in acrob

  • Logger creates two file...why ?

    Hello, actually I'm working on a program and I want to log the errors occuring during several runs. To log the errors I'm using a Logger object in combination with a file handler so all logging messages are written to a .txt file. Now I have two prob

  • Text box issue

    Here's the issue: I place a text box inside a table cell. It is for some reason forcing an extra line underneath itself. It is viewable in DW and PC browser (IE), but not in any Mac browsers. Please see: http://www.christianrockreview.com/text.php Le