abap barcodes

Upload: artwaniparas

Post on 14-Apr-2018

248 views

Category:

Documents


1 download

TRANSCRIPT

  • 7/27/2019 ABAP Barcodes

    1/8

    Create your own bar code font

    Go to SE73 SAPscript Font Maintenance to create or display the system bar codes.

    Check on the radio button System Bar Codes. Press display if you want to see different bar codes styles or press change button if you want tocreate your own bar code style.

    Unable to render embedded object: File (1.JPG) not found.

    Now press the change button you will get the following screen.

    Press the create button.

    Press New button. Give the bar code name and short text as BAR_CODE and Demo Bar Code. Press enter.

  • 7/27/2019 ABAP Barcodes

    2/8

    Check any radio button according to your requirement. I am using Code 39 .Press enter and set bar code alignment as normal, rotated,

    inverted or bottom up as shown below.

    1. normal -> scan direction is from left to right.2. rotated -> scan direction is rotated by 90 degree from top to bottom

    3. inverted -> scan direction is rotated by 180 degree from right to left

    4. bottom-up -> scan direction is rotated by 270 degree from bottom to top

    Set the bar code parameters, width, height, etc., according to requirement as shown below.

    Save the bar code definition.

    Here you have created a demo bar code as shown below.

  • 7/27/2019 ABAP Barcodes

    3/8

    You can see the print preview of your created bar code as executing it as shown below.

    Import the created bar code pattern into smart style

    Using t-code SMARTSTYLES.

    Create a smart style ZSMS_BARCODE

  • 7/27/2019 ABAP Barcodes

    4/8

    Create a paragraph format P1 into the smartstyle as shown below.

    Give font family anyone suppose Courier etc.

    Click on Header data and enter the standard paragraph as P1 as shown below.

  • 7/27/2019 ABAP Barcodes

    5/8

    Create a node in the character formats as shown below.

    Give a name to character format.

    Import the bar code that you created using SE73 into your character formats as shown below.

    Now save and activate your smart style.

    Use that bar code character format into your smart form

    Start transaction SMARTFORMS and create a smartform ZSFS_BARCODE as shown below.

    Click on Form attributes and import the smart style's character format that you have recently created in the output option as shown

    below. Define import parameter into the import tab of form interface as shown below.

  • 7/27/2019 ABAP Barcodes

    6/8

    Now in Global Definition->Global Data, declare the following.

    Variable Name Type assignment Associated type

    MARA TYPE MARA

    ITAB TYPE STANDARD TABLE OF MARA

    WA TYPE MARA

  • 7/27/2019 ABAP Barcodes

    7/8

    As shown below.

    Then right click main window and create Program line.

    Since input is coming from Mara, we need to declare MARA as input parameter. Since we are writing the output on itab, we need to declare itab

    as output parameter. Then write the required coding as mentioned above.

    Then right click %CODE1 New Program line in left as marked above. Then create a loop.

    In that loop->Data.

  • 7/27/2019 ABAP Barcodes

    8/8

    Internal table ITAB into WA. As shown below.

    Then create text element by right clicking the Program line just created.

    Enter the field that you want to print as in the form of bar code. Use that character format into your output parameter as shown below.

    Save and activate your smart form.

    Execute your smart form as shown below, you will get the material number as in the form of bar code.

    The print preview is shown below.