Hi,
I have the "Use display names" option checked for my app, but the app checker is flagging the 'created by' column saying it doesn't exist. Powerapps obviously knows it exists because 'Created By' shows up in the auto suggestions as I was typing the line.
UpdateContext({var_ApproveReqID: RequestReviewGallery.Selected.ID, var_ApproveReqEmail: Text(RequestReviewGallery.Selected.'Created By'.Email),
var_ApproveReqDisplayName: Text(RequestReviewGallery.Selected.'Created By'.DisplayName)})
With the code above I was getting "idenifier does not exist" and "Invalid use of "."' errors. When I changed 'Created By' to its internal name equivolent, the errors went away and my app worked again. As I typed the internal name, it did NOT show up in the auto suggestions.
UpdateContext({var_ApproveReqID: RequestReviewGallery.Selected.ID, var_ApproveReqEmail: Text(RequestReviewGallery.Selected.Author.Email),
var_ApproveReqDisplayName: Text(RequestReviewGallery.Selected.Author.DisplayName)})
So, my question is, there is a bug in the app checker/"use display names" option, correct?