cancel
Showing results for 
Search instead for 
Did you mean: 

URL within Web Application

hagen_kunze2
Explorer
0 Kudos

Dear all,

we store documents belonging to master data entries on the application server of our BW system. The URL to the document

is contained within an navigation attribute of the charachteristic. Due to the fact, that these are partially very large documents

we dont want to upload them as documents to the characteristic.

Creating an Web-Report integrating this naviagation attribute the containig URL is - of course - displayed as an common characteristic without any functionality.

Is it possible to show this URL as a common link ?

Thanks in advance

Hagen

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Hagen,

There used to be a The BEx Web Design API for Tables in version 3.5, but in SAP NetWeaver 7.0 (2004s), they moved from an ABAP-based to a Java-based BI Web runtime.

[http://help.sap.com/saphelp_nw70/Helpdata/en/45/e5a22282944ebbe10000000a11466f/content.htm]

So on version 7.0+ you can

develop a Javascript (body.onload) and include it in WAD to convert characteristic to link

Similar example

[http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20760] [original link is broken];

or

implement IF_RS_BBS_BADI_HANDLER for jumping to url.

[http://help.sap.com/saphelp_nw70/Helpdata/en/45/e5a22282944ebbe10000000a11466f/content.htm]

BR

Ondrej

former_member184494
Active Contributor
0 Kudos

I am not sure if this will work - try encapsulating the link in a href tag when you load the data so that the web browser is forced to treat it as a link.

something like this ;

http://www.w3schools.com/tags/att_a_href.asp

the syntax would be

<a href="http://www.w3schools.com">Visit W3Schools</a>

you could write your code to concatenate

'<a href="'

<your link here>

'/a>

it might be worth a try...

hagen_kunze2
Explorer
0 Kudos

Hello Arun,

I'd tried this before - the content won't be interpreted as a link but as text - unfortunately

Regards

Hagen

hagen_kunze2
Explorer
0 Kudos

Hi Ondrej,

I could solve the problem usind point 2.

Thanks a lot

Hagen