Application Development and Automation 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: 
Read only

Issue with scanners beeping on over picking material code

0 Likes
605

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.

  1. Information. Material code, ABC!@#% already updated for Delivery 1ASEDFD.

(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.

  1. Information. Material code, ABC!@#% already updated for Delivery 1ASEDFD.

(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

1 REPLY 1
Read only

former_member302911
Active Participant
0 Likes
459

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.