I am trying to create a simple entity-backed record type for employee leave mana

I am trying to create a simple entity-backed record type for employee leave management system, which has few fields like name, start date and end date:
EmployeeName (name_Text) and Start Date(startDate_Date) and End Date(endDate_Date). I can see the list view of no. of records, with the message - "Could not display record".
However, nothing comes up on screen as a Record Title, Start date and End date.
Also tried to create a rule and added that on SAIL dashboard expression, but nothing is working.

My expressions are as below-
List View Template:

='type!{www.appian.com/.../2009}ListViewItem'(
title: rf!name_Text,
details: rf!startDate_Date &" to "& rf!endDate_Date
)


SAIL Summary Dashboard:

=a!dashboardLayout(
firstColumnContents: {
a!textField(
label: "Requester",
readOnly: true,
value: rf!name_Text
),
a!textField(
label: "Leave Type",
readOnly: true,
value: rf!leaveType_Text
),
...

OriginalPostID-104350

OriginalPostID-104350

  Discussion posts and replies are publicly visible