Xpath for Displaying Notifications

1
Im working on notifications, where I need to display no. of kids whose medicine expiry date = (currentdate-5). The problem is when Im taking the Medication entity for displaying, I am unable to display the kid name from Kid Entity and if Im taking the Kid as Entity then im unable to display Medicine expiry date from Medictation Entity.
asked
2 answers
1

You can use nested dataviews for that. Place a new dataview in the other dataview. You could use the association for the retrieval or use a datasource microflow to retrieve the object.

Regards,

Ronald

answered
0

You can use xpath in stead of a microflow

[expiryDate < '[%CurrentDateTime%]- 5 * [%DayLength%]'  ]

Edit1: Mind the spaces. (see documentation)

and use assocations to show data.

answered