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