Skip to Content
0
Former Member
Oct 26, 2016 at 06:54 PM

How to create a show dialog pop up for browser client

405 Views

I have a created an Sap business add-on that uses a show Dialogue box for the desktop client this works, I would like to have a show dialogue pop up for the Browser Client however the code for desktop does not work for the browser.

I would like something like this:

 If SBO_Application.ClientType = BoClientType.ct_Browser Then
           'Code wanted here
 ElseIf SBO_Application.ClientType = BoClientType.ct_Desktop Then
            Try
                OpenFile.Multiselect = False
                OpenFile.Filter = "All Files (*.*)|*.*"
                OpenFile.InitialDirectory = "C:"
               .......
End If