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

Parents
  • ... a!textField(
    label: "Start Date",
    readOnly: true,
    value: rf!startDate_Date
    ),
    a!textField(
    label: "End Date",
    readOnly: true,
    value: rf!endDate_Date
    ),
    a!textField(
    label: "No. of working Days",
    readOnly: true,
    value: rf!noOfDays_Integer
    ),
    a!textField(
    label: "Comments",
    readOnly: true,
    value: rf!comments_Text
    )
    }
    )

    Note: I am attaching here with screen catupre of refer actual problem
Reply
  • ... a!textField(
    label: "Start Date",
    readOnly: true,
    value: rf!startDate_Date
    ),
    a!textField(
    label: "End Date",
    readOnly: true,
    value: rf!endDate_Date
    ),
    a!textField(
    label: "No. of working Days",
    readOnly: true,
    value: rf!noOfDays_Integer
    ),
    a!textField(
    label: "Comments",
    readOnly: true,
    value: rf!comments_Text
    )
    }
    )

    Note: I am attaching here with screen catupre of refer actual problem
Children
No Data