Tema: Abrir URL
Ver Mensaje Individual
  #2  
Viejo 09/07/09, 12:57:16
cesar Luis cesar Luis is offline
Junior Member
 
Fecha de Ingreso: may 2008
Localización: Valladolid
Mensajes: 10
Una manera de hacerlo:

data: execute type string.
start-of-selection.

CONCATENATE 'c:\archivos de programa\internet explorer\iexplore.exe'
' http://www.sap.com' INTO EXECUTE.
CALL FUNCTION 'WS_EXECUTE'
EXPORTING PROGRAM = EXECUTE
EXCEPTIONS FRONTEND_ERROR = 1
NO_BATCH = 2
PROG_NOT_FOUND = 3
ILLEGAL_OPTION = 4
OTHERS = 5.

Ojo, has de poner tu ruta exacta donde tengas el explorer ó el navegador que sea.
Saludos!
Responder Con Cita