[60235] in SAPr3-news
Re: Aus Liste/ALV-Grid per Doppelklick eine URL im externen Browser
daemon@ATHENA.MIT.EDU (St. Kother)
Mon Nov 19 07:54:40 2007
To: sapr3-news@mit.edu
Date: Mon, 19 Nov 2007 13:54:22 +0100
From: "St. Kother" <steffen.kother@gmx.net>
Message-ID: <5qdfc5Fvgjo6U1@mid.individual.net>
Reply-To: steffen.kother@gmx.net
Servus Christian,
Christian Wallner schrieb:
>
> Habs hier bei mir versucht (ERP2005): Sowohl
> "file:///\\server\share$\file.pdf"
> als auch
> "\\server\share$\file.pdf"
> funktionierten tadellos!
kannst du mir mal bitte deinen Testcode mailen? Meiner sieht derzeit so
aus im 4.6C:
REPORT ZVA25.
data: url type bxmnodes-url,
con_url2 like url,
url_string type string,
con_url like url_string.
data: it_line type table of tline,
wa_line type tline.
call function 'READ_TEXT'
exporting
id = 'IVER'
language = 'D'
name = 'GV002'
object = 'MATERIAL'
tables
lines = it_line.
loop at it_line into wa_line.
if not wa_line-tdline is initial.
url = wa_line-tdline.
concatenate con_url2 url into con_url2.
url_string = url.
concatenate con_url url_string into con_url.
endif.
endloop.
write: / con_url2.
if not con_url2 is initial.
CALL FUNCTION 'PRGN_GENER_EXECUTE_URL'
EXPORTING
NODE_DATA = con_url2.
endif.
write: / con_url.
if not con_url is initial.
call method cl_gui_frontend_services=>execute
exporting
document = con_url.
endif.
> lg
> Christian
--
MfG, Steffen