2014 May 23 8:36 AM
Hi ,
I have an issue with scanner beeping.User is working is Z tcode .
The followings are related steps.
(1)If the user does over-picking the material code , an “information” window like below is displayed, however, no beep sound is produced.
(2)Since the user has heard no beep sound, the user is unaware of the over-picking and scans the next item.
(3)Then, in case of XP PC, a louder noise, a kind of buzzer is generated, while in with Windows 7 PC, a small noise, a kind of chime is made.
(4)With Windows 7 PC, due to the small sound, the user continues the next step, being unaware of the over-picking. This has a risk of causing errors at the shipment: eventually, it impacts customers.
The requirement is beep sound will be heard on over-picking also.
Please suggest in this regard.
Thanks,
Harsh
Hi ,
I have an issue with scanner beeping.User is working is Z tcode .
The followings are related steps.
(1)If the user does over-picking the material code , an “information” window like below is displayed, however, no beep sound is produced.
(2)Since the user has heard no beep sound, the user is unaware of the over-picking and scans the next item.
(3)Then, in case of XP PC, a louder noise, a kind of buzzer is generated, while in with Windows 7 PC, a small noise, a kind of chime is made.
(4)With Windows 7 PC, due to the small sound, the user continues the next step, being unaware of the over-picking. This has a risk of causing errors at the shipment: eventually, it impacts customers.
The requirement is beep sound will be heard on over-picking also.
Please suggest in this regard.
Thanks,
Harsh
2014 May 23 9:30 AM
Hi Harshavarddan,
there is some example on forum for generating beep sound with the use of the OLE Objects:
Try this code:
TYPE-POOLS: ole2.
DATA: return TYPE i,
sapinfo TYPE ole2_object.
DATA: BEGIN OF command,
command(12) TYPE c VALUE 'cmd /c echo ',
hex07(1) TYPE x VALUE '07',
END OF command.
START-OF-SELECTION.
CREATE OBJECT sapinfo 'SAPINFO' NO FLUSH.
CALL METHOD OF sapinfo 'EXEC' = return
EXPORTING
#1 = command
#2 = 0.
FREE sapinfo.
Regards,
Angelo.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |