cancel
Showing results for 
Search instead for 
Did you mean: 

Linking does not work (queries)

Former Member
0 Kudos

Hello,

I have this query: (it is not a real one, but a simplified one).

Select cardcode, cardname from ocrd

SAP shows the list of BP and it is possible to navigate to the BPs (because the link arrows appear in the result).

But, now I have this query:

declare @variable int

set @variable = 3

Select cardcode, cardname from ocrd

SAP now doesnot show the link arrows. So, it is not possible to navigate to the BPs.

Do you know why when declaring variables the link arrow dissapear? And any workaround?

Thank you very much for your help,

Vanessa

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

use for browse at the end of the query



declare @variable int
set @variable = 3
Select cardcode, cardname from ocrd for browse

Former Member
0 Kudos

Thank you very much!! It worked!

Regards,

Vanessa

Answers (0)