Hi everyone, I need the relationship between custo...
# suiteql
i
Hi everyone, I need the relationship between customer -> name of primary subsidiary ( text under Field ID: subsidiary) I found the path Customer -> left join CustomerSubsidiaryRelationship -> left join Subsidiary However, I was curious is there any other field in customer table which gives information about Name of primary subsidiary without using so many joins? Thank you, Irina
e
You can use the
BUILTIN.DF
function to get the subsidiary name without a join.
Copy code
SELECT 
BUILTIN.DF(CustomerSubsidiaryRelationship.subsidiary) as subsidiary,
i
Thank you, Edgar :)