cancel
Showing results for 
Search instead for 
Did you mean: 

Join 2 tables based on a pattern in graphical calculation views

0 Kudos

I have a scenario where i have to join the table RBKP and SWWWIHEAD.

pass RBKP.BELNR to SWWWIHEAD.WI_TEXT as SWWWIHEAD.WI_TEXT=*BELNR*

eg: BELNR=5600101,WI_TEXT=abcd5600101xyz.

I know this is possible in scripted calculation view using "LIKE",But is there any possibility to achieve the same in graphical calculation view?

Thanks in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

It is not possible while joining two tables graphically.Alternatively try creating a calculated column using SUBSTR("SWWWIHEAD.WI_TEXT",5,11) and then join this column further with BELNR.

However this might give a performance issue because as per the standard rules ,no join should happen on calculated columns.