Hello everyone,
I am not able to join part_catalog and technical_class_reference as the key_value in technical class reference includes after the part_no this character ‘^’.
select
a.part_no,
b.technical_class
from
Part_catalog a INNER JOIN TECHNICAL_OBJECT_REFERENCE b
ON a.part_no = b.key_value
I tried to get rid of the last character of key_value which did not work:
select
pc.part_no,
tor.technical_class
from
Part_catalog pc
INNER JOIN
TECHNICAL_OBJECT_REFERENCE tor
ON pc.part_no = (select SUBSTR(tor.key_value, 0, LENGTH(tor.key_value) -1))
I never had such an issue in IFS.
Any idea how to link these views?
Thanks a lot!
!--[endif]-->!--[if>![endif]-->!--[if>