cancel
Showing results for 
Search instead for 
Did you mean: 

SAP BW Query URL question.

Former Member
0 Kudos

Hello,

In our company, we use security roles to publish our BW Queries. We do this by inserting a SAP BW Query URL using pfcg tcd. This is working well as long as you don't have a URL string bigger than the content of the Object description and continuation box.

Does anybody has an idea in the way we can insert a bigger URL in the role.

Tanks a lot.

Stéphane.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You could try a few things...

1) Try using a query view

2) Update the underlying table using open sql ( not recommended)

3) Create a new template which redirects the page to another page and point your role entry to this new template.

Code for the new template

<html>

<head>

<title>Redirecting...</title>

<meta http-equiv="refresh" content="0; url=insert your really long url" />

</head>

<body>

</body>

</html>

Former Member
0 Kudos

Tanks a lot Davis the point 3) did the job well.

Stéphane

Answers (0)