We notice the infrastructure changes in the database schema starting Windchill 10.2 and it would be helpful if someone could suggest the new tables and joins so we get our query right.
Here is a working query from Windchill 9.1 system (PDMLink, PartsLink, SUMA and Oracle DB)
SELECT
M1.WTPARTNUMBER,
D1.VERSIONIDA2VERSIONINFO,
D1.ITERATIONIDA2ITERATIONINFO,
CN.NAME
FROM
REFERENCEDEFINITION R,
REFERENCEVALUE RV,
MANUFACTURERPARTMASTER M1,
MANUFACTURERPART D1,
CLASSIFICATIONNODE CN
WHERE
R.DISPLAYNAME = 'Part' AND
R.IDA2A2 = RV.IDA3A5 AND
RV.CLASSNAMEKEYA4 = 'com.ptc.windchill.suma.part.ManufacturerPart' AND
RV.IDA3A4 = D1.IDA2A2 AND
D1.IDA3MASTERREFERENCE = M1.IDA2A2 AND
RV.IDA3B5 = CN.IDA2A2;