cancel
Showing results for 
Search instead for 
Did you mean: 

Link Arrow in the query generator report

Former Member
0 Kudos

Hi,

if i use a query with grouping and renaming the column, the link arrow does now work.

by example (just an example):

SELECT T0.CardCode as 'Customer Code',t1.phone1 as 'Phone', sum(T0.DocTotal) as 'Total Sales' FROM OINV T0 INNER JOIN OCRD T1 ON T0.CardCode = T1.CardCode

group by t0.cardcode,t1.phone1

in this case the link arrow near to the customer code doesn't work.

any body know why??

thank you.

Accepted Solutions (0)

Answers (2)

Answers (2)

barend_morkel2
Active Contributor
0 Kudos

Adele is right,

It's quite curious, but SAP uses the actual column header description to do its linking logic. In your instance "CardCode" would be the "Key" SAP uses to link the column to the BP Master screen.

Former Member
0 Kudos

Hi Dany,

I tried it and got the same result. The problem seems to be the renaming of the column headers. If I write the query like this below, it works:

SELECT T0.CardCode, t1.phone1 as 'Phone', sum(T0.DocTotal) as 'Total Sales' FROM OINV T0 INNER JOIN OCRD T1 ON T0.CardCode = T1.CardCode 
group by t0.cardcode,t1.phone1

remove the

as 'Customer Code'

Hope it helps,

Adele