Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

QR code Barcode(2D) in SAP

Former Member
0 Kudos

Hi,

Is it possible to print QR-Code barcodes(2D barcodes) in SAP smartforms using system barcode font?

Can anybody please let me know the font settings for QR-Code in SE73 font maintenance? Also the steps to upload the QR code font into SAP.

Thanks,

Best regards,

Prashant

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Prashanth,

check the Transaction SE73 which is used for Font Maintenance and define the font as scalable. Then you can do what you want.

hope this will help u.

cheers,

Hema.

9 REPLIES 9

Former Member
0 Kudos

Hi Prashanth,

check the Transaction SE73 which is used for Font Maintenance and define the font as scalable. Then you can do what you want.

hope this will help u.

cheers,

Hema.

former_member223537
Active Contributor
0 Kudos

Thanks Hema for the prompt reply .

I would like to know from where i would get the font to upload into SAP. Can you provide pointers to any link from where i can get QR code font ?

Thanks,

Best regards,

Prashant

former_member223537
Active Contributor
0 Kudos

Experts any pointers ?

former_member223537
Active Contributor
0 Kudos

Folks any pointers ?

0 Kudos

Dear Prashant,

How did you resolved the issue of printing 2D Barcodes using QRCode Symbology in SAP.

As we have the same requirement.

Please share your valuable inputs on this, thanks.

Madhu

0 Kudos

Hi all,

Did you resolved the issue of printing 2D Barcodes using QRCode in SAP.

Would be very appreciated if you can share your valuable for this knowledge.

Because i tried to find how to print QRCode (Barcode), but still can't found how to do it.

Thank in advance.

0 Kudos

This is the best way to do it IMO.

Uses a Google Charts API, the HTTP_CLASS, Monochrome Bitmaps and SMARTForms.

This example is great as it includes all the code you need.

You will need your SAP System connected to the internet though, go badger your BASIS team about this.

Former Member
0 Kudos

Hi All,

if any one got information about 2D bar code please let me know.

Regards,

Surakshith

SergioFerrari
Active Contributor
0 Kudos

Hi Prashant,

I'll blog in SDN about my research that I presented at TechEd during session CD119 ([blog|http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21314] [original link is broken] [original link is broken] [original link is broken]😉 but I'll begin share 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/|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