I have a CDS entity named "Case Tickets" and it has a LookUp field named "Department".
I have a CDS entity named "Departments" and it has a Text field named "Name".
In the Case Tickets CDS entity, the Department LookUp field looks up from the Departments CDS entity.
In my Canvas app, I need to pull up a Case Ticket record and state its Department Name.
The following formulas aren't working 😞
LookUp('Case Tickets', name=varTicketToLoad).Department.Name
First(LookUp('Case Tickets', name=varTicketToLoad)).Department.Name
First(LookUp('Case Tickets', name=varTicketToLoad).Department).Name
Filter('Case Tickets', name=varTicketToLoad).Department.Name
First(Filter('Case Tickets', name=varTicketToLoad)).Department.Name
First(Filter('Case Tickets', name=varTicketToLoad).Department).Name
When I set them to a variable to check their output, they all have no value.
I have other LookUps as well and they all exhibit this same problem, e.g. Departments (CDS entity) has another field named "Address" and .Department.Address is no value too, and Case Tickets (CDS entity) has another LookUp field named "Requesting User" which looks up from Users (CDS entity) which has a field named "Full Name", and .'Requesting User'.'Full Name' is no value as well.
All my data sources have been added and refreshed, so I don't know what's wrong 😞
Any help will be appreciated! Please and thank you.