cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ITSMobile - Zebra - Velocity browser

kim_ternstrm
Explorer
0 Likes
691

We are running some old RF devices on SAPConsole with Telnet and are using the solution from OSS note 371838 (NOTIFY_BELL_SIGNAL) to get a sound from the device.

We have also some Zebra MC330K running from SAP ITS. On this Android device we are running on the Velocity browser. IT has chosen this to lock down for unwanted features in the browser. But the result is that the old solution with sound don't work anymore.

Are somebody running this combination ?

The browser basically just supports the IDA Command IDA_BEEP and IDA_ERROR_BEEP

The only way to send this sound is by using code from this : https://help.ivanti.com/wl/help/de_DE/Velocity/1.1/Velocity/DevelopingPages/IDA_Commands.htm

Basically I have modified the SOUND.HTML that was added with ~ITSMOBILESOUNDINCLUDE

 

The sound.html looks like this 

<script type="text/javascript" language="javascript">
`if ( ( ~messageline != "" ) && ( ~itsmobilemsgsound == "1" ) || ( ~currdynpro.messagesound != "" ) )
if ( ~currdynpro.messagesound == "S" )
<!-- sucess message -->
` location.href = "ida:IDA_BEEP" ;
` elseif ( ~currdynpro.messagesound == "I" )
<!-- information message -->
` location.href = "ida:IDA_BEEP" ;
` elseif ( ~currdynpro.messagesound == "W" )
<!-- warning message -->
` location.href = "ida:IDA_ERROR_BEEP" ;
` elseif ( ~currdynpro.messagesound == "E" )
<!-- error message -->
` location.href = "ida:IDA_ERROR_BEEP" ;
` else
<!-- message type not set -->
` location.href = "ida:IDA_ERROR_BEEP" ;
` end;
end;`
</script>

I can't get "document.location" or "window.navigate" to give a sound. And the problem with "location.href" is that it displays a empty screen, when I have to use Back un the device to get back to the screen.

 

Has anyone a solution for this combination ?

 

Accepted Solutions (0)

Answers (0)