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
Request clarification before answering.
hi
qr code is called quick response code. please refer to the link given below for step by step creation of qr code.
With regrads
Suneesh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I need to create a dop down option status in that need to fill the value
Status = Status should have dropdown 3 drop down values like, Trip Completed/Open (3 and 0), Trip Completed and To be settled (3 and1), Trip Approved/To be settled (4and1) and Trip Approved/Settled (4and 2).
If we select any value and execute the report Trip details need to be identified & fetched from the table PTRV_CHANGE from Fields (ANTRG and ABREC).
i have created the drop down option but not getting how to fetch the values.Please help it out.
CASE so_stat.
WHEN 'A'.
READ TABLE lt_ptrv_change INTO ls_ptrv_change WITH KEY pernr = ls_ptrv_head-pernr
reinr = ls_ptrv_srec-pernr.
IF sy-subrc = 0.
ENDIF.
ENDCASE.
DATA : v_id TYPE vrm_id,
values TYPE vrm_values.
DATA : BEGIN OF vrm_value,
key(40) TYPE c,
text(80) TYPE c,
END OF vrm_value.
vrm_value-key = 'A'.
vrm_value-text = 'Trip Completed/Open '.
APPEND vrm_value TO values.
vrm_value-key = 'B'.
vrm_value-text = 'Trip Completed/To be settled'.
APPEND vrm_value TO values.
v_id = 'SO_STAT'.
vrm_value-key = 'C'.
vrm_value-text = 'Trip Approved/To be settled '.
APPEND vrm_value TO values.
vrm_value-key = 'D'.
vrm_value-text = 'Trip Approved/Settled '.
APPEND vrm_value TO values.
v_id = 'SO_STAT'.
CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
id = v_id
values = values[]
EXCEPTIONS
id_illegal_name = 1
OTHERS = 2.
IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.